corrade-nucleus-nucleons – Blame information for rev 20

Subversion Repositories:
Rev:
Rev Author Line No. Line
20 office 1 define("ace/mode/bro_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rules"], function(require, exports, module) {
2 "use strict";
3  
4 var oop = require("../lib/oop");
5 var TextHighlightRules = require("./text_highlight_rules").TextHighlightRules;
6  
7 var BroHighlightRules = function() {
8  
9 this.$rules = {
10 start: [{
11 token: "punctuation.definition.comment.bro",
12 regex: /#/,
13 push: [{
14 token: "comment.line.number-sign.bro",
15 regex: /$/,
16 next: "pop"
17 }, {
18 defaultToken: "comment.line.number-sign.bro"
19 }]
20 }, {
21 token: "keyword.control.bro",
22 regex: /\b(?:break|case|continue|else|for|if|return|switch|next|when|timeout|schedule)\b/
23 }, {
24 token: [
25 "meta.function.bro",
26 "meta.function.bro",
27 "storage.type.bro",
28 "meta.function.bro",
29 "entity.name.function.bro",
30 "meta.function.bro"
31 ],
32 regex: /^(\s*)(?:function|hook|event)(\s*)(.*)(\s*\()(.*)(\).*$)/
33 }, {
34 token: "storage.type.bro",
35 regex: /\b(?:bool|enum|double|int|count|port|addr|subnet|any|file|interval|time|string|table|vector|set|record|pattern|hook)\b/
36 }, {
37 token: "storage.modifier.bro",
38 regex: /\b(?:global|const|redef|local|&(?:optional|rotate_interval|rotate_size|add_func|del_func|expire_func|expire_create|expire_read|expire_write|persistent|synchronized|encrypt|mergeable|priority|group|type_column|log|error_handler))\b/
39 }, {
40 token: "keyword.operator.bro",
41 regex: /\s*(?:\||&&|(?:>|<|!)=?|==)\s*|\b!?in\b/
42 <|!)=?|==)\s*|\b!?in\b/ }, {
43 <|!)=?|==)\s*|\b!?in\b/ token: "constant.language.bro",
44 <|!)=?|==)\s*|\b!?in\b/ regex: /\b(?:T|F)\b/
45 <|!)=?|==)\s*|\b!?in\b/ }, {
46 <|!)=?|==)\s*|\b!?in\b/ token: "constant.numeric.bro",
47 <|!)=?|==)\s*|\b!?in\b/ regex: /\b(?:0(?:x|X)[0-9a-fA-F]*|(?:[0-9]+\.?[0-9]*|\.[0-9]+)(?:(?:e|E)(?:\+|-)?[0-9]+)?)(?:\/(?:tcp|udp|icmp)|\s*(?:u?sec|min|hr|day)s?)?\b/
48 <|!)=?|==)\s*|\b!?in\b/ }, {
49 <|!)=?|==)\s*|\b!?in\b/ token: "punctuation.definition.string.begin.bro",
50 <|!)=?|==)\s*|\b!?in\b/ regex: /"/,
51 <|!)=?|==)\s*|\b!?in\b/ push: [{
52 <|!)=?|==)\s*|\b!?in\b/ token: "punctuation.definition.string.end.bro",
53 <|!)=?|==)\s*|\b!?in\b/ regex: /"/,
54 <|!)=?|==)\s*|\b!?in\b/ next: "pop"
55 <|!)=?|==)\s*|\b!?in\b/ }, {
56 <|!)=?|==)\s*|\b!?in\b/ include: "#string_escaped_char"
57 <|!)=?|==)\s*|\b!?in\b/ }, {
58 <|!)=?|==)\s*|\b!?in\b/ include: "#string_placeholder"
59 <|!)=?|==)\s*|\b!?in\b/ }, {
60 <|!)=?|==)\s*|\b!?in\b/ defaultToken: "string.quoted.double.bro"
61 <|!)=?|==)\s*|\b!?in\b/ }]
62 <|!)=?|==)\s*|\b!?in\b/ }, {
63 <|!)=?|==)\s*|\b!?in\b/ token: "punctuation.definition.string.begin.bro",
64 <|!)=?|==)\s*|\b!?in\b/ regex: /\//,
65 <|!)=?|==)\s*|\b!?in\b/ push: [{
66 <|!)=?|==)\s*|\b!?in\b/ token: "punctuation.definition.string.end.bro",
67 <|!)=?|==)\s*|\b!?in\b/ regex: /\//,
68 <|!)=?|==)\s*|\b!?in\b/ next: "pop"
69 <|!)=?|==)\s*|\b!?in\b/ }, {
70 <|!)=?|==)\s*|\b!?in\b/ include: "#string_escaped_char"
71 <|!)=?|==)\s*|\b!?in\b/ }, {
72 <|!)=?|==)\s*|\b!?in\b/ include: "#string_placeholder"
73 <|!)=?|==)\s*|\b!?in\b/ }, {
74 <|!)=?|==)\s*|\b!?in\b/ defaultToken: "string.quoted.regex.bro"
75 <|!)=?|==)\s*|\b!?in\b/ }]
76 <|!)=?|==)\s*|\b!?in\b/ }, {
77 <|!)=?|==)\s*|\b!?in\b/ token: [
78 <|!)=?|==)\s*|\b!?in\b/ "meta.preprocessor.bro.load",
79 <|!)=?|==)\s*|\b!?in\b/ "keyword.other.special-method.bro"
80 <|!)=?|==)\s*|\b!?in\b/ ],
81 <|!)=?|==)\s*|\b!?in\b/ regex: /^(\s*)(\@load(?:-sigs)?)\b/,
82 <|!)=?|==)\s*|\b!?in\b/ push: [{
83 <|!)=?|==)\s*|\b!?in\b/ token: [],
84 <|!)=?|==)\s*|\b!?in\b/ regex: /(?=\#)|$/,
85 <|!)=?|==)\s*|\b!?in\b/ next: "pop"
86 <|!)=?|==)\s*|\b!?in\b/ }, {
87 <|!)=?|==)\s*|\b!?in\b/ defaultToken: "meta.preprocessor.bro.load"
88 <|!)=?|==)\s*|\b!?in\b/ }]
89 <|!)=?|==)\s*|\b!?in\b/ }, {
90 <|!)=?|==)\s*|\b!?in\b/ token: [
91 <|!)=?|==)\s*|\b!?in\b/ "meta.preprocessor.bro.if",
92 <|!)=?|==)\s*|\b!?in\b/ "keyword.other.special-method.bro",
93 <|!)=?|==)\s*|\b!?in\b/ "meta.preprocessor.bro.if"
94 <|!)=?|==)\s*|\b!?in\b/ ],
95 <|!)=?|==)\s*|\b!?in\b/ regex: /^(\s*)(\@endif|\@if(?:n?def)?)(.*$)/,
96 <|!)=?|==)\s*|\b!?in\b/ push: [{
97 <|!)=?|==)\s*|\b!?in\b/ token: [],
98 <|!)=?|==)\s*|\b!?in\b/ regex: /$/,
99 <|!)=?|==)\s*|\b!?in\b/ next: "pop"
100 <|!)=?|==)\s*|\b!?in\b/ }, {
101 <|!)=?|==)\s*|\b!?in\b/ defaultToken: "meta.preprocessor.bro.if"
102 <|!)=?|==)\s*|\b!?in\b/ }]
103 <|!)=?|==)\s*|\b!?in\b/ }],
104 <|!)=?|==)\s*|\b!?in\b/ "#disabled": [{
105 <|!)=?|==)\s*|\b!?in\b/ token: "text",
106 <|!)=?|==)\s*|\b!?in\b/ regex: /^\s*\@if(?:n?def)?\b.*$/,
107 <|!)=?|==)\s*|\b!?in\b/ push: [{
108 <|!)=?|==)\s*|\b!?in\b/ token: "text",
109 <|!)=?|==)\s*|\b!?in\b/ regex: /^\s*\@endif\b.*$/,
110 <|!)=?|==)\s*|\b!?in\b/ next: "pop"
111 <|!)=?|==)\s*|\b!?in\b/ }, {
112 <|!)=?|==)\s*|\b!?in\b/ include: "#disabled"
113 <|!)=?|==)\s*|\b!?in\b/ }, {
114 <|!)=?|==)\s*|\b!?in\b/ include: "#pragma-mark"
115 <|!)=?|==)\s*|\b!?in\b/ }],
116 <|!)=?|==)\s*|\b!?in\b/ comment: "eat nested preprocessor ifdefs"
117 <|!)=?|==)\s*|\b!?in\b/ }],
118 <|!)=?|==)\s*|\b!?in\b/ "#preprocessor-rule-other": [{
119 <|!)=?|==)\s*|\b!?in\b/ token: [
120 <|!)=?|==)\s*|\b!?in\b/ "text",
121 <|!)=?|==)\s*|\b!?in\b/ "meta.preprocessor.bro",
122 <|!)=?|==)\s*|\b!?in\b/ "meta.preprocessor.bro",
123 <|!)=?|==)\s*|\b!?in\b/ "text"
124 <|!)=?|==)\s*|\b!?in\b/ ],
125 <|!)=?|==)\s*|\b!?in\b/ regex: /^(\s*)(@if)((?:n?def)?)\b(.*?)(?:(?=)|$)/,
126 <|!)=?|==)\s*|\b!?in\b/ push: [{
127 <|!)=?|==)\s*|\b!?in\b/ token: ["text", "meta.preprocessor.bro", "text"],
128 <|!)=?|==)\s*|\b!?in\b/ regex: /^(\s*)(@endif)\b(.*$)/,
129 <|!)=?|==)\s*|\b!?in\b/ next: "pop"
130 <|!)=?|==)\s*|\b!?in\b/ }, {
131 <|!)=?|==)\s*|\b!?in\b/ include: "$base"
132 <|!)=?|==)\s*|\b!?in\b/ }]
133 <|!)=?|==)\s*|\b!?in\b/ }],
134 <|!)=?|==)\s*|\b!?in\b/ "#string_escaped_char": [{
135 <|!)=?|==)\s*|\b!?in\b/ token: "constant.character.escape.bro",
136 <|!)=?|==)\s*|\b!?in\b/ regex: /\\(?:\\|[abefnprtv'"?]|[0-3]\d{,2}|[4-7]\d?|x[a-fA-F0-9]{,2})/
137 <|!)=?|==)\s*|\b!?in\b/ }, {
138 <|!)=?|==)\s*|\b!?in\b/ token: "invalid.illegal.unknown-escape.bro",
139 <|!)=?|==)\s*|\b!?in\b/ regex: /\\./
140 <|!)=?|==)\s*|\b!?in\b/ }],
141 <|!)=?|==)\s*|\b!?in\b/ "#string_placeholder": [{
142 <|!)=?|==)\s*|\b!?in\b/ token: "constant.other.placeholder.bro",
143 <|!)=?|==)\s*|\b!?in\b/ regex: /%(?:\d+\$)?[#0\- +']*[,;:_]?(?:-?\d+|\*(?:-?\d+\$)?)?(?:\.(?:-?\d+|\*(?:-?\d+\$)?)?)?(?:hh|h|ll|l|j|t|z|q|L|vh|vl|v|hv|hl)?[diouxXDOUeEfFgGaACcSspn%]/
144 <|!)=?|==)\s*|\b!?in\b/ }, {
145 <|!)=?|==)\s*|\b!?in\b/ token: "invalid.illegal.placeholder.bro",
146 <|!)=?|==)\s*|\b!?in\b/ regex: /%/
147 <|!)=?|==)\s*|\b!?in\b/ }]
148 <|!)=?|==)\s*|\b!?in\b/ }
149  
150 <|!)=?|==)\s*|\b!?in\b/ this.normalizeRules();
151 <|!)=?|==)\s*|\b!?in\b/};
152  
153 <|!)=?|==)\s*|\b!?in\b/BroHighlightRules.metaData = {
154 <|!)=?|==)\s*|\b!?in\b/ fileTypes: ["bro"],
155 <|!)=?|==)\s*|\b!?in\b/ foldingStartMarker: "^(\\@if(n?def)?)",
156 <|!)=?|==)\s*|\b!?in\b/ foldingStopMarker: "^\\@endif",
157 <|!)=?|==)\s*|\b!?in\b/ keyEquivalent: "@B",
158 <|!)=?|==)\s*|\b!?in\b/ name: "Bro",
159 <|!)=?|==)\s*|\b!?in\b/ scopeName: "source.bro"
160 <|!)=?|==)\s*|\b!?in\b/}
161  
162  
163 <|!)=?|==)\s*|\b!?in\b/oop.inherits(BroHighlightRules, TextHighlightRules);
164  
165 <|!)=?|==)\s*|\b!?in\b/exports.BroHighlightRules = BroHighlightRules;
166 <|!)=?|==)\s*|\b!?in\b/});
167  
168 <|!)=?|==)\s*|\b!?in\b/define("ace/mode/folding/cstyle",["require","exports","module","ace/lib/oop","ace/range","ace/mode/folding/fold_mode"], function(require, exports, module) {
169 <|!)=?|==)\s*|\b!?in\b/"use strict";
170  
171 <|!)=?|==)\s*|\b!?in\b/var oop = require("../../lib/oop");
172 <|!)=?|==)\s*|\b!?in\b/var Range = require("../../range").Range;
173 <|!)=?|==)\s*|\b!?in\b/var BaseFoldMode = require("./fold_mode").FoldMode;
174  
175 <|!)=?|==)\s*|\b!?in\b/var FoldMode = exports.FoldMode = function(commentRegex) {
176 <|!)=?|==)\s*|\b!?in\b/ if (commentRegex) {
177 <|!)=?|==)\s*|\b!?in\b/ this.foldingStartMarker = new RegExp(
178 <|!)=?|==)\s*|\b!?in\b/ this.foldingStartMarker.source.replace(/\|[^|]*?$/, "|" + commentRegex.start)
179 <|!)=?|==)\s*|\b!?in\b/ );
180 <|!)=?|==)\s*|\b!?in\b/ this.foldingStopMarker = new RegExp(
181 <|!)=?|==)\s*|\b!?in\b/ this.foldingStopMarker.source.replace(/\|[^|]*?$/, "|" + commentRegex.end)
182 <|!)=?|==)\s*|\b!?in\b/ );
183 <|!)=?|==)\s*|\b!?in\b/ }
184 <|!)=?|==)\s*|\b!?in\b/};
185 <|!)=?|==)\s*|\b!?in\b/oop.inherits(FoldMode, BaseFoldMode);
186  
187 <|!)=?|==)\s*|\b!?in\b/(function() {
188  
189 <|!)=?|==)\s*|\b!?in\b/ this.foldingStartMarker = /(\{|\[)[^\}\]]*$|^\s*(\/\*)/;
190 <|!)=?|==)\s*|\b!?in\b/ this.foldingStopMarker = /^[^\[\{]*(\}|\])|^[\s\*]*(\*\/)/;
191 <|!)=?|==)\s*|\b!?in\b/ this.singleLineBlockCommentRe= /^\s*(\/\*).*\*\/\s*$/;
192 <|!)=?|==)\s*|\b!?in\b/ this.tripleStarBlockCommentRe = /^\s*(\/\*\*\*).*\*\/\s*$/;
193 <|!)=?|==)\s*|\b!?in\b/ this.startRegionRe = /^\s*(\/\*|\/\/)#?region\b/;
194 <|!)=?|==)\s*|\b!?in\b/ this._getFoldWidgetBase = this.getFoldWidget;
195 <|!)=?|==)\s*|\b!?in\b/ this.getFoldWidget = function(session, foldStyle, row) {
196 <|!)=?|==)\s*|\b!?in\b/ var line = session.getLine(row);
197  
198 <|!)=?|==)\s*|\b!?in\b/ if (this.singleLineBlockCommentRe.test(line)) {
199 <|!)=?|==)\s*|\b!?in\b/ if (!this.startRegionRe.test(line) && !this.tripleStarBlockCommentRe.test(line))
200 <|!)=?|==)\s*|\b!?in\b/ return "";
201 <|!)=?|==)\s*|\b!?in\b/ }
202  
203 <|!)=?|==)\s*|\b!?in\b/ var fw = this._getFoldWidgetBase(session, foldStyle, row);
204  
205 <|!)=?|==)\s*|\b!?in\b/ if (!fw && this.startRegionRe.test(line))
206 <|!)=?|==)\s*|\b!?in\b/ return "start"; // lineCommentRegionStart
207  
208 <|!)=?|==)\s*|\b!?in\b/ return fw;
209 <|!)=?|==)\s*|\b!?in\b/ };
210  
211 <|!)=?|==)\s*|\b!?in\b/ this.getFoldWidgetRange = function(session, foldStyle, row, forceMultiline) {
212 <|!)=?|==)\s*|\b!?in\b/ var line = session.getLine(row);
213  
214 <|!)=?|==)\s*|\b!?in\b/ if (this.startRegionRe.test(line))
215 <|!)=?|==)\s*|\b!?in\b/ return this.getCommentRegionBlock(session, line, row);
216  
217 <|!)=?|==)\s*|\b!?in\b/ var match = line.match(this.foldingStartMarker);
218 <|!)=?|==)\s*|\b!?in\b/ if (match) {
219 <|!)=?|==)\s*|\b!?in\b/ var i = match.index;
220  
221 <|!)=?|==)\s*|\b!?in\b/ if (match[1])
222 <|!)=?|==)\s*|\b!?in\b/ return this.openingBracketBlock(session, match[1], row, i);
223  
224 <|!)=?|==)\s*|\b!?in\b/ var range = session.getCommentFoldRange(row, i + match[0].length, 1);
225  
226 <|!)=?|==)\s*|\b!?in\b/ if (range && !range.isMultiLine()) {
227 <|!)=?|==)\s*|\b!?in\b/ if (forceMultiline) {
228 <|!)=?|==)\s*|\b!?in\b/ range = this.getSectionRange(session, row);
229 <|!)=?|==)\s*|\b!?in\b/ } else if (foldStyle != "all")
230 <|!)=?|==)\s*|\b!?in\b/ range = null;
231 <|!)=?|==)\s*|\b!?in\b/ }
232  
233 <|!)=?|==)\s*|\b!?in\b/ return range;
234 <|!)=?|==)\s*|\b!?in\b/ }
235  
236 <|!)=?|==)\s*|\b!?in\b/ if (foldStyle === "markbegin")
237 <|!)=?|==)\s*|\b!?in\b/ return;
238  
239 <|!)=?|==)\s*|\b!?in\b/ var match = line.match(this.foldingStopMarker);
240 <|!)=?|==)\s*|\b!?in\b/ if (match) {
241 <|!)=?|==)\s*|\b!?in\b/ var i = match.index + match[0].length;
242  
243 <|!)=?|==)\s*|\b!?in\b/ if (match[1])
244 <|!)=?|==)\s*|\b!?in\b/ return this.closingBracketBlock(session, match[1], row, i);
245  
246 <|!)=?|==)\s*|\b!?in\b/ return session.getCommentFoldRange(row, i, -1);
247 <|!)=?|==)\s*|\b!?in\b/ }
248 <|!)=?|==)\s*|\b!?in\b/ };
249  
250 <|!)=?|==)\s*|\b!?in\b/ this.getSectionRange = function(session, row) {
251 <|!)=?|==)\s*|\b!?in\b/ var line = session.getLine(row);
252 <|!)=?|==)\s*|\b!?in\b/ var startIndent = line.search(/\S/);
253 <|!)=?|==)\s*|\b!?in\b/ var startRow = row;
254 <|!)=?|==)\s*|\b!?in\b/ var startColumn = line.length;
255 <|!)=?|==)\s*|\b!?in\b/ row = row + 1;
256 <|!)=?|==)\s*|\b!?in\b/ var endRow = row;
257 <|!)=?|==)\s*|\b!?in\b/ var maxRow = session.getLength();
258 <|!)=?|==)\s*|\b!?in\b/ while (++row < maxRow) {
259 <|!)=?|==)\s*|\b!?in\b/ line = session.getLine(row);
260 <|!)=?|==)\s*|\b!?in\b/ var indent = line.search(/\S/);
261 <|!)=?|==)\s*|\b!?in\b/ if (indent === -1)
262 <|!)=?|==)\s*|\b!?in\b/ continue;
263 <|!)=?|==)\s*|\b!?in\b/ if (startIndent > indent)
264 <|!)=?|==)\s*|\b!?in\b/ break;
265 <|!)=?|==)\s*|\b!?in\b/ var subRange = this.getFoldWidgetRange(session, "all", row);
266  
267 <|!)=?|==)\s*|\b!?in\b/ if (subRange) {
268 <|!)=?|==)\s*|\b!?in\b/ if (subRange.start.row <= startRow) {
269 <|!)=?|==)\s*|\b!?in\b/ break;
270 <|!)=?|==)\s*|\b!?in\b/ } else if (subRange.isMultiLine()) {
271 <|!)=?|==)\s*|\b!?in\b/ row = subRange.end.row;
272 <|!)=?|==)\s*|\b!?in\b/ } else if (startIndent == indent) {
273 <|!)=?|==)\s*|\b!?in\b/ break;
274 <|!)=?|==)\s*|\b!?in\b/ }
275 <|!)=?|==)\s*|\b!?in\b/ }
276 <|!)=?|==)\s*|\b!?in\b/ endRow = row;
277 <|!)=?|==)\s*|\b!?in\b/ }
278  
279 <|!)=?|==)\s*|\b!?in\b/ return new Range(startRow, startColumn, endRow, session.getLine(endRow).length);
280 <|!)=?|==)\s*|\b!?in\b/ };
281 <|!)=?|==)\s*|\b!?in\b/ this.getCommentRegionBlock = function(session, line, row) {
282 <|!)=?|==)\s*|\b!?in\b/ var startColumn = line.search(/\s*$/);
283 <|!)=?|==)\s*|\b!?in\b/ var maxRow = session.getLength();
284 <|!)=?|==)\s*|\b!?in\b/ var startRow = row;
285  
286 <|!)=?|==)\s*|\b!?in\b/ var re = /^\s*(?:\/\*|\/\/|--)#?(end)?region\b/;
287 <|!)=?|==)\s*|\b!?in\b/ var depth = 1;
288 <|!)=?|==)\s*|\b!?in\b/ while (++row < maxRow) {
289 <|!)=?|==)\s*|\b!?in\b/ line = session.getLine(row);
290 <|!)=?|==)\s*|\b!?in\b/ var m = re.exec(line);
291 <|!)=?|==)\s*|\b!?in\b/ if (!m) continue;
292 <|!)=?|==)\s*|\b!?in\b/ if (m[1]) depth--;
293 <|!)=?|==)\s*|\b!?in\b/ else depth++;
294  
295 <|!)=?|==)\s*|\b!?in\b/ if (!depth) break;
296 <|!)=?|==)\s*|\b!?in\b/ }
297  
298 <|!)=?|==)\s*|\b!?in\b/ var endRow = row;
299 <|!)=?|==)\s*|\b!?in\b/ if (endRow > startRow) {
300 <|!)=?|==)\s*|\b!?in\b/ return new Range(startRow, startColumn, endRow, line.length);
301 <|!)=?|==)\s*|\b!?in\b/ }
302 <|!)=?|==)\s*|\b!?in\b/ };
303  
304 <|!)=?|==)\s*|\b!?in\b/}).call(FoldMode.prototype);
305  
306 <|!)=?|==)\s*|\b!?in\b/});
307  
308 <|!)=?|==)\s*|\b!?in\b/define("ace/mode/bro",["require","exports","module","ace/lib/oop","ace/mode/text","ace/mode/bro_highlight_rules","ace/mode/folding/cstyle"], function(require, exports, module) {
309 <|!)=?|==)\s*|\b!?in\b/"use strict";
310  
311 <|!)=?|==)\s*|\b!?in\b/var oop = require("../lib/oop");
312 <|!)=?|==)\s*|\b!?in\b/var TextMode = require("./text").Mode;
313 <|!)=?|==)\s*|\b!?in\b/var BroHighlightRules = require("./bro_highlight_rules").BroHighlightRules;
314 <|!)=?|==)\s*|\b!?in\b/var FoldMode = require("./folding/cstyle").FoldMode;
315  
316 <|!)=?|==)\s*|\b!?in\b/var Mode = function() {
317 <|!)=?|==)\s*|\b!?in\b/ this.HighlightRules = BroHighlightRules;
318 <|!)=?|==)\s*|\b!?in\b/ this.foldingRules = new FoldMode();
319 <|!)=?|==)\s*|\b!?in\b/};
320 <|!)=?|==)\s*|\b!?in\b/oop.inherits(Mode, TextMode);
321  
322 <|!)=?|==)\s*|\b!?in\b/(function() {
323 <|!)=?|==)\s*|\b!?in\b/ this.$id = "ace/mode/bro"
324 <|!)=?|==)\s*|\b!?in\b/}).call(Mode.prototype);
325  
326 <|!)=?|==)\s*|\b!?in\b/exports.Mode = Mode;
327 <|!)=?|==)\s*|\b!?in\b/});