]> code.delx.au - gnu-emacs-elpa/blob - js2-mode.el
Allow 'in' operator inside 'for' init when unambiguous
[gnu-emacs-elpa] / js2-mode.el
1 ;;; js2-mode.el --- Improved JavaScript editing mode
2
3 ;; Copyright (C) 2009, 2011-2014 Free Software Foundation, Inc.
4
5 ;; Author: Steve Yegge <steve.yegge@gmail.com>
6 ;; mooz <stillpedant@gmail.com>
7 ;; Dmitry Gutov <dgutov@yandex.ru>
8 ;; URL: https://github.com/mooz/js2-mode/
9 ;; http://code.google.com/p/js2-mode/
10 ;; Version: 20140114
11 ;; Keywords: languages, javascript
12 ;; Package-Requires: ((emacs "24.1"))
13
14 ;; This file is part of GNU Emacs.
15
16 ;; GNU Emacs is free software: you can redistribute it and/or modify
17 ;; it under the terms of the GNU General Public License as published by
18 ;; the Free Software Foundation, either version 3 of the License, or
19 ;; (at your option) any later version.
20
21 ;; GNU Emacs is distributed in the hope that it will be useful,
22 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
23 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 ;; GNU General Public License for more details.
25
26 ;; You should have received a copy of the GNU General Public License
27 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
28
29 ;;; Commentary:
30
31 ;; This JavaScript editing mode supports:
32
33 ;; - strict recognition of the Ecma-262 language standard
34 ;; - support for most Rhino and SpiderMonkey extensions from 1.5 and up
35 ;; - parsing support for ECMAScript for XML (E4X, ECMA-357)
36 ;; - accurate syntax highlighting using a recursive-descent parser
37 ;; - on-the-fly reporting of syntax errors and strict-mode warnings
38 ;; - undeclared-variable warnings using a configurable externs framework
39 ;; - "bouncing" line indentation to choose among alternate indentation points
40 ;; - smart line-wrapping within comments and strings
41 ;; - code folding:
42 ;; - show some or all function bodies as {...}
43 ;; - show some or all block comments as /*...*/
44 ;; - context-sensitive menu bar and popup menus
45 ;; - code browsing using the `imenu' package
46 ;; - many customization options
47
48 ;; Installation:
49 ;;
50 ;; To install it as your major mode for JavaScript editing:
51
52 ;; (add-to-list 'auto-mode-alist '("\\.js\\'" . js2-mode))
53
54 ;; Alternatively, to install it as a minor mode just for JavaScript linting,
55 ;; you must add it to the appropriate major-mode hook. Normally this would be:
56
57 ;; (add-hook 'js-mode-hook 'js2-minor-mode)
58
59 ;; You may also want to hook it in for shell scripts running via node.js:
60
61 ;; (add-to-list 'interpreter-mode-alist '("node" . js2-mode))
62
63 ;; To customize how it works:
64 ;; M-x customize-group RET js2-mode RET
65
66 ;; Notes:
67
68 ;; This mode includes a port of Mozilla Rhino's scanner, parser and
69 ;; symbol table. Ideally it should stay in sync with Rhino, keeping
70 ;; `js2-mode' current as the EcmaScript language standard evolves.
71
72 ;; Unlike cc-engine based language modes, js2-mode's line-indentation is not
73 ;; customizable. It is a surprising amount of work to support customizable
74 ;; indentation. The current compromise is that the tab key lets you cycle among
75 ;; various likely indentation points, similar to the behavior of python-mode.
76
77 ;; This mode does not yet work with "multi-mode" modes such as `mmm-mode'
78 ;; and `mumamo', although it could be made to do so with some effort.
79 ;; This means that `js2-mode' is currently only useful for editing JavaScript
80 ;; files, and not for editing JavaScript within <script> tags or templates.
81
82 ;; The project page on GitHub is used for development and issue tracking.
83 ;; The original homepage at Google Code has outdated information and is mostly
84 ;; unmaintained.
85
86 ;;; Code:
87
88 (eval-when-compile
89 (require 'cl))
90
91 (require 'imenu)
92 (require 'cc-cmds) ; for `c-fill-paragraph'
93
94 (eval-and-compile
95 (require 'cc-mode) ; (only) for `c-populate-syntax-table'
96 (require 'cc-engine)) ; for `c-paragraph-start' et. al.
97
98 (defvar electric-layout-rules)
99
100 ;;; Externs (variables presumed to be defined by the host system)
101
102 (defvar js2-ecma-262-externs
103 (mapcar 'symbol-name
104 '(Array Boolean Date Error EvalError Function Infinity JSON
105 Math NaN Number Object RangeError ReferenceError RegExp
106 String SyntaxError TypeError URIError arguments
107 decodeURI decodeURIComponent encodeURI
108 encodeURIComponent escape eval isFinite isNaN
109 parseFloat parseInt undefined unescape))
110 "Ecma-262 externs. Included in `js2-externs' by default.")
111
112 (defvar js2-browser-externs
113 (mapcar 'symbol-name
114 '(;; DOM level 1
115 Attr CDATASection CharacterData Comment DOMException
116 DOMImplementation Document DocumentFragment
117 DocumentType Element Entity EntityReference
118 ExceptionCode NamedNodeMap Node NodeList Notation
119 ProcessingInstruction Text
120
121 ;; DOM level 2
122 HTMLAnchorElement HTMLAppletElement HTMLAreaElement
123 HTMLBRElement HTMLBaseElement HTMLBaseFontElement
124 HTMLBodyElement HTMLButtonElement HTMLCollection
125 HTMLDListElement HTMLDirectoryElement HTMLDivElement
126 HTMLDocument HTMLElement HTMLFieldSetElement
127 HTMLFontElement HTMLFormElement HTMLFrameElement
128 HTMLFrameSetElement HTMLHRElement HTMLHeadElement
129 HTMLHeadingElement HTMLHtmlElement HTMLIFrameElement
130 HTMLImageElement HTMLInputElement HTMLIsIndexElement
131 HTMLLIElement HTMLLabelElement HTMLLegendElement
132 HTMLLinkElement HTMLMapElement HTMLMenuElement
133 HTMLMetaElement HTMLModElement HTMLOListElement
134 HTMLObjectElement HTMLOptGroupElement
135 HTMLOptionElement HTMLOptionsCollection
136 HTMLParagraphElement HTMLParamElement HTMLPreElement
137 HTMLQuoteElement HTMLScriptElement HTMLSelectElement
138 HTMLStyleElement HTMLTableCaptionElement
139 HTMLTableCellElement HTMLTableColElement
140 HTMLTableElement HTMLTableRowElement
141 HTMLTableSectionElement HTMLTextAreaElement
142 HTMLTitleElement HTMLUListElement
143
144 ;; DOM level 3
145 DOMConfiguration DOMError DOMException
146 DOMImplementationList DOMImplementationSource
147 DOMLocator DOMStringList NameList TypeInfo
148 UserDataHandler
149
150 ;; Window
151 window alert confirm document java navigator prompt screen
152 self top
153
154 ;; W3C CSS
155 CSSCharsetRule CSSFontFace CSSFontFaceRule
156 CSSImportRule CSSMediaRule CSSPageRule
157 CSSPrimitiveValue CSSProperties CSSRule CSSRuleList
158 CSSStyleDeclaration CSSStyleRule CSSStyleSheet
159 CSSValue CSSValueList Counter DOMImplementationCSS
160 DocumentCSS DocumentStyle ElementCSSInlineStyle
161 LinkStyle MediaList RGBColor Rect StyleSheet
162 StyleSheetList ViewCSS
163
164 ;; W3C Event
165 EventListener EventTarget Event DocumentEvent UIEvent
166 MouseEvent MutationEvent KeyboardEvent
167
168 ;; W3C Range
169 DocumentRange Range RangeException
170
171 ;; W3C XML
172 XPathResult XMLHttpRequest
173
174 ;; console object. Provided by at least Chrome and Firefox.
175 console))
176 "Browser externs.
177 You can cause these to be included or excluded with the custom
178 variable `js2-include-browser-externs'.")
179
180 (defvar js2-rhino-externs
181 (mapcar 'symbol-name
182 '(Packages importClass importPackage com org java
183 ;; Global object (shell) externs.
184 defineClass deserialize doctest gc help load
185 loadClass print quit readFile readUrl runCommand seal
186 serialize spawn sync toint32 version))
187 "Mozilla Rhino externs.
188 Set `js2-include-rhino-externs' to t to include them.")
189
190 (defvar js2-node-externs
191 (mapcar 'symbol-name
192 '(__dirname __filename Buffer clearInterval clearTimeout require
193 console exports global module process setInterval setTimeout))
194 "Node.js externs.
195 Set `js2-include-node-externs' to t to include them.")
196
197 (defvar js2-typed-array-externs
198 (mapcar 'symbol-name
199 '(ArrayBuffer Uint8ClampedArray DataView
200 Int8Array Uint8Array Int16Array Uint16Array Int32Array Uint32Array
201 Float32Array Float64Array))
202 "Khronos typed array externs. Available in most modern browsers and
203 in node.js >= 0.6. If `js2-include-node-externs' or `js2-include-browser-externs'
204 are enabled, these will also be included.")
205
206 ;;; Variables
207
208 (defun js2-mark-safe-local (name pred)
209 "Make the variable NAME buffer-local and mark it as safe file-local
210 variable with predicate PRED."
211 (make-variable-buffer-local name)
212 (put name 'safe-local-variable pred))
213
214 (defcustom js2-highlight-level 2
215 "Amount of syntax highlighting to perform.
216 0 or a negative value means none.
217 1 adds basic syntax highlighting.
218 2 adds highlighting of some Ecma built-in properties.
219 3 adds highlighting of many Ecma built-in functions."
220 :group 'js2-mode
221 :type '(choice (const :tag "None" 0)
222 (const :tag "Basic" 1)
223 (const :tag "Include Properties" 2)
224 (const :tag "Include Functions" 3)))
225
226 (defvar js2-mode-dev-mode-p nil
227 "Non-nil if running in development mode. Normally nil.")
228
229 (defgroup js2-mode nil
230 "An improved JavaScript mode."
231 :group 'languages)
232
233 (defcustom js2-basic-offset (if (and (boundp 'c-basic-offset)
234 (numberp c-basic-offset))
235 c-basic-offset
236 4)
237 "Number of spaces to indent nested statements.
238 Similar to `c-basic-offset'."
239 :group 'js2-mode
240 :type 'integer)
241 (js2-mark-safe-local 'js2-basic-offset 'integerp)
242
243 (defcustom js2-bounce-indent-p nil
244 "Non-nil to have indent-line function choose among alternatives.
245 If nil, the indent-line function will indent to a predetermined column
246 based on heuristic guessing. If non-nil, then if the current line is
247 already indented to that predetermined column, indenting will choose
248 another likely column and indent to that spot. Repeated invocation of
249 the indent-line function will cycle among the computed alternatives.
250 See the function `js2-bounce-indent' for details. When it is non-nil,
251 js2-mode also binds `js2-bounce-indent-backwards' to Shift-Tab."
252 :type 'boolean
253 :group 'js2-mode)
254
255 (defcustom js2-pretty-multiline-declarations t
256 "Non-nil to line up multiline declarations vertically:
257
258 var a = 10,
259 b = 20,
260 c = 30;
261
262 If the value is not `all', and the first assigned value in
263 declaration is a function/array/object literal spanning several
264 lines, it won't be indented additionally:
265
266 var o = { var bar = 2,
267 foo: 3 vs. o = {
268 }, foo: 3
269 bar = 2; };"
270 :group 'js2-mode
271 :type 'symbol)
272 (js2-mark-safe-local 'js2-pretty-multiline-declarations 'symbolp)
273
274 (defcustom js2-indent-switch-body nil
275 "When nil, case labels are indented on the same level as the
276 containing switch statement. Otherwise, all lines inside
277 switch statement body are indented one additional level."
278 :type 'boolean
279 :group 'js2-mode)
280 (js2-mark-safe-local 'js2-indent-case-same-as-switch 'booleanp)
281
282 (defcustom js2-idle-timer-delay 0.2
283 "Delay in secs before re-parsing after user makes changes.
284 Multiplied by `js2-dynamic-idle-timer-adjust', which see."
285 :type 'number
286 :group 'js2-mode)
287 (make-variable-buffer-local 'js2-idle-timer-delay)
288
289 (defcustom js2-dynamic-idle-timer-adjust 0
290 "Positive to adjust `js2-idle-timer-delay' based on file size.
291 The idea is that for short files, parsing is faster so we can be
292 more responsive to user edits without interfering with editing.
293 The buffer length in characters (typically bytes) is divided by
294 this value and used to multiply `js2-idle-timer-delay' for the
295 buffer. For example, a 21k file and 10k adjust yields 21k/10k
296 == 2, so js2-idle-timer-delay is multiplied by 2.
297 If `js2-dynamic-idle-timer-adjust' is 0 or negative,
298 `js2-idle-timer-delay' is not dependent on the file size."
299 :type 'number
300 :group 'js2-mode)
301
302 (defcustom js2-concat-multiline-strings t
303 "When non-nil, `js2-line-break' in mid-string will make it a
304 string concatenation. When `eol', the '+' will be inserted at the
305 end of the line, otherwise, at the beginning of the next line."
306 :type '(choice (const t) (const eol) (const nil))
307 :group 'js2-mode)
308
309 (defcustom js2-mode-show-parse-errors t
310 "True to highlight parse errors."
311 :type 'boolean
312 :group 'js2-mode)
313
314 (defcustom js2-mode-show-strict-warnings t
315 "Non-nil to emit Ecma strict-mode warnings.
316 Some of the warnings can be individually disabled by other flags,
317 even if this flag is non-nil."
318 :type 'boolean
319 :group 'js2-mode)
320
321 (defcustom js2-strict-trailing-comma-warning t
322 "Non-nil to warn about trailing commas in array literals.
323 Ecma-262-5.1 allows them, but older versions of IE raise an error."
324 :type 'boolean
325 :group 'js2-mode)
326
327 (defcustom js2-strict-missing-semi-warning t
328 "Non-nil to warn about semicolon auto-insertion after statement.
329 Technically this is legal per Ecma-262, but some style guides disallow
330 depending on it."
331 :type 'boolean
332 :group 'js2-mode)
333
334 (defcustom js2-missing-semi-one-line-override nil
335 "Non-nil to permit missing semicolons in one-line functions.
336 In one-liner functions such as `function identity(x) {return x}'
337 people often omit the semicolon for a cleaner look. If you are
338 such a person, you can suppress the missing-semicolon warning
339 by setting this variable to t."
340 :type 'boolean
341 :group 'js2-mode)
342
343 (defcustom js2-strict-inconsistent-return-warning t
344 "Non-nil to warn about mixing returns with value-returns.
345 It's perfectly legal to have a `return' and a `return foo' in the
346 same function, but it's often an indicator of a bug, and it also
347 interferes with type inference (in systems that support it.)"
348 :type 'boolean
349 :group 'js2-mode)
350
351 (defcustom js2-strict-cond-assign-warning t
352 "Non-nil to warn about expressions like if (a = b).
353 This often should have been '==' instead of '='. If the warning
354 is enabled, you can suppress it on a per-expression basis by
355 parenthesizing the expression, e.g. if ((a = b)) ..."
356 :type 'boolean
357 :group 'js2-mode)
358
359 (defcustom js2-strict-var-redeclaration-warning t
360 "Non-nil to warn about redeclaring variables in a script or function."
361 :type 'boolean
362 :group 'js2-mode)
363
364 (defcustom js2-strict-var-hides-function-arg-warning t
365 "Non-nil to warn about a var decl hiding a function argument."
366 :type 'boolean
367 :group 'js2-mode)
368
369 (defcustom js2-skip-preprocessor-directives nil
370 "Non-nil to treat lines beginning with # as comments.
371 Useful for viewing Mozilla JavaScript source code."
372 :type 'boolean
373 :group 'js2-mode)
374
375 (defcustom js2-language-version 200
376 "Configures what JavaScript language version to recognize.
377 Currently versions 150, 160, 170, 180 and 200 are supported,
378 corresponding to JavaScript 1.5, 1.6, 1.7, 1.8 and 2.0 (Harmony),
379 respectively. In a nutshell, 1.6 adds E4X support, 1.7 adds let,
380 yield, and Array comprehensions, and 1.8 adds function closures."
381 :type 'integer
382 :group 'js2-mode)
383
384 (defcustom js2-allow-keywords-as-property-names t
385 "If non-nil, you can use JavaScript keywords as object property names.
386 Examples:
387
388 var foo = {int: 5, while: 6, continue: 7};
389 foo.return = 8;
390
391 Ecma-262 5.1 allows this syntax, but some engines still don't."
392 :type 'boolean
393 :group 'js2-mode)
394
395 (defcustom js2-instanceof-has-side-effects nil
396 "If non-nil, treats the instanceof operator as having side effects.
397 This is useful for xulrunner apps."
398 :type 'boolean
399 :group 'js2-mode)
400
401 (defcustom js2-move-point-on-right-click t
402 "Non-nil to move insertion point when you right-click.
403 This makes right-click context menu behavior a bit more intuitive,
404 since menu operations generally apply to the point. The exception
405 is if there is a region selection, in which case the point does -not-
406 move, so cut/copy/paste can work properly.
407
408 Note that IntelliJ moves the point, and Eclipse leaves it alone,
409 so this behavior is customizable."
410 :group 'js2-mode
411 :type 'boolean)
412
413 (defcustom js2-allow-rhino-new-expr-initializer t
414 "Non-nil to support a Rhino's experimental syntactic construct.
415
416 Rhino supports the ability to follow a `new' expression with an object
417 literal, which is used to set additional properties on the new object
418 after calling its constructor. Syntax:
419
420 new <expr> [ ( arglist ) ] [initializer]
421
422 Hence, this expression:
423
424 new Object {a: 1, b: 2}
425
426 results in an Object with properties a=1 and b=2. This syntax is
427 apparently not configurable in Rhino - it's currently always enabled,
428 as of Rhino version 1.7R2."
429 :type 'boolean
430 :group 'js2-mode)
431
432 (defcustom js2-allow-member-expr-as-function-name nil
433 "Non-nil to support experimental Rhino syntax for function names.
434
435 Rhino supports an experimental syntax configured via the Rhino Context
436 setting `allowMemberExprAsFunctionName'. The experimental syntax is:
437
438 function <member-expr> ( [ arg-list ] ) { <body> }
439
440 Where member-expr is a non-parenthesized 'member expression', which
441 is anything at the grammar level of a new-expression or lower, meaning
442 any expression that does not involve infix or unary operators.
443
444 When <member-expr> is not a simple identifier, then it is syntactic
445 sugar for assigning the anonymous function to the <member-expr>. Hence,
446 this code:
447
448 function a.b().c[2] (x, y) { ... }
449
450 is rewritten as:
451
452 a.b().c[2] = function(x, y) {...}
453
454 which doesn't seem particularly useful, but Rhino permits it."
455 :type 'boolean
456 :group 'js2-mode)
457
458 ;; scanner variables
459
460 (defmacro js2-deflocal (name value &optional comment)
461 "Define a buffer-local variable NAME with VALUE and COMMENT."
462 `(progn
463 (defvar ,name ,value ,comment)
464 (make-variable-buffer-local ',name)))
465
466 (defvar js2-EOF_CHAR -1
467 "Represents end of stream. Distinct from js2-EOF token type.")
468
469 ;; I originally used symbols to represent tokens, but Rhino uses
470 ;; ints and then sets various flag bits in them, so ints it is.
471 ;; The upshot is that we need a `js2-' prefix in front of each name.
472 (defvar js2-ERROR -1)
473 (defvar js2-EOF 0)
474 (defvar js2-EOL 1)
475 (defvar js2-ENTERWITH 2) ; begin interpreter bytecodes
476 (defvar js2-LEAVEWITH 3)
477 (defvar js2-RETURN 4)
478 (defvar js2-GOTO 5)
479 (defvar js2-IFEQ 6)
480 (defvar js2-IFNE 7)
481 (defvar js2-SETNAME 8)
482 (defvar js2-BITOR 9)
483 (defvar js2-BITXOR 10)
484 (defvar js2-BITAND 11)
485 (defvar js2-EQ 12)
486 (defvar js2-NE 13)
487 (defvar js2-LT 14)
488 (defvar js2-LE 15)
489 (defvar js2-GT 16)
490 (defvar js2-GE 17)
491 (defvar js2-LSH 18)
492 (defvar js2-RSH 19)
493 (defvar js2-URSH 20)
494 (defvar js2-ADD 21) ; infix plus
495 (defvar js2-SUB 22) ; infix minus
496 (defvar js2-MUL 23)
497 (defvar js2-DIV 24)
498 (defvar js2-MOD 25)
499 (defvar js2-NOT 26)
500 (defvar js2-BITNOT 27)
501 (defvar js2-POS 28) ; unary plus
502 (defvar js2-NEG 29) ; unary minus
503 (defvar js2-NEW 30)
504 (defvar js2-DELPROP 31)
505 (defvar js2-TYPEOF 32)
506 (defvar js2-GETPROP 33)
507 (defvar js2-GETPROPNOWARN 34)
508 (defvar js2-SETPROP 35)
509 (defvar js2-GETELEM 36)
510 (defvar js2-SETELEM 37)
511 (defvar js2-CALL 38)
512 (defvar js2-NAME 39) ; an identifier
513 (defvar js2-NUMBER 40)
514 (defvar js2-STRING 41)
515 (defvar js2-NULL 42)
516 (defvar js2-THIS 43)
517 (defvar js2-FALSE 44)
518 (defvar js2-TRUE 45)
519 (defvar js2-SHEQ 46) ; shallow equality (===)
520 (defvar js2-SHNE 47) ; shallow inequality (!==)
521 (defvar js2-REGEXP 48)
522 (defvar js2-BINDNAME 49)
523 (defvar js2-THROW 50)
524 (defvar js2-RETHROW 51) ; rethrow caught exception: catch (e if ) uses it
525 (defvar js2-IN 52)
526 (defvar js2-INSTANCEOF 53)
527 (defvar js2-LOCAL_LOAD 54)
528 (defvar js2-GETVAR 55)
529 (defvar js2-SETVAR 56)
530 (defvar js2-CATCH_SCOPE 57)
531 (defvar js2-ENUM_INIT_KEYS 58)
532 (defvar js2-ENUM_INIT_VALUES 59)
533 (defvar js2-ENUM_INIT_ARRAY 60)
534 (defvar js2-ENUM_NEXT 61)
535 (defvar js2-ENUM_ID 62)
536 (defvar js2-THISFN 63)
537 (defvar js2-RETURN_RESULT 64) ; to return previously stored return result
538 (defvar js2-ARRAYLIT 65) ; array literal
539 (defvar js2-OBJECTLIT 66) ; object literal
540 (defvar js2-GET_REF 67) ; *reference
541 (defvar js2-SET_REF 68) ; *reference = something
542 (defvar js2-DEL_REF 69) ; delete reference
543 (defvar js2-REF_CALL 70) ; f(args) = something or f(args)++
544 (defvar js2-REF_SPECIAL 71) ; reference for special properties like __proto
545 (defvar js2-YIELD 72) ; JS 1.7 yield pseudo keyword
546
547 ;; XML support
548 (defvar js2-DEFAULTNAMESPACE 73)
549 (defvar js2-ESCXMLATTR 74)
550 (defvar js2-ESCXMLTEXT 75)
551 (defvar js2-REF_MEMBER 76) ; Reference for x.@y, x..y etc.
552 (defvar js2-REF_NS_MEMBER 77) ; Reference for x.ns::y, x..ns::y etc.
553 (defvar js2-REF_NAME 78) ; Reference for @y, @[y] etc.
554 (defvar js2-REF_NS_NAME 79) ; Reference for ns::y, @ns::y@[y] etc.
555
556 (defvar js2-first-bytecode js2-ENTERWITH)
557 (defvar js2-last-bytecode js2-REF_NS_NAME)
558
559 (defvar js2-TRY 80)
560 (defvar js2-SEMI 81) ; semicolon
561 (defvar js2-LB 82) ; left and right brackets
562 (defvar js2-RB 83)
563 (defvar js2-LC 84) ; left and right curly-braces
564 (defvar js2-RC 85)
565 (defvar js2-LP 86) ; left and right parens
566 (defvar js2-RP 87)
567 (defvar js2-COMMA 88) ; comma operator
568
569 (defvar js2-ASSIGN 89) ; simple assignment (=)
570 (defvar js2-ASSIGN_BITOR 90) ; |=
571 (defvar js2-ASSIGN_BITXOR 91) ; ^=
572 (defvar js2-ASSIGN_BITAND 92) ; &=
573 (defvar js2-ASSIGN_LSH 93) ; <<=
574 (defvar js2-ASSIGN_RSH 94) ; >>=
575 (defvar js2-ASSIGN_URSH 95) ; >>>=
576 (defvar js2-ASSIGN_ADD 96) ; +=
577 (defvar js2-ASSIGN_SUB 97) ; -=
578 (defvar js2-ASSIGN_MUL 98) ; *=
579 (defvar js2-ASSIGN_DIV 99) ; /=
580 (defvar js2-ASSIGN_MOD 100) ; %=
581
582 (defvar js2-first-assign js2-ASSIGN)
583 (defvar js2-last-assign js2-ASSIGN_MOD)
584
585 (defvar js2-HOOK 101) ; conditional (?:)
586 (defvar js2-COLON 102)
587 (defvar js2-OR 103) ; logical or (||)
588 (defvar js2-AND 104) ; logical and (&&)
589 (defvar js2-INC 105) ; increment/decrement (++ --)
590 (defvar js2-DEC 106)
591 (defvar js2-DOT 107) ; member operator (.)
592 (defvar js2-FUNCTION 108) ; function keyword
593 (defvar js2-EXPORT 109) ; export keyword
594 (defvar js2-IMPORT 110) ; import keyword
595 (defvar js2-IF 111) ; if keyword
596 (defvar js2-ELSE 112) ; else keyword
597 (defvar js2-SWITCH 113) ; switch keyword
598 (defvar js2-CASE 114) ; case keyword
599 (defvar js2-DEFAULT 115) ; default keyword
600 (defvar js2-WHILE 116) ; while keyword
601 (defvar js2-DO 117) ; do keyword
602 (defvar js2-FOR 118) ; for keyword
603 (defvar js2-BREAK 119) ; break keyword
604 (defvar js2-CONTINUE 120) ; continue keyword
605 (defvar js2-VAR 121) ; var keyword
606 (defvar js2-WITH 122) ; with keyword
607 (defvar js2-CATCH 123) ; catch keyword
608 (defvar js2-FINALLY 124) ; finally keyword
609 (defvar js2-VOID 125) ; void keyword
610 (defvar js2-RESERVED 126) ; reserved keywords
611
612 (defvar js2-EMPTY 127)
613
614 ;; Types used for the parse tree - never returned by scanner.
615
616 (defvar js2-BLOCK 128) ; statement block
617 (defvar js2-LABEL 129) ; label
618 (defvar js2-TARGET 130)
619 (defvar js2-LOOP 131)
620 (defvar js2-EXPR_VOID 132) ; expression statement in functions
621 (defvar js2-EXPR_RESULT 133) ; expression statement in scripts
622 (defvar js2-JSR 134)
623 (defvar js2-SCRIPT 135) ; top-level node for entire script
624 (defvar js2-TYPEOFNAME 136) ; for typeof(simple-name)
625 (defvar js2-USE_STACK 137)
626 (defvar js2-SETPROP_OP 138) ; x.y op= something
627 (defvar js2-SETELEM_OP 139) ; x[y] op= something
628 (defvar js2-LOCAL_BLOCK 140)
629 (defvar js2-SET_REF_OP 141) ; *reference op= something
630
631 ;; For XML support:
632 (defvar js2-DOTDOT 142) ; member operator (..)
633 (defvar js2-COLONCOLON 143) ; namespace::name
634 (defvar js2-XML 144) ; XML type
635 (defvar js2-DOTQUERY 145) ; .() -- e.g., x.emps.emp.(name == "terry")
636 (defvar js2-XMLATTR 146) ; @
637 (defvar js2-XMLEND 147)
638
639 ;; Optimizer-only tokens
640 (defvar js2-TO_OBJECT 148)
641 (defvar js2-TO_DOUBLE 149)
642
643 (defvar js2-GET 150) ; JS 1.5 get pseudo keyword
644 (defvar js2-SET 151) ; JS 1.5 set pseudo keyword
645 (defvar js2-LET 152) ; JS 1.7 let pseudo keyword
646 (defvar js2-CONST 153)
647 (defvar js2-SETCONST 154)
648 (defvar js2-SETCONSTVAR 155)
649 (defvar js2-ARRAYCOMP 156)
650 (defvar js2-LETEXPR 157)
651 (defvar js2-WITHEXPR 158)
652 (defvar js2-DEBUGGER 159)
653
654 (defvar js2-COMMENT 160)
655 (defvar js2-ENUM 161) ; for "enum" reserved word
656 (defvar js2-TRIPLEDOT 162) ; for rest parameter
657 (defvar js2-ARROW 163) ; function arrow (=>)
658
659 (defconst js2-num-tokens (1+ js2-ARROW))
660
661 (defconst js2-debug-print-trees nil)
662
663 ;; Rhino accepts any string or stream as input. Emacs character
664 ;; processing works best in buffers, so we'll assume the input is a
665 ;; buffer. JavaScript strings can be copied into temp buffers before
666 ;; scanning them.
667
668 ;; Buffer-local variables yield much cleaner code than using `defstruct'.
669 ;; They're the Emacs equivalent of instance variables, more or less.
670
671 (js2-deflocal js2-ts-dirty-line nil
672 "Token stream buffer-local variable.
673 Indicates stuff other than whitespace since start of line.")
674
675 (js2-deflocal js2-ts-hit-eof nil
676 "Token stream buffer-local variable.")
677
678 ;; FIXME: Unused.
679 (js2-deflocal js2-ts-line-start 0
680 "Token stream buffer-local variable.")
681
682 (js2-deflocal js2-ts-lineno 1
683 "Token stream buffer-local variable.")
684
685 ;; FIXME: Unused.
686 (js2-deflocal js2-ts-line-end-char -1
687 "Token stream buffer-local variable.")
688
689 (js2-deflocal js2-ts-cursor 1 ; emacs buffers are 1-indexed
690 "Token stream buffer-local variable.
691 Current scan position.")
692
693 ;; FIXME: Unused.
694 (js2-deflocal js2-ts-is-xml-attribute nil
695 "Token stream buffer-local variable.")
696
697 (js2-deflocal js2-ts-xml-is-tag-content nil
698 "Token stream buffer-local variable.")
699
700 (js2-deflocal js2-ts-xml-open-tags-count 0
701 "Token stream buffer-local variable.")
702
703 (js2-deflocal js2-ts-string-buffer nil
704 "Token stream buffer-local variable.
705 List of chars built up while scanning various tokens.")
706
707 (defstruct (js2-token
708 (:constructor nil)
709 (:constructor make-js2-token (beg)))
710 "Value returned from the token stream."
711 (type js2-EOF)
712 (beg 1)
713 (end -1)
714 (string "")
715 number
716 regexp-flags
717 comment-type
718 follows-eol-p)
719
720 (defstruct (js2-ts-state
721 (:constructor make-js2-ts-state (&key (lineno js2-ts-lineno)
722 (cursor js2-ts-cursor)
723 (tokens (copy-sequence js2-ti-tokens))
724 (tokens-cursor js2-ti-tokens-cursor)
725 (lookahead js2-ti-lookahead))))
726 lineno
727 cursor
728 tokens
729 tokens-cursor
730 lookahead)
731
732 ;;; Parser variables
733
734 (js2-deflocal js2-parsed-errors nil
735 "List of errors produced during scanning/parsing.")
736
737 (js2-deflocal js2-parsed-warnings nil
738 "List of warnings produced during scanning/parsing.")
739
740 (js2-deflocal js2-recover-from-parse-errors t
741 "Non-nil to continue parsing after a syntax error.
742
743 In recovery mode, the AST will be built in full, and any error
744 nodes will be flagged with appropriate error information. If
745 this flag is nil, a syntax error will result in an error being
746 signaled.
747
748 The variable is automatically buffer-local, because different
749 modes that use the parser will need different settings.")
750
751 (js2-deflocal js2-parse-hook nil
752 "List of callbacks for receiving parsing progress.")
753
754 (defvar js2-parse-finished-hook nil
755 "List of callbacks to notify when parsing finishes.
756 Not called if parsing was interrupted.")
757
758 (js2-deflocal js2-is-eval-code nil
759 "True if we're evaluating code in a string.
760 If non-nil, the tokenizer will record the token text, and the AST nodes
761 will record their source text. Off by default for IDE modes, since the
762 text is available in the buffer.")
763
764 (defvar js2-parse-ide-mode t
765 "Non-nil if the parser is being used for `js2-mode'.
766 If non-nil, the parser will set text properties for fontification
767 and the syntax table. The value should be nil when using the
768 parser as a frontend to an interpreter or byte compiler.")
769
770 ;;; Parser instance variables (buffer-local vars for js2-parse)
771
772 (defconst js2-ti-after-eol (lsh 1 16)
773 "Flag: first token of the source line.")
774
775 ;; Inline Rhino's CompilerEnvirons vars as buffer-locals.
776
777 (js2-deflocal js2-compiler-generate-debug-info t)
778 (js2-deflocal js2-compiler-use-dynamic-scope nil)
779 (js2-deflocal js2-compiler-reserved-keywords-as-identifier nil)
780 (js2-deflocal js2-compiler-xml-available t)
781 (js2-deflocal js2-compiler-optimization-level 0)
782 (js2-deflocal js2-compiler-generating-source t)
783 (js2-deflocal js2-compiler-strict-mode nil)
784 (js2-deflocal js2-compiler-report-warning-as-error nil)
785 (js2-deflocal js2-compiler-generate-observer-count nil)
786 (js2-deflocal js2-compiler-activation-names nil)
787
788 ;; SKIP: sourceURI
789
790 ;; There's a compileFunction method in Context.java - may need it.
791 (js2-deflocal js2-called-by-compile-function nil
792 "True if `js2-parse' was called by `js2-compile-function'.
793 Will only be used when we finish implementing the interpreter.")
794
795 ;; SKIP: ts (we just call `js2-init-scanner' and use its vars)
796
797 ;; SKIP: node factory - we're going to just call functions directly,
798 ;; and eventually go to a unified AST format.
799
800 (js2-deflocal js2-nesting-of-function 0)
801
802 (js2-deflocal js2-recorded-identifiers nil
803 "Tracks identifiers found during parsing.")
804
805 (js2-deflocal js2-is-in-destructuring nil
806 "True while parsing destructuring expression.")
807
808 (defcustom js2-global-externs nil
809 "A list of any extern names you'd like to consider always declared.
810 This list is global and is used by all `js2-mode' files.
811 You can create buffer-local externs list using `js2-additional-externs'.
812
813 There is also a buffer-local variable `js2-default-externs',
814 which is initialized by default to include the Ecma-262 externs
815 and the standard browser externs. The three lists are all
816 checked during highlighting."
817 :type 'list
818 :group 'js2-mode)
819
820 (js2-deflocal js2-default-externs nil
821 "Default external declarations.
822
823 These are currently only used for highlighting undeclared variables,
824 which only worries about top-level (unqualified) references.
825 As js2-mode's processing improves, we will flesh out this list.
826
827 The initial value is set to `js2-ecma-262-externs', unless some
828 of the `js2-include-?-externs' variables are set to t, in which
829 case the browser, Rhino and/or Node.js externs are also included.
830
831 See `js2-additional-externs' for more information.")
832
833 (defcustom js2-include-browser-externs t
834 "Non-nil to include browser externs in the master externs list.
835 If you work on JavaScript files that are not intended for browsers,
836 such as Mozilla Rhino server-side JavaScript, set this to nil.
837 See `js2-additional-externs' for more information about externs."
838 :type 'boolean
839 :group 'js2-mode)
840
841 (defcustom js2-include-rhino-externs nil
842 "Non-nil to include Mozilla Rhino externs in the master externs list.
843 See `js2-additional-externs' for more information about externs."
844 :type 'boolean
845 :group 'js2-mode)
846
847 (defcustom js2-include-node-externs nil
848 "Non-nil to include Node.js externs in the master externs list.
849 See `js2-additional-externs' for more information about externs."
850 :type 'boolean
851 :group 'js2-mode)
852
853 (js2-deflocal js2-additional-externs nil
854 "A buffer-local list of additional external declarations.
855 It is used to decide whether variables are considered undeclared
856 for purposes of highlighting.
857
858 Each entry is a Lisp string. The string should be the fully qualified
859 name of an external entity. All externs should be added to this list,
860 so that as js2-mode's processing improves it can take advantage of them.
861
862 You may want to declare your externs in three ways.
863 First, you can add externs that are valid for all your JavaScript files.
864 You should probably do this by adding them to `js2-global-externs', which
865 is a global list used for all js2-mode files.
866
867 Next, you can add a function to `js2-init-hook' that adds additional
868 externs appropriate for the specific file, perhaps based on its path.
869 These should go in `js2-additional-externs', which is buffer-local.
870
871 Third, you can use JSLint's global declaration, as long as
872 `js2-include-jslint-globals' is non-nil, which see.
873
874 Finally, you can add a function to `js2-post-parse-callbacks',
875 which is called after parsing completes, and `js2-mode-ast' is bound to
876 the root of the parse tree. At this stage you can set up an AST
877 node visitor using `js2-visit-ast' and examine the parse tree
878 for specific import patterns that may imply the existence of
879 other externs, possibly tied to your build system. These should also
880 be added to `js2-additional-externs'.
881
882 Your post-parse callback may of course also use the simpler and
883 faster (but perhaps less robust) approach of simply scanning the
884 buffer text for your imports, using regular expressions.")
885
886 ;; SKIP: decompiler
887 ;; SKIP: encoded-source
888
889 ;;; The following variables are per-function and should be saved/restored
890 ;;; during function parsing...
891
892 (js2-deflocal js2-current-script-or-fn nil)
893 (js2-deflocal js2-current-scope nil)
894 (js2-deflocal js2-nesting-of-with 0)
895 (js2-deflocal js2-label-set nil
896 "An alist mapping label names to nodes.")
897
898 (js2-deflocal js2-loop-set nil)
899 (js2-deflocal js2-loop-and-switch-set nil)
900 (js2-deflocal js2-has-return-value nil)
901 (js2-deflocal js2-end-flags 0)
902
903 ;;; ...end of per function variables
904
905 ;; These flags enumerate the possible ways a statement/function can
906 ;; terminate. These flags are used by endCheck() and by the Parser to
907 ;; detect inconsistent return usage.
908 ;;
909 ;; END_UNREACHED is reserved for code paths that are assumed to always be
910 ;; able to execute (example: throw, continue)
911 ;;
912 ;; END_DROPS_OFF indicates if the statement can transfer control to the
913 ;; next one. Statement such as return dont. A compound statement may have
914 ;; some branch that drops off control to the next statement.
915 ;;
916 ;; END_RETURNS indicates that the statement can return (without arguments)
917 ;; END_RETURNS_VALUE indicates that the statement can return a value.
918 ;;
919 ;; A compound statement such as
920 ;; if (condition) {
921 ;; return value;
922 ;; }
923 ;; Will be detected as (END_DROPS_OFF | END_RETURN_VALUE) by endCheck()
924
925 (defconst js2-end-unreached #x0)
926 (defconst js2-end-drops-off #x1)
927 (defconst js2-end-returns #x2)
928 (defconst js2-end-returns-value #x4)
929
930 ;; Rhino awkwardly passes a statementLabel parameter to the
931 ;; statementHelper() function, the main statement parser, which
932 ;; is then used by quite a few of the sub-parsers. We just make
933 ;; it a buffer-local variable and make sure it's cleaned up properly.
934 (js2-deflocal js2-labeled-stmt nil) ; type `js2-labeled-stmt-node'
935
936 ;; Similarly, Rhino passes an inForInit boolean through about half
937 ;; the expression parsers. We use a dynamically-scoped variable,
938 ;; which makes it easier to funcall the parsers individually without
939 ;; worrying about whether they take the parameter or not.
940 (js2-deflocal js2-in-for-init nil)
941 (js2-deflocal js2-temp-name-counter 0)
942 (js2-deflocal js2-parse-stmt-count 0)
943
944 (defsubst js2-get-next-temp-name ()
945 (format "$%d" (incf js2-temp-name-counter)))
946
947 (defvar js2-parse-interruptable-p t
948 "Set this to nil to force parse to continue until finished.
949 This will mostly be useful for interpreters.")
950
951 (defvar js2-statements-per-pause 50
952 "Pause after this many statements to check for user input.
953 If user input is pending, stop the parse and discard the tree.
954 This makes for a smoother user experience for large files.
955 You may have to wait a second or two before the highlighting
956 and error-reporting appear, but you can always type ahead if
957 you wish. This appears to be more or less how Eclipse, IntelliJ
958 and other editors work.")
959
960 (js2-deflocal js2-record-comments t
961 "Instructs the scanner to record comments in `js2-scanned-comments'.")
962
963 (js2-deflocal js2-scanned-comments nil
964 "List of all comments from the current parse.")
965
966 (defcustom js2-mode-indent-inhibit-undo nil
967 "Non-nil to disable collection of Undo information when indenting lines.
968 Some users have requested this behavior. It's nil by default because
969 other Emacs modes don't work this way."
970 :type 'boolean
971 :group 'js2-mode)
972
973 (defcustom js2-mode-indent-ignore-first-tab nil
974 "If non-nil, ignore first TAB keypress if we look indented properly.
975 It's fairly common for users to navigate to an already-indented line
976 and press TAB for reassurance that it's been indented. For this class
977 of users, we want the first TAB press on a line to be ignored if the
978 line is already indented to one of the precomputed alternatives.
979
980 This behavior is only partly implemented. If you TAB-indent a line,
981 navigate to another line, and then navigate back, it fails to clear
982 the last-indented variable, so it thinks you've already hit TAB once,
983 and performs the indent. A full solution would involve getting on the
984 point-motion hooks for the entire buffer. If we come across another
985 use cases that requires watching point motion, I'll consider doing it.
986
987 If you set this variable to nil, then the TAB key will always change
988 the indentation of the current line, if more than one alternative
989 indentation spot exists."
990 :type 'boolean
991 :group 'js2-mode)
992
993 (defvar js2-indent-hook nil
994 "A hook for user-defined indentation rules.
995
996 Functions on this hook should expect two arguments: (LIST INDEX)
997 The LIST argument is the list of computed indentation points for
998 the current line. INDEX is the list index of the indentation point
999 that `js2-bounce-indent' plans to use. If INDEX is nil, then the
1000 indent function is not going to change the current line indentation.
1001
1002 If a hook function on this list returns a non-nil value, then
1003 `js2-bounce-indent' assumes the hook function has performed its own
1004 indentation, and will do nothing. If all hook functions on the list
1005 return nil, then `js2-bounce-indent' will use its computed indentation
1006 and reindent the line.
1007
1008 When hook functions on this hook list are called, the variable
1009 `js2-mode-ast' may or may not be set, depending on whether the
1010 parse tree is available. If the variable is nil, you can pass a
1011 callback to `js2-mode-wait-for-parse', and your callback will be
1012 called after the new parse tree is built. This can take some time
1013 in large files.")
1014
1015 (defface js2-warning
1016 `((((class color) (background light))
1017 (:underline "orange"))
1018 (((class color) (background dark))
1019 (:underline "orange"))
1020 (t (:underline t)))
1021 "Face for JavaScript warnings."
1022 :group 'js2-mode)
1023
1024 (defface js2-error
1025 `((((class color) (background light))
1026 (:foreground "red"))
1027 (((class color) (background dark))
1028 (:foreground "red"))
1029 (t (:foreground "red")))
1030 "Face for JavaScript errors."
1031 :group 'js2-mode)
1032
1033 (defface js2-jsdoc-tag
1034 '((t :foreground "SlateGray"))
1035 "Face used to highlight @whatever tags in jsdoc comments."
1036 :group 'js2-mode)
1037
1038 (defface js2-jsdoc-type
1039 '((t :foreground "SteelBlue"))
1040 "Face used to highlight {FooBar} types in jsdoc comments."
1041 :group 'js2-mode)
1042
1043 (defface js2-jsdoc-value
1044 '((t :foreground "PeachPuff3"))
1045 "Face used to highlight tag values in jsdoc comments."
1046 :group 'js2-mode)
1047
1048 (defface js2-function-param
1049 '((t :foreground "SeaGreen"))
1050 "Face used to highlight function parameters in javascript."
1051 :group 'js2-mode)
1052
1053 (defface js2-function-call
1054 '((t :inherit default))
1055 "Face used to highlight function name in calls."
1056 :group 'js2-mode)
1057
1058 (defface js2-instance-member
1059 '((t :foreground "DarkOrchid"))
1060 "Face used to highlight instance variables in javascript.
1061 Not currently used."
1062 :group 'js2-mode)
1063
1064 (defface js2-private-member
1065 '((t :foreground "PeachPuff3"))
1066 "Face used to highlight calls to private methods in javascript.
1067 Not currently used."
1068 :group 'js2-mode)
1069
1070 (defface js2-private-function-call
1071 '((t :foreground "goldenrod"))
1072 "Face used to highlight calls to private functions in javascript.
1073 Not currently used."
1074 :group 'js2-mode)
1075
1076 (defface js2-jsdoc-html-tag-name
1077 '((((class color) (min-colors 88) (background light))
1078 (:foreground "rosybrown"))
1079 (((class color) (min-colors 8) (background dark))
1080 (:foreground "yellow"))
1081 (((class color) (min-colors 8) (background light))
1082 (:foreground "magenta")))
1083 "Face used to highlight jsdoc html tag names"
1084 :group 'js2-mode)
1085
1086 (defface js2-jsdoc-html-tag-delimiter
1087 '((((class color) (min-colors 88) (background light))
1088 (:foreground "dark khaki"))
1089 (((class color) (min-colors 8) (background dark))
1090 (:foreground "green"))
1091 (((class color) (min-colors 8) (background light))
1092 (:foreground "green")))
1093 "Face used to highlight brackets in jsdoc html tags."
1094 :group 'js2-mode)
1095
1096 (defface js2-external-variable
1097 '((t :foreground "orange"))
1098 "Face used to highlight undeclared variable identifiers.")
1099
1100 (defcustom js2-init-hook nil
1101 "List of functions to be called after `js2-mode' or
1102 `js2-minor-mode' has initialized all variables, before parsing
1103 the buffer for the first time."
1104 :type 'hook
1105 :group 'js2-mode
1106 :version "20130608")
1107
1108 (defcustom js2-post-parse-callbacks nil
1109 "List of callback functions invoked after parsing finishes.
1110 Currently, the main use for this function is to add synthetic
1111 declarations to `js2-recorded-identifiers', which see."
1112 :type 'hook
1113 :group 'js2-mode)
1114
1115 (defcustom js2-highlight-external-variables t
1116 "Non-nil to highlight undeclared variable identifiers.
1117 An undeclared variable is any variable not declared with var or let
1118 in the current scope or any lexically enclosing scope. If you use
1119 such a variable, then you are either expecting it to originate from
1120 another file, or you've got a potential bug."
1121 :type 'boolean
1122 :group 'js2-mode)
1123
1124 (defcustom js2-include-jslint-globals t
1125 "Non-nil to include the identifiers from JSLint global
1126 declaration (see http://www.jslint.com/lint.html#global) in the
1127 buffer-local externs list. See `js2-additional-externs' for more
1128 information."
1129 :type 'boolean
1130 :group 'js2-mode)
1131
1132 (defvar js2-mode-map
1133 (let ((map (make-sparse-keymap)))
1134 (define-key map [mouse-1] #'js2-mode-show-node)
1135 (define-key map (kbd "M-j") #'js2-line-break)
1136 (define-key map (kbd "C-c C-e") #'js2-mode-hide-element)
1137 (define-key map (kbd "C-c C-s") #'js2-mode-show-element)
1138 (define-key map (kbd "C-c C-a") #'js2-mode-show-all)
1139 (define-key map (kbd "C-c C-f") #'js2-mode-toggle-hide-functions)
1140 (define-key map (kbd "C-c C-t") #'js2-mode-toggle-hide-comments)
1141 (define-key map (kbd "C-c C-o") #'js2-mode-toggle-element)
1142 (define-key map (kbd "C-c C-w") #'js2-mode-toggle-warnings-and-errors)
1143 (define-key map [down-mouse-3] #'js2-down-mouse-3)
1144 (when js2-bounce-indent-p
1145 (define-key map (kbd "<backtab>") #'js2-indent-bounce-backwards))
1146
1147 (define-key map [menu-bar javascript]
1148 (cons "JavaScript" (make-sparse-keymap "JavaScript")))
1149
1150 (define-key map [menu-bar javascript customize-js2-mode]
1151 '(menu-item "Customize js2-mode" js2-mode-customize
1152 :help "Customize the behavior of this mode"))
1153
1154 (define-key map [menu-bar javascript js2-force-refresh]
1155 '(menu-item "Force buffer refresh" js2-mode-reset
1156 :help "Re-parse the buffer from scratch"))
1157
1158 (define-key map [menu-bar javascript separator-2]
1159 '("--"))
1160
1161 (define-key map [menu-bar javascript next-error]
1162 '(menu-item "Next warning or error" next-error
1163 :enabled (and js2-mode-ast
1164 (or (js2-ast-root-errors js2-mode-ast)
1165 (js2-ast-root-warnings js2-mode-ast)))
1166 :help "Move to next warning or error"))
1167
1168 (define-key map [menu-bar javascript display-errors]
1169 '(menu-item "Show errors and warnings" js2-mode-display-warnings-and-errors
1170 :visible (not js2-mode-show-parse-errors)
1171 :help "Turn on display of warnings and errors"))
1172
1173 (define-key map [menu-bar javascript hide-errors]
1174 '(menu-item "Hide errors and warnings" js2-mode-hide-warnings-and-errors
1175 :visible js2-mode-show-parse-errors
1176 :help "Turn off display of warnings and errors"))
1177
1178 (define-key map [menu-bar javascript separator-1]
1179 '("--"))
1180
1181 (define-key map [menu-bar javascript js2-toggle-function]
1182 '(menu-item "Show/collapse element" js2-mode-toggle-element
1183 :help "Hide or show function body or comment"))
1184
1185 (define-key map [menu-bar javascript show-comments]
1186 '(menu-item "Show block comments" js2-mode-toggle-hide-comments
1187 :visible js2-mode-comments-hidden
1188 :help "Expand all hidden block comments"))
1189
1190 (define-key map [menu-bar javascript hide-comments]
1191 '(menu-item "Hide block comments" js2-mode-toggle-hide-comments
1192 :visible (not js2-mode-comments-hidden)
1193 :help "Show block comments as /*...*/"))
1194
1195 (define-key map [menu-bar javascript show-all-functions]
1196 '(menu-item "Show function bodies" js2-mode-toggle-hide-functions
1197 :visible js2-mode-functions-hidden
1198 :help "Expand all hidden function bodies"))
1199
1200 (define-key map [menu-bar javascript hide-all-functions]
1201 '(menu-item "Hide function bodies" js2-mode-toggle-hide-functions
1202 :visible (not js2-mode-functions-hidden)
1203 :help "Show {...} for all top-level function bodies"))
1204
1205 map)
1206 "Keymap used in `js2-mode' buffers.")
1207
1208 (defconst js2-mode-identifier-re "[[:alpha:]_$][[:alnum:]_$]*")
1209
1210 (defvar js2-mode-//-comment-re "^\\(\\s-*\\)//.+"
1211 "Matches a //-comment line. Must be first non-whitespace on line.
1212 First match-group is the leading whitespace.")
1213
1214 (defvar js2-mode-hook nil)
1215
1216 (js2-deflocal js2-mode-ast nil "Private variable.")
1217 (js2-deflocal js2-mode-parse-timer nil "Private variable.")
1218 (js2-deflocal js2-mode-buffer-dirty-p nil "Private variable.")
1219 (js2-deflocal js2-mode-parsing nil "Private variable.")
1220 (js2-deflocal js2-mode-node-overlay nil)
1221
1222 (defvar js2-mode-show-overlay js2-mode-dev-mode-p
1223 "Debug: Non-nil to highlight AST nodes on mouse-down.")
1224
1225 (js2-deflocal js2-mode-fontifications nil "Private variable")
1226 (js2-deflocal js2-mode-deferred-properties nil "Private variable")
1227 (js2-deflocal js2-imenu-recorder nil "Private variable")
1228 (js2-deflocal js2-imenu-function-map nil "Private variable")
1229
1230 (defvar js2-paragraph-start
1231 "\\(@[[:alpha:]]+\\>\\|$\\)")
1232
1233 ;; Note that we also set a 'c-in-sws text property in html comments,
1234 ;; so that `c-forward-sws' and `c-backward-sws' work properly.
1235 (defvar js2-syntactic-ws-start
1236 "\\s \\|/[*/]\\|[\n\r]\\|\\\\[\n\r]\\|\\s!\\|<!--\\|^\\s-*-->")
1237
1238 (defvar js2-syntactic-ws-end
1239 "\\s \\|[\n\r/]\\|\\s!")
1240
1241 (defvar js2-syntactic-eol
1242 (concat "\\s *\\(/\\*[^*\n\r]*"
1243 "\\(\\*+[^*\n\r/][^*\n\r]*\\)*"
1244 "\\*+/\\s *\\)*"
1245 "\\(//\\|/\\*[^*\n\r]*"
1246 "\\(\\*+[^*\n\r/][^*\n\r]*\\)*$"
1247 "\\|\\\\$\\|$\\)")
1248 "Copied from `java-mode'. Needed for some cc-engine functions.")
1249
1250 (defvar js2-comment-prefix-regexp
1251 "//+\\|\\**")
1252
1253 (defvar js2-comment-start-skip
1254 "\\(//+\\|/\\*+\\)\\s *")
1255
1256 (defvar js2-mode-verbose-parse-p js2-mode-dev-mode-p
1257 "Non-nil to emit status messages during parsing.")
1258
1259 (defvar js2-mode-functions-hidden nil "Private variable.")
1260 (defvar js2-mode-comments-hidden nil "Private variable.")
1261
1262 (defvar js2-mode-syntax-table
1263 (let ((table (make-syntax-table)))
1264 (c-populate-syntax-table table)
1265 table)
1266 "Syntax table used in `js2-mode' buffers.")
1267
1268 (defvar js2-mode-abbrev-table nil
1269 "Abbrev table in use in `js2-mode' buffers.")
1270 (define-abbrev-table 'js2-mode-abbrev-table ())
1271
1272 (defvar js2-mode-pending-parse-callbacks nil
1273 "List of functions waiting to be notified that parse is finished.")
1274
1275 (defvar js2-mode-last-indented-line -1)
1276
1277 ;;; Localizable error and warning messages
1278
1279 ;; Messages are copied from Rhino's Messages.properties.
1280 ;; Many of the Java-specific messages have been elided.
1281 ;; Add any js2-specific ones at the end, so we can keep
1282 ;; this file synced with changes to Rhino's.
1283
1284 (defvar js2-message-table
1285 (make-hash-table :test 'equal :size 250)
1286 "Contains localized messages for `js2-mode'.")
1287
1288 ;; TODO(stevey): construct this table at compile-time.
1289 (defmacro js2-msg (key &rest strings)
1290 `(puthash ,key (concat ,@strings)
1291 js2-message-table))
1292
1293 (defun js2-get-msg (msg-key)
1294 "Look up a localized message.
1295 MSG-KEY is a list of (MSG ARGS). If the message takes parameters,
1296 the correct number of ARGS must be provided."
1297 (let* ((key (if (listp msg-key) (car msg-key) msg-key))
1298 (args (if (listp msg-key) (cdr msg-key)))
1299 (msg (gethash key js2-message-table)))
1300 (if msg
1301 (apply #'format msg args)
1302 key))) ; default to showing the key
1303
1304 (js2-msg "msg.dup.parms"
1305 "Duplicate parameter name '%s'.")
1306
1307 (js2-msg "msg.too.big.jump"
1308 "Program too complex: jump offset too big.")
1309
1310 (js2-msg "msg.too.big.index"
1311 "Program too complex: internal index exceeds 64K limit.")
1312
1313 (js2-msg "msg.while.compiling.fn"
1314 "Encountered code generation error while compiling function '%s': %s")
1315
1316 (js2-msg "msg.while.compiling.script"
1317 "Encountered code generation error while compiling script: %s")
1318
1319 ;; Context
1320 (js2-msg "msg.ctor.not.found"
1321 "Constructor for '%s' not found.")
1322
1323 (js2-msg "msg.not.ctor"
1324 "'%s' is not a constructor.")
1325
1326 ;; FunctionObject
1327 (js2-msg "msg.varargs.ctor"
1328 "Method or constructor '%s' must be static "
1329 "with the signature (Context cx, Object[] args, "
1330 "Function ctorObj, boolean inNewExpr) "
1331 "to define a variable arguments constructor.")
1332
1333 (js2-msg "msg.varargs.fun"
1334 "Method '%s' must be static with the signature "
1335 "(Context cx, Scriptable thisObj, Object[] args, Function funObj) "
1336 "to define a variable arguments function.")
1337
1338 (js2-msg "msg.incompat.call"
1339 "Method '%s' called on incompatible object.")
1340
1341 (js2-msg "msg.bad.parms"
1342 "Unsupported parameter type '%s' in method '%s'.")
1343
1344 (js2-msg "msg.bad.method.return"
1345 "Unsupported return type '%s' in method '%s'.")
1346
1347 (js2-msg "msg.bad.ctor.return"
1348 "Construction of objects of type '%s' is not supported.")
1349
1350 (js2-msg "msg.no.overload"
1351 "Method '%s' occurs multiple times in class '%s'.")
1352
1353 (js2-msg "msg.method.not.found"
1354 "Method '%s' not found in '%s'.")
1355
1356 ;; IRFactory
1357
1358 (js2-msg "msg.bad.for.in.lhs"
1359 "Invalid left-hand side of for..in loop.")
1360
1361 (js2-msg "msg.mult.index"
1362 "Only one variable allowed in for..in loop.")
1363
1364 (js2-msg "msg.bad.for.in.destruct"
1365 "Left hand side of for..in loop must be an array of "
1366 "length 2 to accept key/value pair.")
1367
1368 (js2-msg "msg.cant.convert"
1369 "Can't convert to type '%s'.")
1370
1371 (js2-msg "msg.bad.assign.left"
1372 "Invalid assignment left-hand side.")
1373
1374 (js2-msg "msg.bad.decr"
1375 "Invalid decerement operand.")
1376
1377 (js2-msg "msg.bad.incr"
1378 "Invalid increment operand.")
1379
1380 (js2-msg "msg.bad.yield"
1381 "yield must be in a function.")
1382
1383 (js2-msg "msg.yield.parenthesized"
1384 "yield expression must be parenthesized.")
1385
1386 ;; NativeGlobal
1387 (js2-msg "msg.cant.call.indirect"
1388 "Function '%s' must be called directly, and not by way of a "
1389 "function of another name.")
1390
1391 (js2-msg "msg.eval.nonstring"
1392 "Calling eval() with anything other than a primitive "
1393 "string value will simply return the value. "
1394 "Is this what you intended?")
1395
1396 (js2-msg "msg.eval.nonstring.strict"
1397 "Calling eval() with anything other than a primitive "
1398 "string value is not allowed in strict mode.")
1399
1400 (js2-msg "msg.bad.destruct.op"
1401 "Invalid destructuring assignment operator")
1402
1403 ;; NativeCall
1404 (js2-msg "msg.only.from.new"
1405 "'%s' may only be invoked from a `new' expression.")
1406
1407 (js2-msg "msg.deprec.ctor"
1408 "The '%s' constructor is deprecated.")
1409
1410 ;; NativeFunction
1411 (js2-msg "msg.no.function.ref.found"
1412 "no source found to decompile function reference %s")
1413
1414 (js2-msg "msg.arg.isnt.array"
1415 "second argument to Function.prototype.apply must be an array")
1416
1417 ;; NativeGlobal
1418 (js2-msg "msg.bad.esc.mask"
1419 "invalid string escape mask")
1420
1421 ;; NativeRegExp
1422 (js2-msg "msg.bad.quant"
1423 "Invalid quantifier %s")
1424
1425 (js2-msg "msg.overlarge.backref"
1426 "Overly large back reference %s")
1427
1428 (js2-msg "msg.overlarge.min"
1429 "Overly large minimum %s")
1430
1431 (js2-msg "msg.overlarge.max"
1432 "Overly large maximum %s")
1433
1434 (js2-msg "msg.zero.quant"
1435 "Zero quantifier %s")
1436
1437 (js2-msg "msg.max.lt.min"
1438 "Maximum %s less than minimum")
1439
1440 (js2-msg "msg.unterm.quant"
1441 "Unterminated quantifier %s")
1442
1443 (js2-msg "msg.unterm.paren"
1444 "Unterminated parenthetical %s")
1445
1446 (js2-msg "msg.unterm.class"
1447 "Unterminated character class %s")
1448
1449 (js2-msg "msg.bad.range"
1450 "Invalid range in character class.")
1451
1452 (js2-msg "msg.trail.backslash"
1453 "Trailing \\ in regular expression.")
1454
1455 (js2-msg "msg.re.unmatched.right.paren"
1456 "unmatched ) in regular expression.")
1457
1458 (js2-msg "msg.no.regexp"
1459 "Regular expressions are not available.")
1460
1461 (js2-msg "msg.bad.backref"
1462 "back-reference exceeds number of capturing parentheses.")
1463
1464 (js2-msg "msg.bad.regexp.compile"
1465 "Only one argument may be specified if the first "
1466 "argument to RegExp.prototype.compile is a RegExp object.")
1467
1468 ;; Parser
1469 (js2-msg "msg.got.syntax.errors"
1470 "Compilation produced %s syntax errors.")
1471
1472 (js2-msg "msg.var.redecl"
1473 "TypeError: redeclaration of var %s.")
1474
1475 (js2-msg "msg.const.redecl"
1476 "TypeError: redeclaration of const %s.")
1477
1478 (js2-msg "msg.let.redecl"
1479 "TypeError: redeclaration of variable %s.")
1480
1481 (js2-msg "msg.parm.redecl"
1482 "TypeError: redeclaration of formal parameter %s.")
1483
1484 (js2-msg "msg.fn.redecl"
1485 "TypeError: redeclaration of function %s.")
1486
1487 (js2-msg "msg.let.decl.not.in.block"
1488 "SyntaxError: let declaration not directly within block")
1489
1490 ;; NodeTransformer
1491 (js2-msg "msg.dup.label"
1492 "duplicated label")
1493
1494 (js2-msg "msg.undef.label"
1495 "undefined label")
1496
1497 (js2-msg "msg.bad.break"
1498 "unlabelled break must be inside loop or switch")
1499
1500 (js2-msg "msg.continue.outside"
1501 "continue must be inside loop")
1502
1503 (js2-msg "msg.continue.nonloop"
1504 "continue can only use labels of iteration statements")
1505
1506 (js2-msg "msg.bad.throw.eol"
1507 "Line terminator is not allowed between the throw "
1508 "keyword and throw expression.")
1509
1510 (js2-msg "msg.unnamed.function.stmt" ; added by js2-mode
1511 "function statement requires a name")
1512
1513 (js2-msg "msg.no.paren.parms"
1514 "missing ( before function parameters.")
1515
1516 (js2-msg "msg.no.parm"
1517 "missing formal parameter")
1518
1519 (js2-msg "msg.no.paren.after.parms"
1520 "missing ) after formal parameters")
1521
1522 (js2-msg "msg.no.default.after.default.param" ; added by js2-mode
1523 "parameter without default follows parameter with default")
1524
1525 (js2-msg "msg.param.after.rest" ; added by js2-mode
1526 "parameter after rest parameter")
1527
1528 (js2-msg "msg.bad.arrow.args" ; added by js2-mode
1529 "invalid arrow-function arguments (parentheses around the arrow-function may help)")
1530
1531 (js2-msg "msg.no.brace.body"
1532 "missing '{' before function body")
1533
1534 (js2-msg "msg.no.brace.after.body"
1535 "missing } after function body")
1536
1537 (js2-msg "msg.no.paren.cond"
1538 "missing ( before condition")
1539
1540 (js2-msg "msg.no.paren.after.cond"
1541 "missing ) after condition")
1542
1543 (js2-msg "msg.no.semi.stmt"
1544 "missing ; before statement")
1545
1546 (js2-msg "msg.missing.semi"
1547 "missing ; after statement")
1548
1549 (js2-msg "msg.no.name.after.dot"
1550 "missing name after . operator")
1551
1552 (js2-msg "msg.no.name.after.coloncolon"
1553 "missing name after :: operator")
1554
1555 (js2-msg "msg.no.name.after.dotdot"
1556 "missing name after .. operator")
1557
1558 (js2-msg "msg.no.name.after.xmlAttr"
1559 "missing name after .@")
1560
1561 (js2-msg "msg.no.bracket.index"
1562 "missing ] in index expression")
1563
1564 (js2-msg "msg.no.paren.switch"
1565 "missing ( before switch expression")
1566
1567 (js2-msg "msg.no.paren.after.switch"
1568 "missing ) after switch expression")
1569
1570 (js2-msg "msg.no.brace.switch"
1571 "missing '{' before switch body")
1572
1573 (js2-msg "msg.bad.switch"
1574 "invalid switch statement")
1575
1576 (js2-msg "msg.no.colon.case"
1577 "missing : after case expression")
1578
1579 (js2-msg "msg.double.switch.default"
1580 "double default label in the switch statement")
1581
1582 (js2-msg "msg.no.while.do"
1583 "missing while after do-loop body")
1584
1585 (js2-msg "msg.no.paren.for"
1586 "missing ( after for")
1587
1588 (js2-msg "msg.no.semi.for"
1589 "missing ; after for-loop initializer")
1590
1591 (js2-msg "msg.no.semi.for.cond"
1592 "missing ; after for-loop condition")
1593
1594 (js2-msg "msg.in.after.for.name"
1595 "missing in or of after for")
1596
1597 (js2-msg "msg.no.paren.for.ctrl"
1598 "missing ) after for-loop control")
1599
1600 (js2-msg "msg.no.paren.with"
1601 "missing ( before with-statement object")
1602
1603 (js2-msg "msg.no.paren.after.with"
1604 "missing ) after with-statement object")
1605
1606 (js2-msg "msg.no.paren.after.let"
1607 "missing ( after let")
1608
1609 (js2-msg "msg.no.paren.let"
1610 "missing ) after variable list")
1611
1612 (js2-msg "msg.no.curly.let"
1613 "missing } after let statement")
1614
1615 (js2-msg "msg.bad.return"
1616 "invalid return")
1617
1618 (js2-msg "msg.no.brace.block"
1619 "missing } in compound statement")
1620
1621 (js2-msg "msg.bad.label"
1622 "invalid label")
1623
1624 (js2-msg "msg.bad.var"
1625 "missing variable name")
1626
1627 (js2-msg "msg.bad.var.init"
1628 "invalid variable initialization")
1629
1630 (js2-msg "msg.no.colon.cond"
1631 "missing : in conditional expression")
1632
1633 (js2-msg "msg.no.paren.arg"
1634 "missing ) after argument list")
1635
1636 (js2-msg "msg.no.bracket.arg"
1637 "missing ] after element list")
1638
1639 (js2-msg "msg.bad.prop"
1640 "invalid property id")
1641
1642 (js2-msg "msg.no.colon.prop"
1643 "missing : after property id")
1644
1645 (js2-msg "msg.no.brace.prop"
1646 "missing } after property list")
1647
1648 (js2-msg "msg.no.paren"
1649 "missing ) in parenthetical")
1650
1651 (js2-msg "msg.reserved.id"
1652 "'%s' is a reserved identifier")
1653
1654 (js2-msg "msg.no.paren.catch"
1655 "missing ( before catch-block condition")
1656
1657 (js2-msg "msg.bad.catchcond"
1658 "invalid catch block condition")
1659
1660 (js2-msg "msg.catch.unreachable"
1661 "any catch clauses following an unqualified catch are unreachable")
1662
1663 (js2-msg "msg.no.brace.try"
1664 "missing '{' before try block")
1665
1666 (js2-msg "msg.no.brace.catchblock"
1667 "missing '{' before catch-block body")
1668
1669 (js2-msg "msg.try.no.catchfinally"
1670 "'try' without 'catch' or 'finally'")
1671
1672 (js2-msg "msg.no.return.value"
1673 "function %s does not always return a value")
1674
1675 (js2-msg "msg.anon.no.return.value"
1676 "anonymous function does not always return a value")
1677
1678 (js2-msg "msg.return.inconsistent"
1679 "return statement is inconsistent with previous usage")
1680
1681 (js2-msg "msg.generator.returns"
1682 "TypeError: legacy generator function '%s' returns a value")
1683
1684 (js2-msg "msg.anon.generator.returns"
1685 "TypeError: anonymous legacy generator function returns a value")
1686
1687 (js2-msg "msg.syntax"
1688 "syntax error")
1689
1690 (js2-msg "msg.unexpected.eof"
1691 "Unexpected end of file")
1692
1693 (js2-msg "msg.XML.bad.form"
1694 "illegally formed XML syntax")
1695
1696 (js2-msg "msg.XML.not.available"
1697 "XML runtime not available")
1698
1699 (js2-msg "msg.too.deep.parser.recursion"
1700 "Too deep recursion while parsing")
1701
1702 (js2-msg "msg.no.side.effects"
1703 "Code has no side effects")
1704
1705 (js2-msg "msg.extra.trailing.comma"
1706 "Trailing comma is not supported in some browsers")
1707
1708 (js2-msg "msg.array.trailing.comma"
1709 "Trailing comma yields different behavior across browsers")
1710
1711 (js2-msg "msg.equal.as.assign"
1712 (concat "Test for equality (==) mistyped as assignment (=)?"
1713 " (parenthesize to suppress warning)"))
1714
1715 (js2-msg "msg.var.hides.arg"
1716 "Variable %s hides argument")
1717
1718 (js2-msg "msg.destruct.assign.no.init"
1719 "Missing = in destructuring declaration")
1720
1721 ;; ScriptRuntime
1722 (js2-msg "msg.no.properties"
1723 "%s has no properties.")
1724
1725 (js2-msg "msg.invalid.iterator"
1726 "Invalid iterator value")
1727
1728 (js2-msg "msg.iterator.primitive"
1729 "__iterator__ returned a primitive value")
1730
1731 (js2-msg "msg.assn.create.strict"
1732 "Assignment to undeclared variable %s")
1733
1734 (js2-msg "msg.undeclared.variable" ; added by js2-mode
1735 "Undeclared variable or function '%s'")
1736
1737 (js2-msg "msg.ref.undefined.prop"
1738 "Reference to undefined property '%s'")
1739
1740 (js2-msg "msg.prop.not.found"
1741 "Property %s not found.")
1742
1743 (js2-msg "msg.invalid.type"
1744 "Invalid JavaScript value of type %s")
1745
1746 (js2-msg "msg.primitive.expected"
1747 "Primitive type expected (had %s instead)")
1748
1749 (js2-msg "msg.namespace.expected"
1750 "Namespace object expected to left of :: (found %s instead)")
1751
1752 (js2-msg "msg.null.to.object"
1753 "Cannot convert null to an object.")
1754
1755 (js2-msg "msg.undef.to.object"
1756 "Cannot convert undefined to an object.")
1757
1758 (js2-msg "msg.cyclic.value"
1759 "Cyclic %s value not allowed.")
1760
1761 (js2-msg "msg.is.not.defined"
1762 "'%s' is not defined.")
1763
1764 (js2-msg "msg.undef.prop.read"
1765 "Cannot read property '%s' from %s")
1766
1767 (js2-msg "msg.undef.prop.write"
1768 "Cannot set property '%s' of %s to '%s'")
1769
1770 (js2-msg "msg.undef.prop.delete"
1771 "Cannot delete property '%s' of %s")
1772
1773 (js2-msg "msg.undef.method.call"
1774 "Cannot call method '%s' of %s")
1775
1776 (js2-msg "msg.undef.with"
1777 "Cannot apply 'with' to %s")
1778
1779 (js2-msg "msg.isnt.function"
1780 "%s is not a function, it is %s.")
1781
1782 (js2-msg "msg.isnt.function.in"
1783 "Cannot call property %s in object %s. "
1784 "It is not a function, it is '%s'.")
1785
1786 (js2-msg "msg.function.not.found"
1787 "Cannot find function %s.")
1788
1789 (js2-msg "msg.function.not.found.in"
1790 "Cannot find function %s in object %s.")
1791
1792 (js2-msg "msg.isnt.xml.object"
1793 "%s is not an xml object.")
1794
1795 (js2-msg "msg.no.ref.to.get"
1796 "%s is not a reference to read reference value.")
1797
1798 (js2-msg "msg.no.ref.to.set"
1799 "%s is not a reference to set reference value to %s.")
1800
1801 (js2-msg "msg.no.ref.from.function"
1802 "Function %s can not be used as the left-hand "
1803 "side of assignment or as an operand of ++ or -- operator.")
1804
1805 (js2-msg "msg.bad.default.value"
1806 "Object's getDefaultValue() method returned an object.")
1807
1808 (js2-msg "msg.instanceof.not.object"
1809 "Can't use instanceof on a non-object.")
1810
1811 (js2-msg "msg.instanceof.bad.prototype"
1812 "'prototype' property of %s is not an object.")
1813
1814 (js2-msg "msg.bad.radix"
1815 "illegal radix %s.")
1816
1817 ;; ScriptableObject
1818 (js2-msg "msg.default.value"
1819 "Cannot find default value for object.")
1820
1821 (js2-msg "msg.zero.arg.ctor"
1822 "Cannot load class '%s' which has no zero-parameter constructor.")
1823
1824 (js2-msg "msg.ctor.multiple.parms"
1825 "Can't define constructor or class %s since more than "
1826 "one constructor has multiple parameters.")
1827
1828 (js2-msg "msg.extend.scriptable"
1829 "%s must extend ScriptableObject in order to define property %s.")
1830
1831 (js2-msg "msg.bad.getter.parms"
1832 "In order to define a property, getter %s must have zero "
1833 "parameters or a single ScriptableObject parameter.")
1834
1835 (js2-msg "msg.obj.getter.parms"
1836 "Expected static or delegated getter %s to take "
1837 "a ScriptableObject parameter.")
1838
1839 (js2-msg "msg.getter.static"
1840 "Getter and setter must both be static or neither be static.")
1841
1842 (js2-msg "msg.setter.return"
1843 "Setter must have void return type: %s")
1844
1845 (js2-msg "msg.setter2.parms"
1846 "Two-parameter setter must take a ScriptableObject as "
1847 "its first parameter.")
1848
1849 (js2-msg "msg.setter1.parms"
1850 "Expected single parameter setter for %s")
1851
1852 (js2-msg "msg.setter2.expected"
1853 "Expected static or delegated setter %s to take two parameters.")
1854
1855 (js2-msg "msg.setter.parms"
1856 "Expected either one or two parameters for setter.")
1857
1858 (js2-msg "msg.setter.bad.type"
1859 "Unsupported parameter type '%s' in setter '%s'.")
1860
1861 (js2-msg "msg.add.sealed"
1862 "Cannot add a property to a sealed object: %s.")
1863
1864 (js2-msg "msg.remove.sealed"
1865 "Cannot remove a property from a sealed object: %s.")
1866
1867 (js2-msg "msg.modify.sealed"
1868 "Cannot modify a property of a sealed object: %s.")
1869
1870 (js2-msg "msg.modify.readonly"
1871 "Cannot modify readonly property: %s.")
1872
1873 ;; TokenStream
1874 (js2-msg "msg.missing.exponent"
1875 "missing exponent")
1876
1877 (js2-msg "msg.caught.nfe"
1878 "number format error")
1879
1880 (js2-msg "msg.unterminated.string.lit"
1881 "unterminated string literal")
1882
1883 (js2-msg "msg.unterminated.comment"
1884 "unterminated comment")
1885
1886 (js2-msg "msg.unterminated.re.lit"
1887 "unterminated regular expression literal")
1888
1889 (js2-msg "msg.invalid.re.flag"
1890 "invalid flag after regular expression")
1891
1892 (js2-msg "msg.no.re.input.for"
1893 "no input for %s")
1894
1895 (js2-msg "msg.illegal.character"
1896 "illegal character")
1897
1898 (js2-msg "msg.invalid.escape"
1899 "invalid Unicode escape sequence")
1900
1901 (js2-msg "msg.bad.namespace"
1902 "not a valid default namespace statement. "
1903 "Syntax is: default xml namespace = EXPRESSION;")
1904
1905 ;; TokensStream warnings
1906 (js2-msg "msg.bad.octal.literal"
1907 "illegal octal literal digit %s; "
1908 "interpreting it as a decimal digit")
1909
1910 (js2-msg "msg.missing.hex.digits"
1911 "missing hexadecimal digits after '0x'")
1912
1913 (js2-msg "msg.missing.binary.digits"
1914 "missing binary digits after '0b'")
1915
1916 (js2-msg "msg.missing.octal.digits"
1917 "missing octal digits after '0o'")
1918
1919 (js2-msg "msg.script.is.not.constructor"
1920 "Script objects are not constructors.")
1921
1922 ;; Arrays
1923 (js2-msg "msg.arraylength.bad"
1924 "Inappropriate array length.")
1925
1926 ;; Arrays
1927 (js2-msg "msg.arraylength.too.big"
1928 "Array length %s exceeds supported capacity limit.")
1929
1930 ;; URI
1931 (js2-msg "msg.bad.uri"
1932 "Malformed URI sequence.")
1933
1934 ;; Number
1935 (js2-msg "msg.bad.precision"
1936 "Precision %s out of range.")
1937
1938 ;; NativeGenerator
1939 (js2-msg "msg.send.newborn"
1940 "Attempt to send value to newborn generator")
1941
1942 (js2-msg "msg.already.exec.gen"
1943 "Already executing generator")
1944
1945 (js2-msg "msg.StopIteration.invalid"
1946 "StopIteration may not be changed to an arbitrary object.")
1947
1948 ;; Interpreter
1949 (js2-msg "msg.yield.closing"
1950 "Yield from closing generator")
1951
1952 ;;; Tokens Buffer
1953
1954 (defconst js2-ti-max-lookahead 2)
1955 (defconst js2-ti-ntokens (1+ js2-ti-max-lookahead))
1956
1957 ;; Have to call `js2-init-scanner' to initialize the values.
1958 (js2-deflocal js2-ti-tokens nil)
1959 (js2-deflocal js2-ti-tokens-cursor nil)
1960 (js2-deflocal js2-ti-lookahead nil)
1961
1962 (defun js2-new-token (offset)
1963 (let ((token (make-js2-token (+ offset js2-ts-cursor))))
1964 (setq js2-ti-tokens-cursor (mod (1+ js2-ti-tokens-cursor) js2-ti-ntokens))
1965 (aset js2-ti-tokens js2-ti-tokens-cursor token)
1966 token))
1967
1968 (defsubst js2-current-token ()
1969 (aref js2-ti-tokens js2-ti-tokens-cursor))
1970
1971 (defsubst js2-current-token-string ()
1972 (js2-token-string (js2-current-token)))
1973
1974 (defsubst js2-current-token-type ()
1975 (js2-token-type (js2-current-token)))
1976
1977 (defsubst js2-current-token-beg ()
1978 (js2-token-beg (js2-current-token)))
1979
1980 (defsubst js2-current-token-end ()
1981 (js2-token-end (js2-current-token)))
1982
1983 (defun js2-current-token-len ()
1984 (let ((token (js2-current-token)))
1985 (- (js2-token-end token)
1986 (js2-token-beg token))))
1987
1988 (defun js2-ts-seek (state)
1989 (setq js2-ts-lineno (js2-ts-state-lineno state)
1990 js2-ts-cursor (js2-ts-state-cursor state)
1991 js2-ti-tokens (js2-ts-state-tokens state)
1992 js2-ti-tokens-cursor (js2-ts-state-tokens-cursor state)
1993 js2-ti-lookahead (js2-ts-state-lookahead state)))
1994
1995 ;;; Utilities
1996
1997 (defun js2-delete-if (predicate list)
1998 "Remove all items satisfying PREDICATE in LIST."
1999 (loop for item in list
2000 if (not (funcall predicate item))
2001 collect item))
2002
2003 (defun js2-position (element list)
2004 "Find 0-indexed position of ELEMENT in LIST comparing with `eq'.
2005 Returns nil if element is not found in the list."
2006 (let ((count 0)
2007 found)
2008 (while (and list (not found))
2009 (if (eq element (car list))
2010 (setq found t)
2011 (setq count (1+ count)
2012 list (cdr list))))
2013 (if found count)))
2014
2015 (defun js2-find-if (predicate list)
2016 "Find first item satisfying PREDICATE in LIST."
2017 (let (result)
2018 (while (and list (not result))
2019 (if (funcall predicate (car list))
2020 (setq result (car list)))
2021 (setq list (cdr list)))
2022 result))
2023
2024 (defmacro js2-time (form)
2025 "Evaluate FORM, discard result, and return elapsed time in sec."
2026 (declare (debug t))
2027 (let ((beg (make-symbol "--js2-time-beg--"))
2028 (delta (make-symbol "--js2-time-end--")))
2029 `(let ((,beg (current-time))
2030 ,delta)
2031 ,form
2032 (/ (truncate (* (- (float-time (current-time))
2033 (float-time ,beg))
2034 10000))
2035 10000.0))))
2036
2037 (defsubst js2-same-line (pos)
2038 "Return t if POS is on the same line as current point."
2039 (and (>= pos (point-at-bol))
2040 (<= pos (point-at-eol))))
2041
2042 (defun js2-code-bug ()
2043 "Signal an error when we encounter an unexpected code path."
2044 (error "failed assertion"))
2045
2046 (defsubst js2-record-text-property (beg end prop value)
2047 "Record a text property to set when parsing finishes."
2048 (push (list beg end prop value) js2-mode-deferred-properties))
2049
2050 ;; I'd like to associate errors with nodes, but for now the
2051 ;; easiest thing to do is get the context info from the last token.
2052 (defun js2-record-parse-error (msg &optional arg pos len)
2053 (push (list (list msg arg)
2054 (or pos (js2-current-token-beg))
2055 (or len (js2-current-token-len)))
2056 js2-parsed-errors))
2057
2058 (defun js2-report-error (msg &optional msg-arg pos len)
2059 "Signal a syntax error or record a parse error."
2060 (if js2-recover-from-parse-errors
2061 (js2-record-parse-error msg msg-arg pos len)
2062 (signal 'js2-syntax-error
2063 (list msg
2064 js2-ts-lineno
2065 (save-excursion
2066 (goto-char js2-ts-cursor)
2067 (current-column))
2068 js2-ts-hit-eof))))
2069
2070 (defun js2-report-warning (msg &optional msg-arg pos len face)
2071 (if js2-compiler-report-warning-as-error
2072 (js2-report-error msg msg-arg pos len)
2073 (push (list (list msg msg-arg)
2074 (or pos (js2-current-token-beg))
2075 (or len (js2-current-token-len))
2076 face)
2077 js2-parsed-warnings)))
2078
2079 (defun js2-add-strict-warning (msg-id &optional msg-arg beg end)
2080 (if js2-compiler-strict-mode
2081 (js2-report-warning msg-id msg-arg beg
2082 (and beg end (- end beg)))))
2083
2084 (put 'js2-syntax-error 'error-conditions
2085 '(error syntax-error js2-syntax-error))
2086 (put 'js2-syntax-error 'error-message "Syntax error")
2087
2088 (put 'js2-parse-error 'error-conditions
2089 '(error parse-error js2-parse-error))
2090 (put 'js2-parse-error 'error-message "Parse error")
2091
2092 (defmacro js2-clear-flag (flags flag)
2093 `(setq ,flags (logand ,flags (lognot ,flag))))
2094
2095 (defmacro js2-set-flag (flags flag)
2096 "Logical-or FLAG into FLAGS."
2097 `(setq ,flags (logior ,flags ,flag)))
2098
2099 (defsubst js2-flag-set-p (flags flag)
2100 (/= 0 (logand flags flag)))
2101
2102 (defsubst js2-flag-not-set-p (flags flag)
2103 (zerop (logand flags flag)))
2104
2105 (defmacro js2-with-underscore-as-word-syntax (&rest body)
2106 "Evaluate BODY with the _ character set to be word-syntax."
2107 (declare (indent 0) (debug t))
2108 (let ((old-syntax (make-symbol "old-syntax")))
2109 `(let ((,old-syntax (string (char-syntax ?_))))
2110 (unwind-protect
2111 (progn
2112 (modify-syntax-entry ?_ "w" js2-mode-syntax-table)
2113 ,@body)
2114 (modify-syntax-entry ?_ ,old-syntax js2-mode-syntax-table)))))
2115
2116 ;;; AST struct and function definitions
2117
2118 ;; flags for ast node property 'member-type (used for e4x operators)
2119 (defvar js2-property-flag #x1 "Property access: element is valid name.")
2120 (defvar js2-attribute-flag #x2 "x.@y or x..@y.")
2121 (defvar js2-descendants-flag #x4 "x..y or x..@i.")
2122
2123 (defsubst js2-relpos (pos anchor)
2124 "Convert POS to be relative to ANCHOR.
2125 If POS is nil, returns nil."
2126 (and pos (- pos anchor)))
2127
2128 (defun js2-make-pad (indent)
2129 (if (zerop indent)
2130 ""
2131 (make-string (* indent js2-basic-offset) ? )))
2132
2133 (defun js2-visit-ast (node callback)
2134 "Visit every node in ast NODE with visitor CALLBACK.
2135
2136 CALLBACK is a function that takes two arguments: (NODE END-P). It is
2137 called twice: once to visit the node, and again after all the node's
2138 children have been processed. The END-P argument is nil on the first
2139 call and non-nil on the second call. The return value of the callback
2140 affects the traversal: if non-nil, the children of NODE are processed.
2141 If the callback returns nil, or if the node has no children, then the
2142 callback is called immediately with a non-nil END-P argument.
2143
2144 The node traversal is approximately lexical-order, although there
2145 are currently no guarantees around this."
2146 (when node
2147 (let ((vfunc (get (aref node 0) 'js2-visitor)))
2148 ;; visit the node
2149 (when (funcall callback node nil)
2150 ;; visit the kids
2151 (cond
2152 ((eq vfunc 'js2-visit-none)
2153 nil) ; don't even bother calling it
2154 ;; Each AST node type has to define a `js2-visitor' function
2155 ;; that takes a node and a callback, and calls `js2-visit-ast'
2156 ;; on each child of the node.
2157 (vfunc
2158 (funcall vfunc node callback))
2159 (t
2160 (error "%s does not define a visitor-traversal function"
2161 (aref node 0)))))
2162 ;; call the end-visit
2163 (funcall callback node t))))
2164
2165 (defstruct (js2-node
2166 (:constructor nil)) ; abstract
2167 "Base AST node type."
2168 (type -1) ; token type
2169 (pos -1) ; start position of this AST node in parsed input
2170 (len 1) ; num characters spanned by the node
2171 props ; optional node property list (an alist)
2172 parent) ; link to parent node; null for root
2173
2174 (defsubst js2-node-get-prop (node prop &optional default)
2175 (or (cadr (assoc prop (js2-node-props node))) default))
2176
2177 (defsubst js2-node-set-prop (node prop value)
2178 (setf (js2-node-props node)
2179 (cons (list prop value) (js2-node-props node))))
2180
2181 (defun js2-fixup-starts (n nodes)
2182 "Adjust the start positions of NODES to be relative to N.
2183 Any node in the list may be nil, for convenience."
2184 (dolist (node nodes)
2185 (when node
2186 (setf (js2-node-pos node) (- (js2-node-pos node)
2187 (js2-node-pos n))))))
2188
2189 (defun js2-node-add-children (parent &rest nodes)
2190 "Set parent node of NODES to PARENT, and return PARENT.
2191 Does nothing if we're not recording parent links.
2192 If any given node in NODES is nil, doesn't record that link."
2193 (js2-fixup-starts parent nodes)
2194 (dolist (node nodes)
2195 (and node
2196 (setf (js2-node-parent node) parent))))
2197
2198 ;; Non-recursive since it's called a frightening number of times.
2199 (defun js2-node-abs-pos (n)
2200 (let ((pos (js2-node-pos n)))
2201 (while (setq n (js2-node-parent n))
2202 (setq pos (+ pos (js2-node-pos n))))
2203 pos))
2204
2205 (defsubst js2-node-abs-end (n)
2206 "Return absolute buffer position of end of N."
2207 (+ (js2-node-abs-pos n) (js2-node-len n)))
2208
2209 ;; It's important to make sure block nodes have a Lisp list for the
2210 ;; child nodes, to limit printing recursion depth in an AST that
2211 ;; otherwise consists of defstruct vectors. Emacs will crash printing
2212 ;; a sufficiently large vector tree.
2213
2214 (defstruct (js2-block-node
2215 (:include js2-node)
2216 (:constructor nil)
2217 (:constructor make-js2-block-node (&key (type js2-BLOCK)
2218 (pos (js2-current-token-beg))
2219 len
2220 props
2221 kids)))
2222 "A block of statements."
2223 kids) ; a Lisp list of the child statement nodes
2224
2225 (put 'cl-struct-js2-block-node 'js2-visitor 'js2-visit-block)
2226 (put 'cl-struct-js2-block-node 'js2-printer 'js2-print-block)
2227
2228 (defun js2-visit-block (ast callback)
2229 "Visit the `js2-block-node' children of AST."
2230 (dolist (kid (js2-block-node-kids ast))
2231 (js2-visit-ast kid callback)))
2232
2233 (defun js2-print-block (n i)
2234 (let ((pad (js2-make-pad i)))
2235 (insert pad "{\n")
2236 (dolist (kid (js2-block-node-kids n))
2237 (js2-print-ast kid (1+ i)))
2238 (insert pad "}")))
2239
2240 (defstruct (js2-scope
2241 (:include js2-block-node)
2242 (:constructor nil)
2243 (:constructor make-js2-scope (&key (type js2-BLOCK)
2244 (pos (js2-current-token-beg))
2245 len
2246 kids)))
2247 ;; The symbol-table is a LinkedHashMap<String,Symbol> in Rhino.
2248 ;; I don't have one of those handy, so I'll use an alist for now.
2249 ;; It's as fast as an emacs hashtable for up to about 50 elements,
2250 ;; and is much lighter-weight to construct (both CPU and mem).
2251 ;; The keys are interned strings (symbols) for faster lookup.
2252 ;; Should switch to hybrid alist/hashtable eventually.
2253 symbol-table ; an alist of (symbol . js2-symbol)
2254 parent-scope ; a `js2-scope'
2255 top) ; top-level `js2-scope' (script/function)
2256
2257 (put 'cl-struct-js2-scope 'js2-visitor 'js2-visit-block)
2258 (put 'cl-struct-js2-scope 'js2-printer 'js2-print-none)
2259
2260 (defun js2-node-get-enclosing-scope (node)
2261 "Return the innermost `js2-scope' node surrounding NODE.
2262 Returns nil if there is no enclosing scope node."
2263 (let ((parent (js2-node-parent node)))
2264 (while (not (js2-scope-p parent))
2265 (setq parent (js2-node-parent parent)))
2266 parent))
2267
2268 (defun js2-get-defining-scope (scope name)
2269 "Search up scope chain from SCOPE looking for NAME, a string or symbol.
2270 Returns `js2-scope' in which NAME is defined, or nil if not found."
2271 (let ((sym (if (symbolp name)
2272 name
2273 (intern name)))
2274 table
2275 result
2276 (continue t))
2277 (while (and scope continue)
2278 (if (and (setq table (js2-scope-symbol-table scope))
2279 (assq sym table))
2280 (setq continue nil
2281 result scope)
2282 (setq scope (js2-scope-parent-scope scope))))
2283 result))
2284
2285 (defun js2-scope-get-symbol (scope name)
2286 "Return symbol table entry for NAME in SCOPE.
2287 NAME can be a string or symbol. Returns a `js2-symbol' or nil if not found."
2288 (and (js2-scope-symbol-table scope)
2289 (cdr (assq (if (symbolp name)
2290 name
2291 (intern name))
2292 (js2-scope-symbol-table scope)))))
2293
2294 (defun js2-scope-put-symbol (scope name symbol)
2295 "Enter SYMBOL into symbol-table for SCOPE under NAME.
2296 NAME can be a Lisp symbol or string. SYMBOL is a `js2-symbol'."
2297 (let* ((table (js2-scope-symbol-table scope))
2298 (sym (if (symbolp name) name (intern name)))
2299 (entry (assq sym table)))
2300 (if entry
2301 (setcdr entry symbol)
2302 (push (cons sym symbol)
2303 (js2-scope-symbol-table scope)))))
2304
2305 (defstruct (js2-symbol
2306 (:constructor nil)
2307 (:constructor make-js2-symbol (decl-type name &optional ast-node)))
2308 "A symbol table entry."
2309 ;; One of js2-FUNCTION, js2-LP (for parameters), js2-VAR,
2310 ;; js2-LET, or js2-CONST
2311 decl-type
2312 name ; string
2313 ast-node) ; a `js2-node'
2314
2315 (defstruct (js2-error-node
2316 (:include js2-node)
2317 (:constructor nil) ; silence emacs21 byte-compiler
2318 (:constructor make-js2-error-node (&key (type js2-ERROR)
2319 (pos (js2-current-token-beg))
2320 len)))
2321 "AST node representing a parse error.")
2322
2323 (put 'cl-struct-js2-error-node 'js2-visitor 'js2-visit-none)
2324 (put 'cl-struct-js2-error-node 'js2-printer 'js2-print-none)
2325
2326 (defstruct (js2-script-node
2327 (:include js2-scope)
2328 (:constructor nil)
2329 (:constructor make-js2-script-node (&key (type js2-SCRIPT)
2330 (pos (js2-current-token-beg))
2331 len
2332 ;; FIXME: What are those?
2333 var-decls
2334 fun-decls)))
2335 functions ; Lisp list of nested functions
2336 regexps ; Lisp list of (string . flags)
2337 symbols ; alist (every symbol gets unique index)
2338 (param-count 0)
2339 var-names ; vector of string names
2340 consts ; bool-vector matching var-decls
2341 (temp-number 0)) ; for generating temp variables
2342
2343 (put 'cl-struct-js2-script-node 'js2-visitor 'js2-visit-block)
2344 (put 'cl-struct-js2-script-node 'js2-printer 'js2-print-script)
2345
2346 (defun js2-print-script (node indent)
2347 (dolist (kid (js2-block-node-kids node))
2348 (js2-print-ast kid indent)))
2349
2350 (defstruct (js2-ast-root
2351 (:include js2-script-node)
2352 (:constructor nil)
2353 (:constructor make-js2-ast-root (&key (type js2-SCRIPT)
2354 (pos (js2-current-token-beg))
2355 len
2356 buffer)))
2357 "The root node of a js2 AST."
2358 buffer ; the source buffer from which the code was parsed
2359 comments ; a Lisp list of comments, ordered by start position
2360 errors ; a Lisp list of errors found during parsing
2361 warnings ; a Lisp list of warnings found during parsing
2362 node-count) ; number of nodes in the tree, including the root
2363
2364 (put 'cl-struct-js2-ast-root 'js2-visitor 'js2-visit-ast-root)
2365 (put 'cl-struct-js2-ast-root 'js2-printer 'js2-print-script)
2366
2367 (defun js2-visit-ast-root (ast callback)
2368 (dolist (kid (js2-ast-root-kids ast))
2369 (js2-visit-ast kid callback))
2370 (dolist (comment (js2-ast-root-comments ast))
2371 (js2-visit-ast comment callback)))
2372
2373 (defstruct (js2-comment-node
2374 (:include js2-node)
2375 (:constructor nil)
2376 (:constructor make-js2-comment-node (&key (type js2-COMMENT)
2377 (pos (js2-current-token-beg))
2378 len
2379 format)))
2380 format) ; 'line, 'block, 'jsdoc or 'html
2381
2382 (put 'cl-struct-js2-comment-node 'js2-visitor 'js2-visit-none)
2383 (put 'cl-struct-js2-comment-node 'js2-printer 'js2-print-comment)
2384
2385 (defun js2-print-comment (n i)
2386 ;; We really ought to link end-of-line comments to their nodes.
2387 ;; Or maybe we could add a new comment type, 'endline.
2388 (insert (js2-make-pad i)
2389 (js2-node-string n)))
2390
2391 (defstruct (js2-expr-stmt-node
2392 (:include js2-node)
2393 (:constructor nil)
2394 (:constructor make-js2-expr-stmt-node (&key (type js2-EXPR_VOID)
2395 (pos js2-ts-cursor)
2396 len
2397 expr)))
2398 "An expression statement."
2399 expr)
2400
2401 (defsubst js2-expr-stmt-node-set-has-result (node)
2402 "Change NODE type to `js2-EXPR_RESULT'. Used for code generation."
2403 (setf (js2-node-type node) js2-EXPR_RESULT))
2404
2405 (put 'cl-struct-js2-expr-stmt-node 'js2-visitor 'js2-visit-expr-stmt-node)
2406 (put 'cl-struct-js2-expr-stmt-node 'js2-printer 'js2-print-expr-stmt-node)
2407
2408 (defun js2-visit-expr-stmt-node (n v)
2409 (js2-visit-ast (js2-expr-stmt-node-expr n) v))
2410
2411 (defun js2-print-expr-stmt-node (n indent)
2412 (js2-print-ast (js2-expr-stmt-node-expr n) indent)
2413 (insert ";\n"))
2414
2415 (defstruct (js2-loop-node
2416 (:include js2-scope)
2417 (:constructor nil))
2418 "Abstract supertype of loop nodes."
2419 body ; a `js2-block-node'
2420 lp ; position of left-paren, nil if omitted
2421 rp) ; position of right-paren, nil if omitted
2422
2423 (defstruct (js2-do-node
2424 (:include js2-loop-node)
2425 (:constructor nil)
2426 (:constructor make-js2-do-node (&key (type js2-DO)
2427 (pos (js2-current-token-beg))
2428 len
2429 body
2430 condition
2431 while-pos
2432 lp
2433 rp)))
2434 "AST node for do-loop."
2435 condition ; while (expression)
2436 while-pos) ; buffer position of 'while' keyword
2437
2438 (put 'cl-struct-js2-do-node 'js2-visitor 'js2-visit-do-node)
2439 (put 'cl-struct-js2-do-node 'js2-printer 'js2-print-do-node)
2440
2441 (defun js2-visit-do-node (n v)
2442 (js2-visit-ast (js2-do-node-body n) v)
2443 (js2-visit-ast (js2-do-node-condition n) v))
2444
2445 (defun js2-print-do-node (n i)
2446 (let ((pad (js2-make-pad i)))
2447 (insert pad "do {\n")
2448 (dolist (kid (js2-block-node-kids (js2-do-node-body n)))
2449 (js2-print-ast kid (1+ i)))
2450 (insert pad "} while (")
2451 (js2-print-ast (js2-do-node-condition n) 0)
2452 (insert ");\n")))
2453
2454 (defstruct (js2-while-node
2455 (:include js2-loop-node)
2456 (:constructor nil)
2457 (:constructor make-js2-while-node (&key (type js2-WHILE)
2458 (pos (js2-current-token-beg))
2459 len body
2460 condition lp
2461 rp)))
2462 "AST node for while-loop."
2463 condition) ; while-condition
2464
2465 (put 'cl-struct-js2-while-node 'js2-visitor 'js2-visit-while-node)
2466 (put 'cl-struct-js2-while-node 'js2-printer 'js2-print-while-node)
2467
2468 (defun js2-visit-while-node (n v)
2469 (js2-visit-ast (js2-while-node-condition n) v)
2470 (js2-visit-ast (js2-while-node-body n) v))
2471
2472 (defun js2-print-while-node (n i)
2473 (let ((pad (js2-make-pad i)))
2474 (insert pad "while (")
2475 (js2-print-ast (js2-while-node-condition n) 0)
2476 (insert ") {\n")
2477 (js2-print-body (js2-while-node-body n) (1+ i))
2478 (insert pad "}\n")))
2479
2480 (defstruct (js2-for-node
2481 (:include js2-loop-node)
2482 (:constructor nil)
2483 (:constructor make-js2-for-node (&key (type js2-FOR)
2484 (pos js2-ts-cursor)
2485 len body init
2486 condition
2487 update lp rp)))
2488 "AST node for a C-style for-loop."
2489 init ; initialization expression
2490 condition ; loop condition
2491 update) ; update clause
2492
2493 (put 'cl-struct-js2-for-node 'js2-visitor 'js2-visit-for-node)
2494 (put 'cl-struct-js2-for-node 'js2-printer 'js2-print-for-node)
2495
2496 (defun js2-visit-for-node (n v)
2497 (js2-visit-ast (js2-for-node-init n) v)
2498 (js2-visit-ast (js2-for-node-condition n) v)
2499 (js2-visit-ast (js2-for-node-update n) v)
2500 (js2-visit-ast (js2-for-node-body n) v))
2501
2502 (defun js2-print-for-node (n i)
2503 (let ((pad (js2-make-pad i)))
2504 (insert pad "for (")
2505 (js2-print-ast (js2-for-node-init n) 0)
2506 (insert "; ")
2507 (js2-print-ast (js2-for-node-condition n) 0)
2508 (insert "; ")
2509 (js2-print-ast (js2-for-node-update n) 0)
2510 (insert ") {\n")
2511 (js2-print-body (js2-for-node-body n) (1+ i))
2512 (insert pad "}\n")))
2513
2514 (defstruct (js2-for-in-node
2515 (:include js2-loop-node)
2516 (:constructor nil)
2517 (:constructor make-js2-for-in-node (&key (type js2-FOR)
2518 (pos js2-ts-cursor)
2519 len body
2520 iterator
2521 object
2522 in-pos
2523 each-pos
2524 foreach-p forof-p
2525 lp rp)))
2526 "AST node for a for..in loop."
2527 iterator ; [var] foo in ...
2528 object ; object over which we're iterating
2529 in-pos ; buffer position of 'in' keyword
2530 each-pos ; buffer position of 'each' keyword, if foreach-p
2531 foreach-p ; t if it's a for-each loop
2532 forof-p) ; t if it's a for-of loop
2533
2534 (put 'cl-struct-js2-for-in-node 'js2-visitor 'js2-visit-for-in-node)
2535 (put 'cl-struct-js2-for-in-node 'js2-printer 'js2-print-for-in-node)
2536
2537 (defun js2-visit-for-in-node (n v)
2538 (js2-visit-ast (js2-for-in-node-iterator n) v)
2539 (js2-visit-ast (js2-for-in-node-object n) v)
2540 (js2-visit-ast (js2-for-in-node-body n) v))
2541
2542 (defun js2-print-for-in-node (n i)
2543 (let ((pad (js2-make-pad i))
2544 (foreach (js2-for-in-node-foreach-p n))
2545 (forof (js2-for-in-node-forof-p n)))
2546 (insert pad "for ")
2547 (if foreach
2548 (insert "each "))
2549 (insert "(")
2550 (js2-print-ast (js2-for-in-node-iterator n) 0)
2551 (insert (if forof " of " " in "))
2552 (js2-print-ast (js2-for-in-node-object n) 0)
2553 (insert ") {\n")
2554 (js2-print-body (js2-for-in-node-body n) (1+ i))
2555 (insert pad "}\n")))
2556
2557 (defstruct (js2-return-node
2558 (:include js2-node)
2559 (:constructor nil)
2560 (:constructor make-js2-return-node (&key (type js2-RETURN)
2561 (pos js2-ts-cursor)
2562 len
2563 retval)))
2564 "AST node for a return statement."
2565 retval) ; expression to return, or 'undefined
2566
2567 (put 'cl-struct-js2-return-node 'js2-visitor 'js2-visit-return-node)
2568 (put 'cl-struct-js2-return-node 'js2-printer 'js2-print-return-node)
2569
2570 (defun js2-visit-return-node (n v)
2571 (js2-visit-ast (js2-return-node-retval n) v))
2572
2573 (defun js2-print-return-node (n i)
2574 (insert (js2-make-pad i) "return")
2575 (when (js2-return-node-retval n)
2576 (insert " ")
2577 (js2-print-ast (js2-return-node-retval n) 0))
2578 (insert ";\n"))
2579
2580 (defstruct (js2-if-node
2581 (:include js2-node)
2582 (:constructor nil)
2583 (:constructor make-js2-if-node (&key (type js2-IF)
2584 (pos js2-ts-cursor)
2585 len condition
2586 then-part
2587 else-pos
2588 else-part lp
2589 rp)))
2590 "AST node for an if-statement."
2591 condition ; expression
2592 then-part ; statement or block
2593 else-pos ; optional buffer position of 'else' keyword
2594 else-part ; optional statement or block
2595 lp ; position of left-paren, nil if omitted
2596 rp) ; position of right-paren, nil if omitted
2597
2598 (put 'cl-struct-js2-if-node 'js2-visitor 'js2-visit-if-node)
2599 (put 'cl-struct-js2-if-node 'js2-printer 'js2-print-if-node)
2600
2601 (defun js2-visit-if-node (n v)
2602 (js2-visit-ast (js2-if-node-condition n) v)
2603 (js2-visit-ast (js2-if-node-then-part n) v)
2604 (js2-visit-ast (js2-if-node-else-part n) v))
2605
2606 (defun js2-print-if-node (n i)
2607 (let ((pad (js2-make-pad i))
2608 (then-part (js2-if-node-then-part n))
2609 (else-part (js2-if-node-else-part n)))
2610 (insert pad "if (")
2611 (js2-print-ast (js2-if-node-condition n) 0)
2612 (insert ") {\n")
2613 (js2-print-body then-part (1+ i))
2614 (insert pad "}")
2615 (cond
2616 ((not else-part)
2617 (insert "\n"))
2618 ((js2-if-node-p else-part)
2619 (insert " else ")
2620 (js2-print-body else-part i))
2621 (t
2622 (insert " else {\n")
2623 (js2-print-body else-part (1+ i))
2624 (insert pad "}\n")))))
2625
2626 (defstruct (js2-try-node
2627 (:include js2-node)
2628 (:constructor nil)
2629 (:constructor make-js2-try-node (&key (type js2-TRY)
2630 (pos js2-ts-cursor)
2631 len
2632 try-block
2633 catch-clauses
2634 finally-block)))
2635 "AST node for a try-statement."
2636 try-block
2637 catch-clauses ; a Lisp list of `js2-catch-node'
2638 finally-block) ; a `js2-finally-node'
2639
2640 (put 'cl-struct-js2-try-node 'js2-visitor 'js2-visit-try-node)
2641 (put 'cl-struct-js2-try-node 'js2-printer 'js2-print-try-node)
2642
2643 (defun js2-visit-try-node (n v)
2644 (js2-visit-ast (js2-try-node-try-block n) v)
2645 (dolist (clause (js2-try-node-catch-clauses n))
2646 (js2-visit-ast clause v))
2647 (js2-visit-ast (js2-try-node-finally-block n) v))
2648
2649 (defun js2-print-try-node (n i)
2650 (let ((pad (js2-make-pad i))
2651 (catches (js2-try-node-catch-clauses n))
2652 (finally (js2-try-node-finally-block n)))
2653 (insert pad "try {\n")
2654 (js2-print-body (js2-try-node-try-block n) (1+ i))
2655 (insert pad "}")
2656 (when catches
2657 (dolist (catch catches)
2658 (js2-print-ast catch i)))
2659 (if finally
2660 (js2-print-ast finally i)
2661 (insert "\n"))))
2662
2663 (defstruct (js2-catch-node
2664 (:include js2-node)
2665 (:constructor nil)
2666 (:constructor make-js2-catch-node (&key (type js2-CATCH)
2667 (pos js2-ts-cursor)
2668 len
2669 param
2670 guard-kwd
2671 guard-expr
2672 block lp
2673 rp)))
2674 "AST node for a catch clause."
2675 param ; destructuring form or simple name node
2676 guard-kwd ; relative buffer position of "if" in "catch (x if ...)"
2677 guard-expr ; catch condition, a `js2-node'
2678 block ; statements, a `js2-block-node'
2679 lp ; buffer position of left-paren, nil if omitted
2680 rp) ; buffer position of right-paren, nil if omitted
2681
2682 (put 'cl-struct-js2-catch-node 'js2-visitor 'js2-visit-catch-node)
2683 (put 'cl-struct-js2-catch-node 'js2-printer 'js2-print-catch-node)
2684
2685 (defun js2-visit-catch-node (n v)
2686 (js2-visit-ast (js2-catch-node-param n) v)
2687 (when (js2-catch-node-guard-kwd n)
2688 (js2-visit-ast (js2-catch-node-guard-expr n) v))
2689 (js2-visit-ast (js2-catch-node-block n) v))
2690
2691 (defun js2-print-catch-node (n i)
2692 (let ((pad (js2-make-pad i))
2693 (guard-kwd (js2-catch-node-guard-kwd n))
2694 (guard-expr (js2-catch-node-guard-expr n)))
2695 (insert " catch (")
2696 (js2-print-ast (js2-catch-node-param n) 0)
2697 (when guard-kwd
2698 (insert " if ")
2699 (js2-print-ast guard-expr 0))
2700 (insert ") {\n")
2701 (js2-print-body (js2-catch-node-block n) (1+ i))
2702 (insert pad "}")))
2703
2704 (defstruct (js2-finally-node
2705 (:include js2-node)
2706 (:constructor nil)
2707 (:constructor make-js2-finally-node (&key (type js2-FINALLY)
2708 (pos js2-ts-cursor)
2709 len body)))
2710 "AST node for a finally clause."
2711 body) ; a `js2-node', often but not always a block node
2712
2713 (put 'cl-struct-js2-finally-node 'js2-visitor 'js2-visit-finally-node)
2714 (put 'cl-struct-js2-finally-node 'js2-printer 'js2-print-finally-node)
2715
2716 (defun js2-visit-finally-node (n v)
2717 (js2-visit-ast (js2-finally-node-body n) v))
2718
2719 (defun js2-print-finally-node (n i)
2720 (let ((pad (js2-make-pad i)))
2721 (insert " finally {\n")
2722 (js2-print-body (js2-finally-node-body n) (1+ i))
2723 (insert pad "}\n")))
2724
2725 (defstruct (js2-switch-node
2726 (:include js2-node)
2727 (:constructor nil)
2728 (:constructor make-js2-switch-node (&key (type js2-SWITCH)
2729 (pos js2-ts-cursor)
2730 len
2731 discriminant
2732 cases lp
2733 rp)))
2734 "AST node for a switch statement."
2735 discriminant ; a `js2-node' (switch expression)
2736 cases ; a Lisp list of `js2-case-node'
2737 lp ; position of open-paren for discriminant, nil if omitted
2738 rp) ; position of close-paren for discriminant, nil if omitted
2739
2740 (put 'cl-struct-js2-switch-node 'js2-visitor 'js2-visit-switch-node)
2741 (put 'cl-struct-js2-switch-node 'js2-printer 'js2-print-switch-node)
2742
2743 (defun js2-visit-switch-node (n v)
2744 (js2-visit-ast (js2-switch-node-discriminant n) v)
2745 (dolist (c (js2-switch-node-cases n))
2746 (js2-visit-ast c v)))
2747
2748 (defun js2-print-switch-node (n i)
2749 (let ((pad (js2-make-pad i))
2750 (cases (js2-switch-node-cases n)))
2751 (insert pad "switch (")
2752 (js2-print-ast (js2-switch-node-discriminant n) 0)
2753 (insert ") {\n")
2754 (dolist (case cases)
2755 (js2-print-ast case i))
2756 (insert pad "}\n")))
2757
2758 (defstruct (js2-case-node
2759 (:include js2-block-node)
2760 (:constructor nil)
2761 (:constructor make-js2-case-node (&key (type js2-CASE)
2762 (pos js2-ts-cursor)
2763 len kids expr)))
2764 "AST node for a case clause of a switch statement."
2765 expr) ; the case expression (nil for default)
2766
2767 (put 'cl-struct-js2-case-node 'js2-visitor 'js2-visit-case-node)
2768 (put 'cl-struct-js2-case-node 'js2-printer 'js2-print-case-node)
2769
2770 (defun js2-visit-case-node (n v)
2771 (js2-visit-ast (js2-case-node-expr n) v)
2772 (js2-visit-block n v))
2773
2774 (defun js2-print-case-node (n i)
2775 (let ((pad (js2-make-pad i))
2776 (expr (js2-case-node-expr n)))
2777 (insert pad)
2778 (if (null expr)
2779 (insert "default:\n")
2780 (insert "case ")
2781 (js2-print-ast expr 0)
2782 (insert ":\n"))
2783 (dolist (kid (js2-case-node-kids n))
2784 (js2-print-ast kid (1+ i)))))
2785
2786 (defstruct (js2-throw-node
2787 (:include js2-node)
2788 (:constructor nil)
2789 (:constructor make-js2-throw-node (&key (type js2-THROW)
2790 (pos js2-ts-cursor)
2791 len expr)))
2792 "AST node for a throw statement."
2793 expr) ; the expression to throw
2794
2795 (put 'cl-struct-js2-throw-node 'js2-visitor 'js2-visit-throw-node)
2796 (put 'cl-struct-js2-throw-node 'js2-printer 'js2-print-throw-node)
2797
2798 (defun js2-visit-throw-node (n v)
2799 (js2-visit-ast (js2-throw-node-expr n) v))
2800
2801 (defun js2-print-throw-node (n i)
2802 (insert (js2-make-pad i) "throw ")
2803 (js2-print-ast (js2-throw-node-expr n) 0)
2804 (insert ";\n"))
2805
2806 (defstruct (js2-with-node
2807 (:include js2-node)
2808 (:constructor nil)
2809 (:constructor make-js2-with-node (&key (type js2-WITH)
2810 (pos js2-ts-cursor)
2811 len object
2812 body lp rp)))
2813 "AST node for a with-statement."
2814 object
2815 body
2816 lp ; buffer position of left-paren around object, nil if omitted
2817 rp) ; buffer position of right-paren around object, nil if omitted
2818
2819 (put 'cl-struct-js2-with-node 'js2-visitor 'js2-visit-with-node)
2820 (put 'cl-struct-js2-with-node 'js2-printer 'js2-print-with-node)
2821
2822 (defun js2-visit-with-node (n v)
2823 (js2-visit-ast (js2-with-node-object n) v)
2824 (js2-visit-ast (js2-with-node-body n) v))
2825
2826 (defun js2-print-with-node (n i)
2827 (let ((pad (js2-make-pad i)))
2828 (insert pad "with (")
2829 (js2-print-ast (js2-with-node-object n) 0)
2830 (insert ") {\n")
2831 (js2-print-body (js2-with-node-body n) (1+ i))
2832 (insert pad "}\n")))
2833
2834 (defstruct (js2-label-node
2835 (:include js2-node)
2836 (:constructor nil)
2837 (:constructor make-js2-label-node (&key (type js2-LABEL)
2838 (pos js2-ts-cursor)
2839 len name)))
2840 "AST node for a statement label or case label."
2841 name ; a string
2842 loop) ; for validating and code-generating continue-to-label
2843
2844 (put 'cl-struct-js2-label-node 'js2-visitor 'js2-visit-none)
2845 (put 'cl-struct-js2-label-node 'js2-printer 'js2-print-label)
2846
2847 (defun js2-print-label (n i)
2848 (insert (js2-make-pad i)
2849 (js2-label-node-name n)
2850 ":\n"))
2851
2852 (defstruct (js2-labeled-stmt-node
2853 (:include js2-node)
2854 (:constructor nil)
2855 ;; type needs to be in `js2-side-effecting-tokens' to avoid spurious
2856 ;; no-side-effects warnings, hence js2-EXPR_RESULT.
2857 (:constructor make-js2-labeled-stmt-node (&key (type js2-EXPR_RESULT)
2858 (pos js2-ts-cursor)
2859 len labels stmt)))
2860 "AST node for a statement with one or more labels.
2861 Multiple labels for a statement are collapsed into the labels field."
2862 labels ; Lisp list of `js2-label-node'
2863 stmt) ; the statement these labels are for
2864
2865 (put 'cl-struct-js2-labeled-stmt-node 'js2-visitor 'js2-visit-labeled-stmt)
2866 (put 'cl-struct-js2-labeled-stmt-node 'js2-printer 'js2-print-labeled-stmt)
2867
2868 (defun js2-get-label-by-name (lbl-stmt name)
2869 "Return a `js2-label-node' by NAME from LBL-STMT's labels list.
2870 Returns nil if no such label is in the list."
2871 (let ((label-list (js2-labeled-stmt-node-labels lbl-stmt))
2872 result)
2873 (while (and label-list (not result))
2874 (if (string= (js2-label-node-name (car label-list)) name)
2875 (setq result (car label-list))
2876 (setq label-list (cdr label-list))))
2877 result))
2878
2879 (defun js2-visit-labeled-stmt (n v)
2880 (dolist (label (js2-labeled-stmt-node-labels n))
2881 (js2-visit-ast label v))
2882 (js2-visit-ast (js2-labeled-stmt-node-stmt n) v))
2883
2884 (defun js2-print-labeled-stmt (n i)
2885 (dolist (label (js2-labeled-stmt-node-labels n))
2886 (js2-print-ast label i))
2887 (js2-print-ast (js2-labeled-stmt-node-stmt n) i))
2888
2889 (defun js2-labeled-stmt-node-contains (node label)
2890 "Return t if NODE contains LABEL in its label set.
2891 NODE is a `js2-labels-node'. LABEL is an identifier."
2892 (loop for nl in (js2-labeled-stmt-node-labels node)
2893 if (string= label (js2-label-node-name nl))
2894 return t
2895 finally return nil))
2896
2897 (defsubst js2-labeled-stmt-node-add-label (node label)
2898 "Add a `js2-label-node' to the label set for this statement."
2899 (setf (js2-labeled-stmt-node-labels node)
2900 (nconc (js2-labeled-stmt-node-labels node) (list label))))
2901
2902 (defstruct (js2-jump-node
2903 (:include js2-node)
2904 (:constructor nil))
2905 "Abstract supertype of break and continue nodes."
2906 label ; `js2-name-node' for location of label identifier, if present
2907 target) ; target js2-labels-node or loop/switch statement
2908
2909 (defun js2-visit-jump-node (n v)
2910 ;; We don't visit the target, since it's a back-link.
2911 (js2-visit-ast (js2-jump-node-label n) v))
2912
2913 (defstruct (js2-break-node
2914 (:include js2-jump-node)
2915 (:constructor nil)
2916 (:constructor make-js2-break-node (&key (type js2-BREAK)
2917 (pos js2-ts-cursor)
2918 len label target)))
2919 "AST node for a break statement.
2920 The label field is a `js2-name-node', possibly nil, for the named label
2921 if provided. E.g. in 'break foo', it represents 'foo'. The target field
2922 is the target of the break - a label node or enclosing loop/switch statement.")
2923
2924 (put 'cl-struct-js2-break-node 'js2-visitor 'js2-visit-jump-node)
2925 (put 'cl-struct-js2-break-node 'js2-printer 'js2-print-break-node)
2926
2927 (defun js2-print-break-node (n i)
2928 (insert (js2-make-pad i) "break")
2929 (when (js2-break-node-label n)
2930 (insert " ")
2931 (js2-print-ast (js2-break-node-label n) 0))
2932 (insert ";\n"))
2933
2934 (defstruct (js2-continue-node
2935 (:include js2-jump-node)
2936 (:constructor nil)
2937 (:constructor make-js2-continue-node (&key (type js2-CONTINUE)
2938 (pos js2-ts-cursor)
2939 len label target)))
2940 "AST node for a continue statement.
2941 The label field is the user-supplied enclosing label name, a `js2-name-node'.
2942 It is nil if continue specifies no label. The target field is the jump target:
2943 a `js2-label-node' or the innermost enclosing loop.")
2944
2945 (put 'cl-struct-js2-continue-node 'js2-visitor 'js2-visit-jump-node)
2946 (put 'cl-struct-js2-continue-node 'js2-printer 'js2-print-continue-node)
2947
2948 (defun js2-print-continue-node (n i)
2949 (insert (js2-make-pad i) "continue")
2950 (when (js2-continue-node-label n)
2951 (insert " ")
2952 (js2-print-ast (js2-continue-node-label n) 0))
2953 (insert ";\n"))
2954
2955 (defstruct (js2-function-node
2956 (:include js2-script-node)
2957 (:constructor nil)
2958 (:constructor make-js2-function-node (&key (type js2-FUNCTION)
2959 (pos js2-ts-cursor)
2960 len
2961 (ftype 'FUNCTION)
2962 (form 'FUNCTION_STATEMENT)
2963 (name "")
2964 params rest-p
2965 body
2966 generator-type
2967 lp rp)))
2968 "AST node for a function declaration.
2969 The `params' field is a Lisp list of nodes. Each node is either a simple
2970 `js2-name-node', or if it's a destructuring-assignment parameter, a
2971 `js2-array-node' or `js2-object-node'."
2972 ftype ; FUNCTION, GETTER or SETTER
2973 form ; FUNCTION_{STATEMENT|EXPRESSION|ARROW}
2974 name ; function name (a `js2-name-node', or nil if anonymous)
2975 params ; a Lisp list of destructuring forms or simple name nodes
2976 rest-p ; if t, the last parameter is rest parameter
2977 body ; a `js2-block-node' or expression node (1.8 only)
2978 lp ; position of arg-list open-paren, or nil if omitted
2979 rp ; position of arg-list close-paren, or nil if omitted
2980 ignore-dynamic ; ignore value of the dynamic-scope flag (interpreter only)
2981 needs-activation ; t if we need an activation object for this frame
2982 generator-type ; STAR, LEGACY, COMPREHENSION or nil
2983 member-expr) ; nonstandard Ecma extension from Rhino
2984
2985 (put 'cl-struct-js2-function-node 'js2-visitor 'js2-visit-function-node)
2986 (put 'cl-struct-js2-function-node 'js2-printer 'js2-print-function-node)
2987
2988 (defun js2-visit-function-node (n v)
2989 (js2-visit-ast (js2-function-node-name n) v)
2990 (dolist (p (js2-function-node-params n))
2991 (js2-visit-ast p v))
2992 (js2-visit-ast (js2-function-node-body n) v))
2993
2994 (defun js2-print-function-node (n i)
2995 (let* ((pad (js2-make-pad i))
2996 (getter (js2-node-get-prop n 'GETTER_SETTER))
2997 (name (or (js2-function-node-name n)
2998 (js2-function-node-member-expr n)))
2999 (params (js2-function-node-params n))
3000 (arrow (eq (js2-function-node-form n) 'FUNCTION_ARROW))
3001 (rest-p (js2-function-node-rest-p n))
3002 (body (js2-function-node-body n))
3003 (expr (not (eq (js2-function-node-form n) 'FUNCTION_STATEMENT))))
3004 (unless (or getter arrow)
3005 (insert pad "function")
3006 (when (eq (js2-function-node-generator-type n) 'STAR)
3007 (insert "*")))
3008 (when name
3009 (insert " ")
3010 (js2-print-ast name 0))
3011 (insert "(")
3012 (loop with len = (length params)
3013 for param in params
3014 for count from 1
3015 do
3016 (when (and rest-p (= count len))
3017 (insert "..."))
3018 (js2-print-ast param 0)
3019 (when (< count len)
3020 (insert ", ")))
3021 (insert ") ")
3022 (when arrow
3023 (insert "=> "))
3024 (insert "{")
3025 ;; TODO: fix this to be smarter about indenting, etc.
3026 (unless expr
3027 (insert "\n"))
3028 (if (js2-block-node-p body)
3029 (js2-print-body body (1+ i))
3030 (js2-print-ast body 0))
3031 (insert pad "}")
3032 (unless expr
3033 (insert "\n"))))
3034
3035 (defun js2-function-name (node)
3036 "Return function name for NODE, a `js2-function-node', or nil if anonymous."
3037 (and (js2-function-node-name node)
3038 (js2-name-node-name (js2-function-node-name node))))
3039
3040 ;; Having this be an expression node makes it more flexible.
3041 ;; There are IDE contexts, such as indentation in a for-loop initializer,
3042 ;; that work better if you assume it's an expression. Whenever we have
3043 ;; a standalone var/const declaration, we just wrap with an expr stmt.
3044 ;; Eclipse apparently screwed this up and now has two versions, expr and stmt.
3045 (defstruct (js2-var-decl-node
3046 (:include js2-node)
3047 (:constructor nil)
3048 (:constructor make-js2-var-decl-node (&key (type js2-VAR)
3049 (pos (js2-current-token-beg))
3050 len kids
3051 decl-type)))
3052 "AST node for a variable declaration list (VAR, CONST or LET).
3053 The node bounds differ depending on the declaration type. For VAR or
3054 CONST declarations, the bounds include the var/const keyword. For LET
3055 declarations, the node begins at the position of the first child."
3056 kids ; a Lisp list of `js2-var-init-node' structs.
3057 decl-type) ; js2-VAR, js2-CONST or js2-LET
3058
3059 (put 'cl-struct-js2-var-decl-node 'js2-visitor 'js2-visit-var-decl)
3060 (put 'cl-struct-js2-var-decl-node 'js2-printer 'js2-print-var-decl)
3061
3062 (defun js2-visit-var-decl (n v)
3063 (dolist (kid (js2-var-decl-node-kids n))
3064 (js2-visit-ast kid v)))
3065
3066 (defun js2-print-var-decl (n i)
3067 (let ((pad (js2-make-pad i))
3068 (tt (js2-var-decl-node-decl-type n)))
3069 (insert pad)
3070 (insert (cond
3071 ((= tt js2-VAR) "var ")
3072 ((= tt js2-LET) "let ")
3073 ((= tt js2-CONST) "const ")
3074 (t
3075 (error "malformed var-decl node"))))
3076 (loop with kids = (js2-var-decl-node-kids n)
3077 with len = (length kids)
3078 for kid in kids
3079 for count from 1
3080 do
3081 (js2-print-ast kid 0)
3082 (if (< count len)
3083 (insert ", ")))))
3084
3085 (defstruct (js2-var-init-node
3086 (:include js2-node)
3087 (:constructor nil)
3088 (:constructor make-js2-var-init-node (&key (type js2-VAR)
3089 (pos js2-ts-cursor)
3090 len target
3091 initializer)))
3092 "AST node for a variable declaration.
3093 The type field will be js2-CONST for a const decl."
3094 target ; `js2-name-node', `js2-object-node', or `js2-array-node'
3095 initializer) ; initializer expression, a `js2-node'
3096
3097 (put 'cl-struct-js2-var-init-node 'js2-visitor 'js2-visit-var-init-node)
3098 (put 'cl-struct-js2-var-init-node 'js2-printer 'js2-print-var-init-node)
3099
3100 (defun js2-visit-var-init-node (n v)
3101 (js2-visit-ast (js2-var-init-node-target n) v)
3102 (js2-visit-ast (js2-var-init-node-initializer n) v))
3103
3104 (defun js2-print-var-init-node (n i)
3105 (let ((pad (js2-make-pad i))
3106 (name (js2-var-init-node-target n))
3107 (init (js2-var-init-node-initializer n)))
3108 (insert pad)
3109 (js2-print-ast name 0)
3110 (when init
3111 (insert " = ")
3112 (js2-print-ast init 0))))
3113
3114 (defstruct (js2-cond-node
3115 (:include js2-node)
3116 (:constructor nil)
3117 (:constructor make-js2-cond-node (&key (type js2-HOOK)
3118 (pos js2-ts-cursor)
3119 len
3120 test-expr
3121 true-expr
3122 false-expr
3123 q-pos c-pos)))
3124 "AST node for the ternary operator"
3125 test-expr
3126 true-expr
3127 false-expr
3128 q-pos ; buffer position of ?
3129 c-pos) ; buffer position of :
3130
3131 (put 'cl-struct-js2-cond-node 'js2-visitor 'js2-visit-cond-node)
3132 (put 'cl-struct-js2-cond-node 'js2-printer 'js2-print-cond-node)
3133
3134 (defun js2-visit-cond-node (n v)
3135 (js2-visit-ast (js2-cond-node-test-expr n) v)
3136 (js2-visit-ast (js2-cond-node-true-expr n) v)
3137 (js2-visit-ast (js2-cond-node-false-expr n) v))
3138
3139 (defun js2-print-cond-node (n i)
3140 (let ((pad (js2-make-pad i)))
3141 (insert pad)
3142 (js2-print-ast (js2-cond-node-test-expr n) 0)
3143 (insert " ? ")
3144 (js2-print-ast (js2-cond-node-true-expr n) 0)
3145 (insert " : ")
3146 (js2-print-ast (js2-cond-node-false-expr n) 0)))
3147
3148 (defstruct (js2-infix-node
3149 (:include js2-node)
3150 (:constructor nil)
3151 (:constructor make-js2-infix-node (&key type
3152 (pos js2-ts-cursor)
3153 len op-pos
3154 left right)))
3155 "Represents infix expressions.
3156 Includes assignment ops like `|=', and the comma operator.
3157 The type field inherited from `js2-node' holds the operator."
3158 op-pos ; buffer position where operator begins
3159 left ; any `js2-node'
3160 right) ; any `js2-node'
3161
3162 (put 'cl-struct-js2-infix-node 'js2-visitor 'js2-visit-infix-node)
3163 (put 'cl-struct-js2-infix-node 'js2-printer 'js2-print-infix-node)
3164
3165 (defun js2-visit-infix-node (n v)
3166 (js2-visit-ast (js2-infix-node-left n) v)
3167 (js2-visit-ast (js2-infix-node-right n) v))
3168
3169 (defconst js2-operator-tokens
3170 (let ((table (make-hash-table :test 'eq))
3171 (tokens
3172 (list (cons js2-IN "in")
3173 (cons js2-TYPEOF "typeof")
3174 (cons js2-INSTANCEOF "instanceof")
3175 (cons js2-DELPROP "delete")
3176 (cons js2-COMMA ",")
3177 (cons js2-COLON ":")
3178 (cons js2-OR "||")
3179 (cons js2-AND "&&")
3180 (cons js2-INC "++")
3181 (cons js2-DEC "--")
3182 (cons js2-BITOR "|")
3183 (cons js2-BITXOR "^")
3184 (cons js2-BITAND "&")
3185 (cons js2-EQ "==")
3186 (cons js2-NE "!=")
3187 (cons js2-LT "<")
3188 (cons js2-LE "<=")
3189 (cons js2-GT ">")
3190 (cons js2-GE ">=")
3191 (cons js2-LSH "<<")
3192 (cons js2-RSH ">>")
3193 (cons js2-URSH ">>>")
3194 (cons js2-ADD "+") ; infix plus
3195 (cons js2-SUB "-") ; infix minus
3196 (cons js2-MUL "*")
3197 (cons js2-DIV "/")
3198 (cons js2-MOD "%")
3199 (cons js2-NOT "!")
3200 (cons js2-BITNOT "~")
3201 (cons js2-POS "+") ; unary plus
3202 (cons js2-NEG "-") ; unary minus
3203 (cons js2-TRIPLEDOT "...")
3204 (cons js2-SHEQ "===") ; shallow equality
3205 (cons js2-SHNE "!==") ; shallow inequality
3206 (cons js2-ASSIGN "=")
3207 (cons js2-ASSIGN_BITOR "|=")
3208 (cons js2-ASSIGN_BITXOR "^=")
3209 (cons js2-ASSIGN_BITAND "&=")
3210 (cons js2-ASSIGN_LSH "<<=")
3211 (cons js2-ASSIGN_RSH ">>=")
3212 (cons js2-ASSIGN_URSH ">>>=")
3213 (cons js2-ASSIGN_ADD "+=")
3214 (cons js2-ASSIGN_SUB "-=")
3215 (cons js2-ASSIGN_MUL "*=")
3216 (cons js2-ASSIGN_DIV "/=")
3217 (cons js2-ASSIGN_MOD "%="))))
3218 (loop for (k . v) in tokens do
3219 (puthash k v table))
3220 table))
3221
3222 (defun js2-print-infix-node (n i)
3223 (let* ((tt (js2-node-type n))
3224 (op (gethash tt js2-operator-tokens)))
3225 (unless op
3226 (error "unrecognized infix operator %s" (js2-node-type n)))
3227 (insert (js2-make-pad i))
3228 (js2-print-ast (js2-infix-node-left n) 0)
3229 (unless (= tt js2-COMMA)
3230 (insert " "))
3231 (insert op)
3232 (insert " ")
3233 (js2-print-ast (js2-infix-node-right n) 0)))
3234
3235 (defstruct (js2-assign-node
3236 (:include js2-infix-node)
3237 (:constructor nil)
3238 (:constructor make-js2-assign-node (&key type
3239 (pos js2-ts-cursor)
3240 len op-pos
3241 left right)))
3242 "Represents any assignment.
3243 The type field holds the actual assignment operator.")
3244
3245 (put 'cl-struct-js2-assign-node 'js2-visitor 'js2-visit-infix-node)
3246 (put 'cl-struct-js2-assign-node 'js2-printer 'js2-print-infix-node)
3247
3248 (defstruct (js2-unary-node
3249 (:include js2-node)
3250 (:constructor nil)
3251 (:constructor make-js2-unary-node (&key type ; required
3252 (pos js2-ts-cursor)
3253 len operand)))
3254 "AST node type for unary operator nodes.
3255 The type field can be NOT, BITNOT, POS, NEG, INC, DEC,
3256 TYPEOF, DELPROP or TRIPLEDOT. For INC or DEC, a 'postfix node
3257 property is added if the operator follows the operand."
3258 operand) ; a `js2-node' expression
3259
3260 (put 'cl-struct-js2-unary-node 'js2-visitor 'js2-visit-unary-node)
3261 (put 'cl-struct-js2-unary-node 'js2-printer 'js2-print-unary-node)
3262
3263 (defun js2-visit-unary-node (n v)
3264 (js2-visit-ast (js2-unary-node-operand n) v))
3265
3266 (defun js2-print-unary-node (n i)
3267 (let* ((tt (js2-node-type n))
3268 (op (gethash tt js2-operator-tokens))
3269 (postfix (js2-node-get-prop n 'postfix)))
3270 (unless op
3271 (error "unrecognized unary operator %s" tt))
3272 (insert (js2-make-pad i))
3273 (unless postfix
3274 (insert op))
3275 (if (or (= tt js2-TYPEOF)
3276 (= tt js2-DELPROP))
3277 (insert " "))
3278 (js2-print-ast (js2-unary-node-operand n) 0)
3279 (when postfix
3280 (insert op))))
3281
3282 (defstruct (js2-let-node
3283 (:include js2-scope)
3284 (:constructor nil)
3285 (:constructor make-js2-let-node (&key (type js2-LETEXPR)
3286 (pos (js2-current-token-beg))
3287 len vars body
3288 lp rp)))
3289 "AST node for a let expression or a let statement.
3290 Note that a let declaration such as let x=6, y=7 is a `js2-var-decl-node'."
3291 vars ; a `js2-var-decl-node'
3292 body ; a `js2-node' representing the expression or body block
3293 lp
3294 rp)
3295
3296 (put 'cl-struct-js2-let-node 'js2-visitor 'js2-visit-let-node)
3297 (put 'cl-struct-js2-let-node 'js2-printer 'js2-print-let-node)
3298
3299 (defun js2-visit-let-node (n v)
3300 (js2-visit-ast (js2-let-node-vars n) v)
3301 (js2-visit-ast (js2-let-node-body n) v))
3302
3303 (defun js2-print-let-node (n i)
3304 (insert (js2-make-pad i) "let (")
3305 (js2-print-ast (js2-let-node-vars n) 0)
3306 (insert ") ")
3307 (js2-print-ast (js2-let-node-body n) i))
3308
3309 (defstruct (js2-keyword-node
3310 (:include js2-node)
3311 (:constructor nil)
3312 (:constructor make-js2-keyword-node (&key type
3313 (pos (js2-current-token-beg))
3314 (len (- js2-ts-cursor pos)))))
3315 "AST node representing a literal keyword such as `null'.
3316 Used for `null', `this', `true', `false' and `debugger'.
3317 The node type is set to js2-NULL, js2-THIS, etc.")
3318
3319 (put 'cl-struct-js2-keyword-node 'js2-visitor 'js2-visit-none)
3320 (put 'cl-struct-js2-keyword-node 'js2-printer 'js2-print-keyword-node)
3321
3322 (defun js2-print-keyword-node (n i)
3323 (insert (js2-make-pad i)
3324 (let ((tt (js2-node-type n)))
3325 (cond
3326 ((= tt js2-THIS) "this")
3327 ((= tt js2-NULL) "null")
3328 ((= tt js2-TRUE) "true")
3329 ((= tt js2-FALSE) "false")
3330 ((= tt js2-DEBUGGER) "debugger")
3331 (t (error "Invalid keyword literal type: %d" tt))))))
3332
3333 (defsubst js2-this-node-p (node)
3334 "Return t if NODE is a `js2-literal-node' of type js2-THIS."
3335 (eq (js2-node-type node) js2-THIS))
3336
3337 (defstruct (js2-new-node
3338 (:include js2-node)
3339 (:constructor nil)
3340 (:constructor make-js2-new-node (&key (type js2-NEW)
3341 (pos (js2-current-token-beg))
3342 len target
3343 args initializer
3344 lp rp)))
3345 "AST node for new-expression such as new Foo()."
3346 target ; an identifier or reference
3347 args ; a Lisp list of argument nodes
3348 lp ; position of left-paren, nil if omitted
3349 rp ; position of right-paren, nil if omitted
3350 initializer) ; experimental Rhino syntax: optional `js2-object-node'
3351
3352 (put 'cl-struct-js2-new-node 'js2-visitor 'js2-visit-new-node)
3353 (put 'cl-struct-js2-new-node 'js2-printer 'js2-print-new-node)
3354
3355 (defun js2-visit-new-node (n v)
3356 (js2-visit-ast (js2-new-node-target n) v)
3357 (dolist (arg (js2-new-node-args n))
3358 (js2-visit-ast arg v))
3359 (js2-visit-ast (js2-new-node-initializer n) v))
3360
3361 (defun js2-print-new-node (n i)
3362 (insert (js2-make-pad i) "new ")
3363 (js2-print-ast (js2-new-node-target n))
3364 (insert "(")
3365 (js2-print-list (js2-new-node-args n))
3366 (insert ")")
3367 (when (js2-new-node-initializer n)
3368 (insert " ")
3369 (js2-print-ast (js2-new-node-initializer n))))
3370
3371 (defstruct (js2-name-node
3372 (:include js2-node)
3373 (:constructor nil)
3374 (:constructor make-js2-name-node (&key (type js2-NAME)
3375 (pos (js2-current-token-beg))
3376 (len (- js2-ts-cursor
3377 (js2-current-token-beg)))
3378 (name (js2-current-token-string)))))
3379 "AST node for a JavaScript identifier"
3380 name ; a string
3381 scope) ; a `js2-scope' (optional, used for codegen)
3382
3383 (put 'cl-struct-js2-name-node 'js2-visitor 'js2-visit-none)
3384 (put 'cl-struct-js2-name-node 'js2-printer 'js2-print-name-node)
3385
3386 (defun js2-print-name-node (n i)
3387 (insert (js2-make-pad i)
3388 (js2-name-node-name n)))
3389
3390 (defsubst js2-name-node-length (node)
3391 "Return identifier length of NODE, a `js2-name-node'.
3392 Returns 0 if NODE is nil or its identifier field is nil."
3393 (if node
3394 (length (js2-name-node-name node))
3395 0))
3396
3397 (defstruct (js2-number-node
3398 (:include js2-node)
3399 (:constructor nil)
3400 (:constructor make-js2-number-node (&key (type js2-NUMBER)
3401 (pos (js2-current-token-beg))
3402 (len (- js2-ts-cursor
3403 (js2-current-token-beg)))
3404 (value (js2-current-token-string))
3405 (num-value (js2-token-number
3406 (js2-current-token))))))
3407 "AST node for a number literal."
3408 value ; the original string, e.g. "6.02e23"
3409 num-value) ; the parsed number value
3410
3411 (put 'cl-struct-js2-number-node 'js2-visitor 'js2-visit-none)
3412 (put 'cl-struct-js2-number-node 'js2-printer 'js2-print-number-node)
3413
3414 (defun js2-print-number-node (n i)
3415 (insert (js2-make-pad i)
3416 (number-to-string (js2-number-node-num-value n))))
3417
3418 (defstruct (js2-regexp-node
3419 (:include js2-node)
3420 (:constructor nil)
3421 (:constructor make-js2-regexp-node (&key (type js2-REGEXP)
3422 (pos (js2-current-token-beg))
3423 (len (- js2-ts-cursor
3424 (js2-current-token-beg)))
3425 value flags)))
3426 "AST node for a regular expression literal."
3427 value ; the regexp string, without // delimiters
3428 flags) ; a string of flags, e.g. `mi'.
3429
3430 (put 'cl-struct-js2-regexp-node 'js2-visitor 'js2-visit-none)
3431 (put 'cl-struct-js2-regexp-node 'js2-printer 'js2-print-regexp)
3432
3433 (defun js2-print-regexp (n i)
3434 (insert (js2-make-pad i)
3435 "/"
3436 (js2-regexp-node-value n)
3437 "/")
3438 (if (js2-regexp-node-flags n)
3439 (insert (js2-regexp-node-flags n))))
3440
3441 (defstruct (js2-string-node
3442 (:include js2-node)
3443 (:constructor nil)
3444 (:constructor make-js2-string-node (&key (type js2-STRING)
3445 (pos (js2-current-token-beg))
3446 (len (- js2-ts-cursor
3447 (js2-current-token-beg)))
3448 (value (js2-current-token-string)))))
3449 "String literal.
3450 Escape characters are not evaluated; e.g. \n is 2 chars in value field.
3451 You can tell the quote type by looking at the first character."
3452 value) ; the characters of the string, including the quotes
3453
3454 (put 'cl-struct-js2-string-node 'js2-visitor 'js2-visit-none)
3455 (put 'cl-struct-js2-string-node 'js2-printer 'js2-print-string-node)
3456
3457 (defun js2-print-string-node (n i)
3458 (insert (js2-make-pad i)
3459 (js2-node-string n)))
3460
3461 (defstruct (js2-array-node
3462 (:include js2-node)
3463 (:constructor nil)
3464 (:constructor make-js2-array-node (&key (type js2-ARRAYLIT)
3465 (pos js2-ts-cursor)
3466 len elems)))
3467 "AST node for an array literal."
3468 elems) ; list of expressions. [foo,,bar] yields a nil middle element.
3469
3470 (put 'cl-struct-js2-array-node 'js2-visitor 'js2-visit-array-node)
3471 (put 'cl-struct-js2-array-node 'js2-printer 'js2-print-array-node)
3472
3473 (defun js2-visit-array-node (n v)
3474 (dolist (e (js2-array-node-elems n))
3475 (js2-visit-ast e v))) ; Can be nil; e.g. [a, ,b].
3476
3477 (defun js2-print-array-node (n i)
3478 (insert (js2-make-pad i) "[")
3479 (let ((elems (js2-array-node-elems n)))
3480 (js2-print-list elems)
3481 (when (and elems (null (car (last elems))))
3482 (insert ",")))
3483 (insert "]"))
3484
3485 (defstruct (js2-object-node
3486 (:include js2-node)
3487 (:constructor nil)
3488 (:constructor make-js2-object-node (&key (type js2-OBJECTLIT)
3489 (pos js2-ts-cursor)
3490 len
3491 elems)))
3492 "AST node for an object literal expression.
3493 `elems' is a list of either `js2-object-prop-node' or `js2-name-node'.
3494 The latter represents abbreviation in destructuring expressions."
3495 elems)
3496
3497 (put 'cl-struct-js2-object-node 'js2-visitor 'js2-visit-object-node)
3498 (put 'cl-struct-js2-object-node 'js2-printer 'js2-print-object-node)
3499
3500 (defun js2-visit-object-node (n v)
3501 (dolist (e (js2-object-node-elems n))
3502 (js2-visit-ast e v)))
3503
3504 (defun js2-print-object-node (n i)
3505 (insert (js2-make-pad i) "{")
3506 (js2-print-list (js2-object-node-elems n))
3507 (insert "}"))
3508
3509 (defstruct (js2-object-prop-node
3510 (:include js2-infix-node)
3511 (:constructor nil)
3512 (:constructor make-js2-object-prop-node (&key (type js2-COLON)
3513 (pos js2-ts-cursor)
3514 len left
3515 right op-pos)))
3516 "AST node for an object literal prop:value entry.
3517 The `left' field is the property: a name node, string node or number node.
3518 The `right' field is a `js2-node' representing the initializer value.")
3519
3520 (put 'cl-struct-js2-object-prop-node 'js2-visitor 'js2-visit-infix-node)
3521 (put 'cl-struct-js2-object-prop-node 'js2-printer 'js2-print-object-prop-node)
3522
3523 (defun js2-print-object-prop-node (n i)
3524 (insert (js2-make-pad i))
3525 (js2-print-ast (js2-object-prop-node-left n) 0)
3526 (insert ": ")
3527 (js2-print-ast (js2-object-prop-node-right n) 0))
3528
3529 (defstruct (js2-getter-setter-node
3530 (:include js2-infix-node)
3531 (:constructor nil)
3532 (:constructor make-js2-getter-setter-node (&key type ; GET or SET
3533 (pos js2-ts-cursor)
3534 len left right)))
3535 "AST node for a getter/setter property in an object literal.
3536 The `left' field is the `js2-name-node' naming the getter/setter prop.
3537 The `right' field is always an anonymous `js2-function-node' with a node
3538 property `GETTER_SETTER' set to js2-GET or js2-SET. ")
3539
3540 (put 'cl-struct-js2-getter-setter-node 'js2-visitor 'js2-visit-infix-node)
3541 (put 'cl-struct-js2-getter-setter-node 'js2-printer 'js2-print-getter-setter)
3542
3543 (defun js2-print-getter-setter (n i)
3544 (let ((pad (js2-make-pad i))
3545 (left (js2-getter-setter-node-left n))
3546 (right (js2-getter-setter-node-right n)))
3547 (insert pad)
3548 (insert (if (= (js2-node-type n) js2-GET) "get " "set "))
3549 (js2-print-ast left 0)
3550 (js2-print-ast right 0)))
3551
3552 (defstruct (js2-prop-get-node
3553 (:include js2-infix-node)
3554 (:constructor nil)
3555 (:constructor make-js2-prop-get-node (&key (type js2-GETPROP)
3556 (pos js2-ts-cursor)
3557 len left right)))
3558 "AST node for a dotted property reference, e.g. foo.bar or foo().bar")
3559
3560 (put 'cl-struct-js2-prop-get-node 'js2-visitor 'js2-visit-prop-get-node)
3561 (put 'cl-struct-js2-prop-get-node 'js2-printer 'js2-print-prop-get-node)
3562
3563 (defun js2-visit-prop-get-node (n v)
3564 (js2-visit-ast (js2-prop-get-node-left n) v)
3565 (js2-visit-ast (js2-prop-get-node-right n) v))
3566
3567 (defun js2-print-prop-get-node (n i)
3568 (insert (js2-make-pad i))
3569 (js2-print-ast (js2-prop-get-node-left n) 0)
3570 (insert ".")
3571 (js2-print-ast (js2-prop-get-node-right n) 0))
3572
3573 (defstruct (js2-elem-get-node
3574 (:include js2-node)
3575 (:constructor nil)
3576 (:constructor make-js2-elem-get-node (&key (type js2-GETELEM)
3577 (pos js2-ts-cursor)
3578 len target element
3579 lb rb)))
3580 "AST node for an array index expression such as foo[bar]."
3581 target ; a `js2-node' - the expression preceding the "."
3582 element ; a `js2-node' - the expression in brackets
3583 lb ; position of left-bracket, nil if omitted
3584 rb) ; position of right-bracket, nil if omitted
3585
3586 (put 'cl-struct-js2-elem-get-node 'js2-visitor 'js2-visit-elem-get-node)
3587 (put 'cl-struct-js2-elem-get-node 'js2-printer 'js2-print-elem-get-node)
3588
3589 (defun js2-visit-elem-get-node (n v)
3590 (js2-visit-ast (js2-elem-get-node-target n) v)
3591 (js2-visit-ast (js2-elem-get-node-element n) v))
3592
3593 (defun js2-print-elem-get-node (n i)
3594 (insert (js2-make-pad i))
3595 (js2-print-ast (js2-elem-get-node-target n) 0)
3596 (insert "[")
3597 (js2-print-ast (js2-elem-get-node-element n) 0)
3598 (insert "]"))
3599
3600 (defstruct (js2-call-node
3601 (:include js2-node)
3602 (:constructor nil)
3603 (:constructor make-js2-call-node (&key (type js2-CALL)
3604 (pos js2-ts-cursor)
3605 len target args
3606 lp rp)))
3607 "AST node for a JavaScript function call."
3608 target ; a `js2-node' evaluating to the function to call
3609 args ; a Lisp list of `js2-node' arguments
3610 lp ; position of open-paren, or nil if missing
3611 rp) ; position of close-paren, or nil if missing
3612
3613 (put 'cl-struct-js2-call-node 'js2-visitor 'js2-visit-call-node)
3614 (put 'cl-struct-js2-call-node 'js2-printer 'js2-print-call-node)
3615
3616 (defun js2-visit-call-node (n v)
3617 (js2-visit-ast (js2-call-node-target n) v)
3618 (dolist (arg (js2-call-node-args n))
3619 (js2-visit-ast arg v)))
3620
3621 (defun js2-print-call-node (n i)
3622 (insert (js2-make-pad i))
3623 (js2-print-ast (js2-call-node-target n) 0)
3624 (insert "(")
3625 (js2-print-list (js2-call-node-args n))
3626 (insert ")"))
3627
3628 (defstruct (js2-yield-node
3629 (:include js2-node)
3630 (:constructor nil)
3631 (:constructor make-js2-yield-node (&key (type js2-YIELD)
3632 (pos js2-ts-cursor)
3633 len value star-p)))
3634 "AST node for yield statement or expression."
3635 star-p ; whether it's yield*
3636 value) ; optional: value to be yielded
3637
3638 (put 'cl-struct-js2-yield-node 'js2-visitor 'js2-visit-yield-node)
3639 (put 'cl-struct-js2-yield-node 'js2-printer 'js2-print-yield-node)
3640
3641 (defun js2-visit-yield-node (n v)
3642 (js2-visit-ast (js2-yield-node-value n) v))
3643
3644 (defun js2-print-yield-node (n i)
3645 (insert (js2-make-pad i))
3646 (insert "yield")
3647 (when (js2-yield-node-star-p n)
3648 (insert "*"))
3649 (when (js2-yield-node-value n)
3650 (insert " ")
3651 (js2-print-ast (js2-yield-node-value n) 0)))
3652
3653 (defstruct (js2-paren-node
3654 (:include js2-node)
3655 (:constructor nil)
3656 (:constructor make-js2-paren-node (&key (type js2-LP)
3657 (pos js2-ts-cursor)
3658 len expr)))
3659 "AST node for a parenthesized expression.
3660 In particular, used when the parens are syntactically optional,
3661 as opposed to required parens such as those enclosing an if-conditional."
3662 expr) ; `js2-node'
3663
3664 (put 'cl-struct-js2-paren-node 'js2-visitor 'js2-visit-paren-node)
3665 (put 'cl-struct-js2-paren-node 'js2-printer 'js2-print-paren-node)
3666
3667 (defun js2-visit-paren-node (n v)
3668 (js2-visit-ast (js2-paren-node-expr n) v))
3669
3670 (defun js2-print-paren-node (n i)
3671 (insert (js2-make-pad i))
3672 (insert "(")
3673 (js2-print-ast (js2-paren-node-expr n) 0)
3674 (insert ")"))
3675
3676 (defstruct (js2-comp-node
3677 (:include js2-scope)
3678 (:constructor nil)
3679 (:constructor make-js2-comp-node (&key (type js2-ARRAYCOMP)
3680 (pos js2-ts-cursor)
3681 len result
3682 loops filters
3683 form)))
3684 "AST node for an Array comprehension such as [[x,y] for (x in foo) for (y in bar)]."
3685 result ; result expression (just after left-bracket)
3686 loops ; a Lisp list of `js2-comp-loop-node'
3687 filters ; a Lisp list of guard/filter expressions
3688 form ; ARRAY, LEGACY_ARRAY or STAR_GENERATOR
3689 ; SpiderMonkey also supports "legacy generator expressions", but we dont.
3690 )
3691
3692 (put 'cl-struct-js2-comp-node 'js2-visitor 'js2-visit-comp-node)
3693 (put 'cl-struct-js2-comp-node 'js2-printer 'js2-print-comp-node)
3694
3695 (defun js2-visit-comp-node (n v)
3696 (js2-visit-ast (js2-comp-node-result n) v)
3697 (dolist (l (js2-comp-node-loops n))
3698 (js2-visit-ast l v))
3699 (dolist (f (js2-comp-node-filters n))
3700 (js2-visit-ast f v)))
3701
3702 (defun js2-print-comp-node (n i)
3703 (let ((pad (js2-make-pad i))
3704 (result (js2-comp-node-result n))
3705 (loops (js2-comp-node-loops n))
3706 (filters (js2-comp-node-filters n))
3707 (legacy-p (eq (js2-comp-node-form n) 'LEGACY_ARRAY))
3708 (gen-p (eq (js2-comp-node-form n) 'STAR_GENERATOR)))
3709 (insert pad (if gen-p "(" "["))
3710 (when legacy-p
3711 (js2-print-ast result 0))
3712 (dolist (l loops)
3713 (when legacy-p
3714 (insert " "))
3715 (js2-print-ast l 0)
3716 (unless legacy-p
3717 (insert " ")))
3718 (dolist (f filters)
3719 (when legacy-p
3720 (insert " "))
3721 (insert "if (")
3722 (js2-print-ast f 0)
3723 (insert ")")
3724 (unless legacy-p
3725 (insert " ")))
3726 (unless legacy-p
3727 (js2-print-ast result 0))
3728 (insert (if gen-p ")" "]"))))
3729
3730 (defstruct (js2-comp-loop-node
3731 (:include js2-for-in-node)
3732 (:constructor nil)
3733 (:constructor make-js2-comp-loop-node (&key (type js2-FOR)
3734 (pos js2-ts-cursor)
3735 len iterator
3736 object in-pos
3737 foreach-p
3738 each-pos
3739 forof-p
3740 lp rp)))
3741 "AST subtree for each 'for (foo in bar)' loop in an array comprehension.")
3742
3743 (put 'cl-struct-js2-comp-loop-node 'js2-visitor 'js2-visit-comp-loop)
3744 (put 'cl-struct-js2-comp-loop-node 'js2-printer 'js2-print-comp-loop)
3745
3746 (defun js2-visit-comp-loop (n v)
3747 (js2-visit-ast (js2-comp-loop-node-iterator n) v)
3748 (js2-visit-ast (js2-comp-loop-node-object n) v))
3749
3750 (defun js2-print-comp-loop (n _i)
3751 (insert "for ")
3752 (when (js2-comp-loop-node-foreach-p n) (insert "each "))
3753 (insert "(")
3754 (js2-print-ast (js2-comp-loop-node-iterator n) 0)
3755 (insert (if (js2-comp-loop-node-forof-p n)
3756 " of " " in "))
3757 (js2-print-ast (js2-comp-loop-node-object n) 0)
3758 (insert ")"))
3759
3760 (defstruct (js2-empty-expr-node
3761 (:include js2-node)
3762 (:constructor nil)
3763 (:constructor make-js2-empty-expr-node (&key (type js2-EMPTY)
3764 (pos (js2-current-token-beg))
3765 len)))
3766 "AST node for an empty expression.")
3767
3768 (put 'cl-struct-js2-empty-expr-node 'js2-visitor 'js2-visit-none)
3769 (put 'cl-struct-js2-empty-expr-node 'js2-printer 'js2-print-none)
3770
3771 (defstruct (js2-xml-node
3772 (:include js2-block-node)
3773 (:constructor nil)
3774 (:constructor make-js2-xml-node (&key (type js2-XML)
3775 (pos (js2-current-token-beg))
3776 len kids)))
3777 "AST node for initial parse of E4X literals.
3778 The kids field is a list of XML fragments, each a `js2-string-node' or
3779 a `js2-xml-js-expr-node'. Equivalent to Rhino's XmlLiteral node.")
3780
3781 (put 'cl-struct-js2-xml-node 'js2-visitor 'js2-visit-block)
3782 (put 'cl-struct-js2-xml-node 'js2-printer 'js2-print-xml-node)
3783
3784 (defun js2-print-xml-node (n i)
3785 (dolist (kid (js2-xml-node-kids n))
3786 (js2-print-ast kid i)))
3787
3788 (defstruct (js2-xml-js-expr-node
3789 (:include js2-xml-node)
3790 (:constructor nil)
3791 (:constructor make-js2-xml-js-expr-node (&key (type js2-XML)
3792 (pos js2-ts-cursor)
3793 len expr)))
3794 "AST node for an embedded JavaScript {expression} in an E4X literal.
3795 The start and end fields correspond to the curly-braces."
3796 expr) ; a `js2-expr-node' of some sort
3797
3798 (put 'cl-struct-js2-xml-js-expr-node 'js2-visitor 'js2-visit-xml-js-expr)
3799 (put 'cl-struct-js2-xml-js-expr-node 'js2-printer 'js2-print-xml-js-expr)
3800
3801 (defun js2-visit-xml-js-expr (n v)
3802 (js2-visit-ast (js2-xml-js-expr-node-expr n) v))
3803
3804 (defun js2-print-xml-js-expr (n i)
3805 (insert (js2-make-pad i))
3806 (insert "{")
3807 (js2-print-ast (js2-xml-js-expr-node-expr n) 0)
3808 (insert "}"))
3809
3810 (defstruct (js2-xml-dot-query-node
3811 (:include js2-infix-node)
3812 (:constructor nil)
3813 (:constructor make-js2-xml-dot-query-node (&key (type js2-DOTQUERY)
3814 (pos js2-ts-cursor)
3815 op-pos len left
3816 right rp)))
3817 "AST node for an E4X foo.(bar) filter expression.
3818 Note that the left-paren is automatically the character immediately
3819 following the dot (.) in the operator. No whitespace is permitted
3820 between the dot and the lp by the scanner."
3821 rp)
3822
3823 (put 'cl-struct-js2-xml-dot-query-node 'js2-visitor 'js2-visit-infix-node)
3824 (put 'cl-struct-js2-xml-dot-query-node 'js2-printer 'js2-print-xml-dot-query)
3825
3826 (defun js2-print-xml-dot-query (n i)
3827 (insert (js2-make-pad i))
3828 (js2-print-ast (js2-xml-dot-query-node-left n) 0)
3829 (insert ".(")
3830 (js2-print-ast (js2-xml-dot-query-node-right n) 0)
3831 (insert ")"))
3832
3833 (defstruct (js2-xml-ref-node
3834 (:include js2-node)
3835 (:constructor nil)) ; abstract
3836 "Base type for E4X XML attribute-access or property-get expressions.
3837 Such expressions can take a variety of forms. The general syntax has
3838 three parts:
3839
3840 - (optional) an @ (specifying an attribute access)
3841 - (optional) a namespace (a `js2-name-node') and double-colon
3842 - (required) either a `js2-name-node' or a bracketed [expression]
3843
3844 The property-name expressions (examples: ns::name, @name) are
3845 represented as `js2-xml-prop-ref' nodes. The bracketed-expression
3846 versions (examples: ns::[name], @[name]) become `js2-xml-elem-ref' nodes.
3847
3848 This node type (or more specifically, its subclasses) will sometimes
3849 be the right-hand child of a `js2-prop-get-node' or a
3850 `js2-infix-node' of type `js2-DOTDOT', the .. xml-descendants operator.
3851 The `js2-xml-ref-node' may also be a standalone primary expression with
3852 no explicit target, which is valid in certain expression contexts such as
3853
3854 company..employee.(@id < 100)
3855
3856 in this case, the @id is a `js2-xml-ref' that is part of an infix '<'
3857 expression whose parent is a `js2-xml-dot-query-node'."
3858 namespace
3859 at-pos
3860 colon-pos)
3861
3862 (defsubst js2-xml-ref-node-attr-access-p (node)
3863 "Return non-nil if this expression began with an @-token."
3864 (and (numberp (js2-xml-ref-node-at-pos node))
3865 (plusp (js2-xml-ref-node-at-pos node))))
3866
3867 (defstruct (js2-xml-prop-ref-node
3868 (:include js2-xml-ref-node)
3869 (:constructor nil)
3870 (:constructor make-js2-xml-prop-ref-node (&key (type js2-REF_NAME)
3871 (pos (js2-current-token-beg))
3872 len propname
3873 namespace at-pos
3874 colon-pos)))
3875 "AST node for an E4X XML [expr] property-ref expression.
3876 The JavaScript syntax is an optional @, an optional ns::, and a name.
3877
3878 [ '@' ] [ name '::' ] name
3879
3880 Examples include name, ns::name, ns::*, *::name, *::*, @attr, @ns::attr,
3881 @ns::*, @*::attr, @*::*, and @*.
3882
3883 The node starts at the @ token, if present. Otherwise it starts at the
3884 namespace name. The node bounds extend through the closing right-bracket,
3885 or if it is missing due to a syntax error, through the end of the index
3886 expression."
3887 propname)
3888
3889 (put 'cl-struct-js2-xml-prop-ref-node 'js2-visitor 'js2-visit-xml-prop-ref-node)
3890 (put 'cl-struct-js2-xml-prop-ref-node 'js2-printer 'js2-print-xml-prop-ref-node)
3891
3892 (defun js2-visit-xml-prop-ref-node (n v)
3893 (js2-visit-ast (js2-xml-prop-ref-node-namespace n) v)
3894 (js2-visit-ast (js2-xml-prop-ref-node-propname n) v))
3895
3896 (defun js2-print-xml-prop-ref-node (n i)
3897 (insert (js2-make-pad i))
3898 (if (js2-xml-ref-node-attr-access-p n)
3899 (insert "@"))
3900 (when (js2-xml-prop-ref-node-namespace n)
3901 (js2-print-ast (js2-xml-prop-ref-node-namespace n) 0)
3902 (insert "::"))
3903 (if (js2-xml-prop-ref-node-propname n)
3904 (js2-print-ast (js2-xml-prop-ref-node-propname n) 0)))
3905
3906 (defstruct (js2-xml-elem-ref-node
3907 (:include js2-xml-ref-node)
3908 (:constructor nil)
3909 (:constructor make-js2-xml-elem-ref-node (&key (type js2-REF_MEMBER)
3910 (pos (js2-current-token-beg))
3911 len expr lb rb
3912 namespace at-pos
3913 colon-pos)))
3914 "AST node for an E4X XML [expr] member-ref expression.
3915 Syntax:
3916
3917 [ '@' ] [ name '::' ] '[' expr ']'
3918
3919 Examples include ns::[expr], @ns::[expr], @[expr], *::[expr] and @*::[expr].
3920
3921 Note that the form [expr] (i.e. no namespace or attribute-qualifier)
3922 is not a legal E4X XML element-ref expression, since it's already used
3923 for standard JavaScript element-get array indexing. Hence, a
3924 `js2-xml-elem-ref-node' always has either the attribute-qualifier, a
3925 non-nil namespace node, or both.
3926
3927 The node starts at the @ token, if present. Otherwise it starts
3928 at the namespace name. The node bounds extend through the closing
3929 right-bracket, or if it is missing due to a syntax error, through the
3930 end of the index expression."
3931 expr ; the bracketed index expression
3932 lb
3933 rb)
3934
3935 (put 'cl-struct-js2-xml-elem-ref-node 'js2-visitor 'js2-visit-xml-elem-ref-node)
3936 (put 'cl-struct-js2-xml-elem-ref-node 'js2-printer 'js2-print-xml-elem-ref-node)
3937
3938 (defun js2-visit-xml-elem-ref-node (n v)
3939 (js2-visit-ast (js2-xml-elem-ref-node-namespace n) v)
3940 (js2-visit-ast (js2-xml-elem-ref-node-expr n) v))
3941
3942 (defun js2-print-xml-elem-ref-node (n i)
3943 (insert (js2-make-pad i))
3944 (if (js2-xml-ref-node-attr-access-p n)
3945 (insert "@"))
3946 (when (js2-xml-elem-ref-node-namespace n)
3947 (js2-print-ast (js2-xml-elem-ref-node-namespace n) 0)
3948 (insert "::"))
3949 (insert "[")
3950 (if (js2-xml-elem-ref-node-expr n)
3951 (js2-print-ast (js2-xml-elem-ref-node-expr n) 0))
3952 (insert "]"))
3953
3954 ;;; Placeholder nodes for when we try parsing the XML literals structurally.
3955
3956 (defstruct (js2-xml-start-tag-node
3957 (:include js2-xml-node)
3958 (:constructor nil)
3959 (:constructor make-js2-xml-start-tag-node (&key (type js2-XML)
3960 (pos js2-ts-cursor)
3961 len name attrs kids
3962 empty-p)))
3963 "AST node for an XML start-tag. Not currently used.
3964 The `kids' field is a Lisp list of child content nodes."
3965 name ; a `js2-xml-name-node'
3966 attrs ; a Lisp list of `js2-xml-attr-node'
3967 empty-p) ; t if this is an empty element such as <foo bar="baz"/>
3968
3969 (put 'cl-struct-js2-xml-start-tag-node 'js2-visitor 'js2-visit-xml-start-tag)
3970 (put 'cl-struct-js2-xml-start-tag-node 'js2-printer 'js2-print-xml-start-tag)
3971
3972 (defun js2-visit-xml-start-tag (n v)
3973 (js2-visit-ast (js2-xml-start-tag-node-name n) v)
3974 (dolist (attr (js2-xml-start-tag-node-attrs n))
3975 (js2-visit-ast attr v))
3976 (js2-visit-block n v))
3977
3978 (defun js2-print-xml-start-tag (n i)
3979 (insert (js2-make-pad i) "<")
3980 (js2-print-ast (js2-xml-start-tag-node-name n) 0)
3981 (when (js2-xml-start-tag-node-attrs n)
3982 (insert " ")
3983 (js2-print-list (js2-xml-start-tag-node-attrs n) " "))
3984 (insert ">"))
3985
3986 ;; I -think- I'm going to make the parent node the corresponding start-tag,
3987 ;; and add the end-tag to the kids list of the parent as well.
3988 (defstruct (js2-xml-end-tag-node
3989 (:include js2-xml-node)
3990 (:constructor nil)
3991 (:constructor make-js2-xml-end-tag-node (&key (type js2-XML)
3992 (pos js2-ts-cursor)
3993 len name)))
3994 "AST node for an XML end-tag. Not currently used."
3995 name) ; a `js2-xml-name-node'
3996
3997 (put 'cl-struct-js2-xml-end-tag-node 'js2-visitor 'js2-visit-xml-end-tag)
3998 (put 'cl-struct-js2-xml-end-tag-node 'js2-printer 'js2-print-xml-end-tag)
3999
4000 (defun js2-visit-xml-end-tag (n v)
4001 (js2-visit-ast (js2-xml-end-tag-node-name n) v))
4002
4003 (defun js2-print-xml-end-tag (n i)
4004 (insert (js2-make-pad i))
4005 (insert "</")
4006 (js2-print-ast (js2-xml-end-tag-node-name n) 0)
4007 (insert ">"))
4008
4009 (defstruct (js2-xml-name-node
4010 (:include js2-xml-node)
4011 (:constructor nil)
4012 (:constructor make-js2-xml-name-node (&key (type js2-XML)
4013 (pos js2-ts-cursor)
4014 len namespace kids)))
4015 "AST node for an E4X XML name. Not currently used.
4016 Any XML name can be qualified with a namespace, hence the namespace field.
4017 Further, any E4X name can be comprised of arbitrary JavaScript {} expressions.
4018 The kids field is a list of `js2-name-node' and `js2-xml-js-expr-node'.
4019 For a simple name, the kids list has exactly one node, a `js2-name-node'."
4020 namespace) ; a `js2-string-node'
4021
4022 (put 'cl-struct-js2-xml-name-node 'js2-visitor 'js2-visit-xml-name-node)
4023 (put 'cl-struct-js2-xml-name-node 'js2-printer 'js2-print-xml-name-node)
4024
4025 (defun js2-visit-xml-name-node (n v)
4026 (js2-visit-ast (js2-xml-name-node-namespace n) v))
4027
4028 (defun js2-print-xml-name-node (n i)
4029 (insert (js2-make-pad i))
4030 (when (js2-xml-name-node-namespace n)
4031 (js2-print-ast (js2-xml-name-node-namespace n) 0)
4032 (insert "::"))
4033 (dolist (kid (js2-xml-name-node-kids n))
4034 (js2-print-ast kid 0)))
4035
4036 (defstruct (js2-xml-pi-node
4037 (:include js2-xml-node)
4038 (:constructor nil)
4039 (:constructor make-js2-xml-pi-node (&key (type js2-XML)
4040 (pos js2-ts-cursor)
4041 len name attrs)))
4042 "AST node for an E4X XML processing instruction. Not currently used."
4043 name ; a `js2-xml-name-node'
4044 attrs) ; a list of `js2-xml-attr-node'
4045
4046 (put 'cl-struct-js2-xml-pi-node 'js2-visitor 'js2-visit-xml-pi-node)
4047 (put 'cl-struct-js2-xml-pi-node 'js2-printer 'js2-print-xml-pi-node)
4048
4049 (defun js2-visit-xml-pi-node (n v)
4050 (js2-visit-ast (js2-xml-pi-node-name n) v)
4051 (dolist (attr (js2-xml-pi-node-attrs n))
4052 (js2-visit-ast attr v)))
4053
4054 (defun js2-print-xml-pi-node (n i)
4055 (insert (js2-make-pad i) "<?")
4056 (js2-print-ast (js2-xml-pi-node-name n))
4057 (when (js2-xml-pi-node-attrs n)
4058 (insert " ")
4059 (js2-print-list (js2-xml-pi-node-attrs n)))
4060 (insert "?>"))
4061
4062 (defstruct (js2-xml-cdata-node
4063 (:include js2-xml-node)
4064 (:constructor nil)
4065 (:constructor make-js2-xml-cdata-node (&key (type js2-XML)
4066 (pos js2-ts-cursor)
4067 len content)))
4068 "AST node for a CDATA escape section. Not currently used."
4069 content) ; a `js2-string-node' with node-property 'quote-type 'cdata
4070
4071 (put 'cl-struct-js2-xml-cdata-node 'js2-visitor 'js2-visit-xml-cdata-node)
4072 (put 'cl-struct-js2-xml-cdata-node 'js2-printer 'js2-print-xml-cdata-node)
4073
4074 (defun js2-visit-xml-cdata-node (n v)
4075 (js2-visit-ast (js2-xml-cdata-node-content n) v))
4076
4077 (defun js2-print-xml-cdata-node (n i)
4078 (insert (js2-make-pad i))
4079 (js2-print-ast (js2-xml-cdata-node-content n)))
4080
4081 (defstruct (js2-xml-attr-node
4082 (:include js2-xml-node)
4083 (:constructor nil)
4084 (:constructor make-js2-attr-node (&key (type js2-XML)
4085 (pos js2-ts-cursor)
4086 len name value
4087 eq-pos quote-type)))
4088 "AST node representing a foo='bar' XML attribute value. Not yet used."
4089 name ; a `js2-xml-name-node'
4090 value ; a `js2-xml-name-node'
4091 eq-pos ; buffer position of "=" sign
4092 quote-type) ; 'single or 'double
4093
4094 (put 'cl-struct-js2-xml-attr-node 'js2-visitor 'js2-visit-xml-attr-node)
4095 (put 'cl-struct-js2-xml-attr-node 'js2-printer 'js2-print-xml-attr-node)
4096
4097 (defun js2-visit-xml-attr-node (n v)
4098 (js2-visit-ast (js2-xml-attr-node-name n) v)
4099 (js2-visit-ast (js2-xml-attr-node-value n) v))
4100
4101 (defun js2-print-xml-attr-node (n i)
4102 (let ((quote (if (eq (js2-xml-attr-node-quote-type n) 'single)
4103 "'"
4104 "\"")))
4105 (insert (js2-make-pad i))
4106 (js2-print-ast (js2-xml-attr-node-name n) 0)
4107 (insert "=" quote)
4108 (js2-print-ast (js2-xml-attr-node-value n) 0)
4109 (insert quote)))
4110
4111 (defstruct (js2-xml-text-node
4112 (:include js2-xml-node)
4113 (:constructor nil)
4114 (:constructor make-js2-text-node (&key (type js2-XML)
4115 (pos js2-ts-cursor)
4116 len content)))
4117 "AST node for an E4X XML text node. Not currently used."
4118 content) ; a Lisp list of `js2-string-node' and `js2-xml-js-expr-node'
4119
4120 (put 'cl-struct-js2-xml-text-node 'js2-visitor 'js2-visit-xml-text-node)
4121 (put 'cl-struct-js2-xml-text-node 'js2-printer 'js2-print-xml-text-node)
4122
4123 (defun js2-visit-xml-text-node (n v)
4124 (js2-visit-ast (js2-xml-text-node-content n) v))
4125
4126 (defun js2-print-xml-text-node (n i)
4127 (insert (js2-make-pad i))
4128 (dolist (kid (js2-xml-text-node-content n))
4129 (js2-print-ast kid)))
4130
4131 (defstruct (js2-xml-comment-node
4132 (:include js2-xml-node)
4133 (:constructor nil)
4134 (:constructor make-js2-xml-comment-node (&key (type js2-XML)
4135 (pos js2-ts-cursor)
4136 len)))
4137 "AST node for E4X XML comment. Not currently used.")
4138
4139 (put 'cl-struct-js2-xml-comment-node 'js2-visitor 'js2-visit-none)
4140 (put 'cl-struct-js2-xml-comment-node 'js2-printer 'js2-print-xml-comment)
4141
4142 (defun js2-print-xml-comment (n i)
4143 (insert (js2-make-pad i)
4144 (js2-node-string n)))
4145
4146 ;;; Node utilities
4147
4148 (defsubst js2-node-line (n)
4149 "Fetch the source line number at the start of node N.
4150 This is O(n) in the length of the source buffer; use prudently."
4151 (1+ (count-lines (point-min) (js2-node-abs-pos n))))
4152
4153 (defsubst js2-block-node-kid (n i)
4154 "Return child I of node N, or nil if there aren't that many."
4155 (nth i (js2-block-node-kids n)))
4156
4157 (defsubst js2-block-node-first (n)
4158 "Return first child of block node N, or nil if there is none."
4159 (first (js2-block-node-kids n)))
4160
4161 (defun js2-node-root (n)
4162 "Return the root of the AST containing N.
4163 If N has no parent pointer, returns N."
4164 (let ((parent (js2-node-parent n)))
4165 (if parent
4166 (js2-node-root parent)
4167 n)))
4168
4169 (defsubst js2-node-short-name (n)
4170 "Return the short name of node N as a string, e.g. `js2-if-node'."
4171 (substring (symbol-name (aref n 0))
4172 (length "cl-struct-")))
4173
4174 (defun js2-node-child-list (node)
4175 "Return the child list for NODE, a Lisp list of nodes.
4176 Works for block nodes, array nodes, obj literals, funarg lists,
4177 var decls and try nodes (for catch clauses). Note that you should call
4178 `js2-block-node-kids' on the function body for the body statements.
4179 Returns nil for zero-length child lists or unsupported nodes."
4180 (cond
4181 ((js2-function-node-p node)
4182 (js2-function-node-params node))
4183 ((js2-block-node-p node)
4184 (js2-block-node-kids node))
4185 ((js2-try-node-p node)
4186 (js2-try-node-catch-clauses node))
4187 ((js2-array-node-p node)
4188 (js2-array-node-elems node))
4189 ((js2-object-node-p node)
4190 (js2-object-node-elems node))
4191 ((js2-call-node-p node)
4192 (js2-call-node-args node))
4193 ((js2-new-node-p node)
4194 (js2-new-node-args node))
4195 ((js2-var-decl-node-p node)
4196 (js2-var-decl-node-kids node))
4197 (t
4198 nil)))
4199
4200 (defun js2-node-set-child-list (node kids)
4201 "Set the child list for NODE to KIDS."
4202 (cond
4203 ((js2-function-node-p node)
4204 (setf (js2-function-node-params node) kids))
4205 ((js2-block-node-p node)
4206 (setf (js2-block-node-kids node) kids))
4207 ((js2-try-node-p node)
4208 (setf (js2-try-node-catch-clauses node) kids))
4209 ((js2-array-node-p node)
4210 (setf (js2-array-node-elems node) kids))
4211 ((js2-object-node-p node)
4212 (setf (js2-object-node-elems node) kids))
4213 ((js2-call-node-p node)
4214 (setf (js2-call-node-args node) kids))
4215 ((js2-new-node-p node)
4216 (setf (js2-new-node-args node) kids))
4217 ((js2-var-decl-node-p node)
4218 (setf (js2-var-decl-node-kids node) kids))
4219 (t
4220 (error "Unsupported node type: %s" (js2-node-short-name node))))
4221 kids)
4222
4223 ;; All because Common Lisp doesn't support multiple inheritance for defstructs.
4224 (defconst js2-paren-expr-nodes
4225 '(cl-struct-js2-comp-loop-node
4226 cl-struct-js2-comp-node
4227 cl-struct-js2-call-node
4228 cl-struct-js2-catch-node
4229 cl-struct-js2-do-node
4230 cl-struct-js2-elem-get-node
4231 cl-struct-js2-for-in-node
4232 cl-struct-js2-for-node
4233 cl-struct-js2-function-node
4234 cl-struct-js2-if-node
4235 cl-struct-js2-let-node
4236 cl-struct-js2-new-node
4237 cl-struct-js2-paren-node
4238 cl-struct-js2-switch-node
4239 cl-struct-js2-while-node
4240 cl-struct-js2-with-node
4241 cl-struct-js2-xml-dot-query-node)
4242 "Node types that can have a parenthesized child expression.
4243 In particular, nodes that respond to `js2-node-lp' and `js2-node-rp'.")
4244
4245 (defsubst js2-paren-expr-node-p (node)
4246 "Return t for nodes that typically have a parenthesized child expression.
4247 Useful for computing the indentation anchors for arg-lists and conditions.
4248 Note that it may return a false positive, for instance when NODE is
4249 a `js2-new-node' and there are no arguments or parentheses."
4250 (memq (aref node 0) js2-paren-expr-nodes))
4251
4252 ;; Fake polymorphism... yech.
4253 (defun js2-node-lp (node)
4254 "Return relative left-paren position for NODE, if applicable.
4255 For `js2-elem-get-node' structs, returns left-bracket position.
4256 Note that the position may be nil in the case of a parse error."
4257 (cond
4258 ((js2-elem-get-node-p node)
4259 (js2-elem-get-node-lb node))
4260 ((js2-loop-node-p node)
4261 (js2-loop-node-lp node))
4262 ((js2-function-node-p node)
4263 (js2-function-node-lp node))
4264 ((js2-if-node-p node)
4265 (js2-if-node-lp node))
4266 ((js2-new-node-p node)
4267 (js2-new-node-lp node))
4268 ((js2-call-node-p node)
4269 (js2-call-node-lp node))
4270 ((js2-paren-node-p node)
4271 0)
4272 ((js2-switch-node-p node)
4273 (js2-switch-node-lp node))
4274 ((js2-catch-node-p node)
4275 (js2-catch-node-lp node))
4276 ((js2-let-node-p node)
4277 (js2-let-node-lp node))
4278 ((js2-comp-node-p node)
4279 0)
4280 ((js2-with-node-p node)
4281 (js2-with-node-lp node))
4282 ((js2-xml-dot-query-node-p node)
4283 (1+ (js2-infix-node-op-pos node)))
4284 (t
4285 (error "Unsupported node type: %s" (js2-node-short-name node)))))
4286
4287 ;; Fake polymorphism... blech.
4288 (defun js2-node-rp (node)
4289 "Return relative right-paren position for NODE, if applicable.
4290 For `js2-elem-get-node' structs, returns right-bracket position.
4291 Note that the position may be nil in the case of a parse error."
4292 (cond
4293 ((js2-elem-get-node-p node)
4294 (js2-elem-get-node-rb node))
4295 ((js2-loop-node-p node)
4296 (js2-loop-node-rp node))
4297 ((js2-function-node-p node)
4298 (js2-function-node-rp node))
4299 ((js2-if-node-p node)
4300 (js2-if-node-rp node))
4301 ((js2-new-node-p node)
4302 (js2-new-node-rp node))
4303 ((js2-call-node-p node)
4304 (js2-call-node-rp node))
4305 ((js2-paren-node-p node)
4306 (1- (js2-node-len node)))
4307 ((js2-switch-node-p node)
4308 (js2-switch-node-rp node))
4309 ((js2-catch-node-p node)
4310 (js2-catch-node-rp node))
4311 ((js2-let-node-p node)
4312 (js2-let-node-rp node))
4313 ((js2-comp-node-p node)
4314 (1- (js2-node-len node)))
4315 ((js2-with-node-p node)
4316 (js2-with-node-rp node))
4317 ((js2-xml-dot-query-node-p node)
4318 (1+ (js2-xml-dot-query-node-rp node)))
4319 (t
4320 (error "Unsupported node type: %s" (js2-node-short-name node)))))
4321
4322 (defsubst js2-node-first-child (node)
4323 "Return the first element of `js2-node-child-list' for NODE."
4324 (car (js2-node-child-list node)))
4325
4326 (defsubst js2-node-last-child (node)
4327 "Return the last element of `js2-node-last-child' for NODE."
4328 (car (last (js2-node-child-list node))))
4329
4330 (defun js2-node-prev-sibling (node)
4331 "Return the previous statement in parent.
4332 Works for parents supported by `js2-node-child-list'.
4333 Returns nil if NODE is not in the parent, or PARENT is
4334 not a supported node, or if NODE is the first child."
4335 (let* ((p (js2-node-parent node))
4336 (kids (js2-node-child-list p))
4337 (sib (car kids)))
4338 (while (and kids
4339 (not (eq node (cadr kids))))
4340 (setq kids (cdr kids)
4341 sib (car kids)))
4342 sib))
4343
4344 (defun js2-node-next-sibling (node)
4345 "Return the next statement in parent block.
4346 Returns nil if NODE is not in the block, or PARENT is not
4347 a block node, or if NODE is the last statement."
4348 (let* ((p (js2-node-parent node))
4349 (kids (js2-node-child-list p)))
4350 (while (and kids
4351 (not (eq node (car kids))))
4352 (setq kids (cdr kids)))
4353 (cadr kids)))
4354
4355 (defun js2-node-find-child-before (pos parent &optional after)
4356 "Find the last child that starts before POS in parent.
4357 If AFTER is non-nil, returns first child starting after POS.
4358 POS is an absolute buffer position. PARENT is any node
4359 supported by `js2-node-child-list'.
4360 Returns nil if no applicable child is found."
4361 (let ((kids (if (js2-function-node-p parent)
4362 (js2-block-node-kids (js2-function-node-body parent))
4363 (js2-node-child-list parent)))
4364 (beg (js2-node-abs-pos (if (js2-function-node-p parent)
4365 (js2-function-node-body parent)
4366 parent)))
4367 kid result fn
4368 (continue t))
4369 (setq fn (if after '>= '<))
4370 (while (and kids continue)
4371 (setq kid (car kids))
4372 (if (funcall fn (+ beg (js2-node-pos kid)) pos)
4373 (setq result kid
4374 continue (not after))
4375 (setq continue after))
4376 (setq kids (cdr kids)))
4377 result))
4378
4379 (defun js2-node-find-child-after (pos parent)
4380 "Find first child that starts after POS in parent.
4381 POS is an absolute buffer position. PARENT is any node
4382 supported by `js2-node-child-list'.
4383 Returns nil if no applicable child is found."
4384 (js2-node-find-child-before pos parent 'after))
4385
4386 (defun js2-node-replace-child (pos parent new-node)
4387 "Replace node at index POS in PARENT with NEW-NODE.
4388 Only works for parents supported by `js2-node-child-list'."
4389 (let ((kids (js2-node-child-list parent))
4390 (i 0))
4391 (while (< i pos)
4392 (setq kids (cdr kids)
4393 i (1+ i)))
4394 (setcar kids new-node)
4395 (js2-node-add-children parent new-node)))
4396
4397 (defun js2-node-buffer (n)
4398 "Return the buffer associated with AST N.
4399 Returns nil if the buffer is not set as a property on the root
4400 node, or if parent links were not recorded during parsing."
4401 (let ((root (js2-node-root n)))
4402 (and root
4403 (js2-ast-root-p root)
4404 (js2-ast-root-buffer root))))
4405
4406 (defun js2-block-node-push (n kid)
4407 "Push js2-node KID onto the end of js2-block-node N's child list.
4408 KID is always added to the -end- of the kids list.
4409 Function also calls `js2-node-add-children' to add the parent link."
4410 (let ((kids (js2-node-child-list n)))
4411 (if kids
4412 (setcdr kids (nconc (cdr kids) (list kid)))
4413 (js2-node-set-child-list n (list kid)))
4414 (js2-node-add-children n kid)))
4415
4416 (defun js2-node-string (node)
4417 (with-current-buffer (or (js2-node-buffer node)
4418 (error "No buffer available for node %s" node))
4419 (let ((pos (js2-node-abs-pos node)))
4420 (buffer-substring-no-properties pos (+ pos (js2-node-len node))))))
4421
4422 ;; Container for storing the node we're looking for in a traversal.
4423 (js2-deflocal js2-discovered-node nil)
4424
4425 ;; Keep track of absolute node position during traversals.
4426 (js2-deflocal js2-visitor-offset nil)
4427
4428 (js2-deflocal js2-node-search-point nil)
4429
4430 (when js2-mode-dev-mode-p
4431 (defun js2-find-node-at-point ()
4432 (interactive)
4433 (let ((node (js2-node-at-point)))
4434 (message "%s" (or node "No node found at point"))))
4435 (defun js2-node-name-at-point ()
4436 (interactive)
4437 (let ((node (js2-node-at-point)))
4438 (message "%s" (if node
4439 (js2-node-short-name node)
4440 "No node found at point.")))))
4441
4442 (defun js2-node-at-point (&optional pos skip-comments)
4443 "Return AST node at POS, a buffer position, defaulting to current point.
4444 The `js2-mode-ast' variable must be set to the current parse tree.
4445 Signals an error if the AST (`js2-mode-ast') is nil.
4446 Always returns a node - if it can't find one, it returns the root.
4447 If SKIP-COMMENTS is non-nil, comment nodes are ignored."
4448 (let ((ast js2-mode-ast)
4449 result)
4450 (unless ast
4451 (error "No JavaScript AST available"))
4452 ;; Look through comments first, since they may be inside nodes that
4453 ;; would otherwise report a match.
4454 (setq pos (or pos (point))
4455 result (if (> pos (js2-node-abs-end ast))
4456 ast
4457 (if (not skip-comments)
4458 (js2-comment-at-point pos))))
4459 (unless result
4460 (setq js2-discovered-node nil
4461 js2-visitor-offset 0
4462 js2-node-search-point pos)
4463 (unwind-protect
4464 (catch 'js2-visit-done
4465 (js2-visit-ast ast #'js2-node-at-point-visitor))
4466 (setq js2-visitor-offset nil
4467 js2-node-search-point nil))
4468 (setq result js2-discovered-node))
4469 ;; may have found a comment beyond end of last child node,
4470 ;; since visiting the ast-root looks at the comment-list last.
4471 (if (and skip-comments
4472 (js2-comment-node-p result))
4473 (setq result nil))
4474 (or result js2-mode-ast)))
4475
4476 (defun js2-node-at-point-visitor (node end-p)
4477 (let ((rel-pos (js2-node-pos node))
4478 abs-pos
4479 abs-end
4480 (point js2-node-search-point))
4481 (cond
4482 (end-p
4483 ;; this evaluates to a non-nil return value, even if it's zero
4484 (decf js2-visitor-offset rel-pos))
4485 ;; we already looked for comments before visiting, and don't want them now
4486 ((js2-comment-node-p node)
4487 nil)
4488 (t
4489 (setq abs-pos (incf js2-visitor-offset rel-pos)
4490 ;; we only want to use the node if the point is before
4491 ;; the last character position in the node, so we decrement
4492 ;; the absolute end by 1.
4493 abs-end (+ abs-pos (js2-node-len node) -1))
4494 (cond
4495 ;; If this node starts after search-point, stop the search.
4496 ((> abs-pos point)
4497 (throw 'js2-visit-done nil))
4498 ;; If this node ends before the search-point, don't check kids.
4499 ((> point abs-end)
4500 nil)
4501 (t
4502 ;; Otherwise point is within this node, possibly in a child.
4503 (setq js2-discovered-node node)
4504 t)))))) ; keep processing kids to look for more specific match
4505
4506 (defsubst js2-block-comment-p (node)
4507 "Return non-nil if NODE is a comment node of format `jsdoc' or `block'."
4508 (and (js2-comment-node-p node)
4509 (memq (js2-comment-node-format node) '(jsdoc block))))
4510
4511 ;; TODO: put the comments in a vector and binary-search them instead
4512 (defun js2-comment-at-point (&optional pos)
4513 "Look through scanned comment nodes for one containing POS.
4514 POS is a buffer position that defaults to current point.
4515 Function returns nil if POS was not in any comment node."
4516 (let ((ast js2-mode-ast)
4517 (x (or pos (point)))
4518 beg end)
4519 (unless ast
4520 (error "No JavaScript AST available"))
4521 (catch 'done
4522 ;; Comments are stored in lexical order.
4523 (dolist (comment (js2-ast-root-comments ast) nil)
4524 (setq beg (js2-node-abs-pos comment)
4525 end (+ beg (js2-node-len comment)))
4526 (if (and (>= x beg)
4527 (<= x end))
4528 (throw 'done comment))))))
4529
4530 (defun js2-mode-find-parent-fn (node)
4531 "Find function enclosing NODE.
4532 Returns nil if NODE is not inside a function."
4533 (setq node (js2-node-parent node))
4534 (while (and node (not (js2-function-node-p node)))
4535 (setq node (js2-node-parent node)))
4536 (and (js2-function-node-p node) node))
4537
4538 (defun js2-mode-find-enclosing-fn (node)
4539 "Find function or root enclosing NODE."
4540 (if (js2-ast-root-p node)
4541 node
4542 (setq node (js2-node-parent node))
4543 (while (not (or (js2-ast-root-p node)
4544 (js2-function-node-p node)))
4545 (setq node (js2-node-parent node)))
4546 node))
4547
4548 (defun js2-mode-find-enclosing-node (beg end)
4549 "Find script or function fully enclosing BEG and END."
4550 (let ((node (js2-node-at-point beg))
4551 pos
4552 (continue t))
4553 (while continue
4554 (if (or (js2-ast-root-p node)
4555 (and (js2-function-node-p node)
4556 (<= (setq pos (js2-node-abs-pos node)) beg)
4557 (>= (+ pos (js2-node-len node)) end)))
4558 (setq continue nil)
4559 (setq node (js2-node-parent node))))
4560 node))
4561
4562 (defun js2-node-parent-script-or-fn (node)
4563 "Find script or function immediately enclosing NODE.
4564 If NODE is the ast-root, returns nil."
4565 (if (js2-ast-root-p node)
4566 nil
4567 (setq node (js2-node-parent node))
4568 (while (and node (not (or (js2-function-node-p node)
4569 (js2-script-node-p node))))
4570 (setq node (js2-node-parent node)))
4571 node))
4572
4573 (defun js2-node-is-descendant (node ancestor)
4574 "Return t if NODE is a descendant of ANCESTOR."
4575 (while (and node
4576 (not (eq node ancestor)))
4577 (setq node (js2-node-parent node)))
4578 node)
4579
4580 ;;; visitor infrastructure
4581
4582 (defun js2-visit-none (_node _callback)
4583 "Visitor for AST node that have no node children."
4584 nil)
4585
4586 (defun js2-print-none (_node _indent)
4587 "Visitor for AST node with no printed representation.")
4588
4589 (defun js2-print-body (node indent)
4590 "Print a statement, or a block without braces."
4591 (if (js2-block-node-p node)
4592 (dolist (kid (js2-block-node-kids node))
4593 (js2-print-ast kid indent))
4594 (js2-print-ast node indent)))
4595
4596 (defun js2-print-list (args &optional delimiter)
4597 (loop with len = (length args)
4598 for arg in args
4599 for count from 1
4600 do
4601 (when arg (js2-print-ast arg 0))
4602 (if (< count len)
4603 (insert (or delimiter ", ")))))
4604
4605 (defun js2-print-tree (ast)
4606 "Prints an AST to the current buffer.
4607 Makes `js2-ast-parent-nodes' available to the printer functions."
4608 (let ((max-lisp-eval-depth (max max-lisp-eval-depth 1500)))
4609 (js2-print-ast ast)))
4610
4611 (defun js2-print-ast (node &optional indent)
4612 "Helper function for printing AST nodes.
4613 Requires `js2-ast-parent-nodes' to be non-nil.
4614 You should use `js2-print-tree' instead of this function."
4615 (let ((printer (get (aref node 0) 'js2-printer))
4616 (i (or indent 0)))
4617 ;; TODO: wedge comments in here somewhere
4618 (if printer
4619 (funcall printer node i))))
4620
4621 (defconst js2-side-effecting-tokens
4622 (let ((tokens (make-bool-vector js2-num-tokens nil)))
4623 (dolist (tt (list js2-ASSIGN
4624 js2-ASSIGN_ADD
4625 js2-ASSIGN_BITAND
4626 js2-ASSIGN_BITOR
4627 js2-ASSIGN_BITXOR
4628 js2-ASSIGN_DIV
4629 js2-ASSIGN_LSH
4630 js2-ASSIGN_MOD
4631 js2-ASSIGN_MUL
4632 js2-ASSIGN_RSH
4633 js2-ASSIGN_SUB
4634 js2-ASSIGN_URSH
4635 js2-BLOCK
4636 js2-BREAK
4637 js2-CALL
4638 js2-CATCH
4639 js2-CATCH_SCOPE
4640 js2-CONST
4641 js2-CONTINUE
4642 js2-DEBUGGER
4643 js2-DEC
4644 js2-DELPROP
4645 js2-DEL_REF
4646 js2-DO
4647 js2-ELSE
4648 js2-EMPTY
4649 js2-ENTERWITH
4650 js2-EXPORT
4651 js2-EXPR_RESULT
4652 js2-FINALLY
4653 js2-FOR
4654 js2-FUNCTION
4655 js2-GOTO
4656 js2-IF
4657 js2-IFEQ
4658 js2-IFNE
4659 js2-IMPORT
4660 js2-INC
4661 js2-JSR
4662 js2-LABEL
4663 js2-LEAVEWITH
4664 js2-LET
4665 js2-LETEXPR
4666 js2-LOCAL_BLOCK
4667 js2-LOOP
4668 js2-NEW
4669 js2-REF_CALL
4670 js2-RETHROW
4671 js2-RETURN
4672 js2-RETURN_RESULT
4673 js2-SEMI
4674 js2-SETELEM
4675 js2-SETELEM_OP
4676 js2-SETNAME
4677 js2-SETPROP
4678 js2-SETPROP_OP
4679 js2-SETVAR
4680 js2-SET_REF
4681 js2-SET_REF_OP
4682 js2-SWITCH
4683 js2-TARGET
4684 js2-THROW
4685 js2-TRY
4686 js2-VAR
4687 js2-WHILE
4688 js2-WITH
4689 js2-WITHEXPR
4690 js2-YIELD))
4691 (aset tokens tt t))
4692 (if js2-instanceof-has-side-effects
4693 (aset tokens js2-INSTANCEOF t))
4694 tokens))
4695
4696 (defun js2-node-has-side-effects (node)
4697 "Return t if NODE has side effects."
4698 (when node ; makes it easier to handle malformed expressions
4699 (let ((tt (js2-node-type node)))
4700 (cond
4701 ;; This doubtless needs some work, since EXPR_VOID is used
4702 ;; in several ways in Rhino and I may not have caught them all.
4703 ;; I'll wait for people to notice incorrect warnings.
4704 ((and (= tt js2-EXPR_VOID)
4705 (js2-expr-stmt-node-p node)) ; but not if EXPR_RESULT
4706 (let ((expr (js2-expr-stmt-node-expr node)))
4707 (or (js2-node-has-side-effects expr)
4708 (when (js2-string-node-p expr)
4709 (member (js2-string-node-value expr) '("use strict" "use asm"))))))
4710 ((= tt js2-COMMA)
4711 (js2-node-has-side-effects (js2-infix-node-right node)))
4712 ((or (= tt js2-AND)
4713 (= tt js2-OR))
4714 (or (js2-node-has-side-effects (js2-infix-node-right node))
4715 (js2-node-has-side-effects (js2-infix-node-left node))))
4716 ((= tt js2-HOOK)
4717 (and (js2-node-has-side-effects (js2-cond-node-true-expr node))
4718 (js2-node-has-side-effects (js2-cond-node-false-expr node))))
4719 ((js2-paren-node-p node)
4720 (js2-node-has-side-effects (js2-paren-node-expr node)))
4721 ((= tt js2-ERROR) ; avoid cascaded error messages
4722 nil)
4723 (t
4724 (aref js2-side-effecting-tokens tt))))))
4725
4726 (defconst js2-stmt-node-types
4727 (list js2-BLOCK
4728 js2-BREAK
4729 js2-CONTINUE
4730 js2-DEFAULT ; e4x "default xml namespace" statement
4731 js2-DO
4732 js2-EXPR_RESULT
4733 js2-EXPR_VOID
4734 js2-FOR
4735 js2-IF
4736 js2-RETURN
4737 js2-SWITCH
4738 js2-THROW
4739 js2-TRY
4740 js2-WHILE
4741 js2-WITH)
4742 "Node types that only appear in statement contexts.
4743 The list does not include nodes that always appear as the child
4744 of another specific statement type, such as switch-cases,
4745 catch and finally blocks, and else-clauses. The list also excludes
4746 nodes like yield, let and var, which may appear in either expression
4747 or statement context, and in the latter context always have a
4748 `js2-expr-stmt-node' parent. Finally, the list does not include
4749 functions or scripts, which are treated separately from statements
4750 by the JavaScript parser and runtime.")
4751
4752 (defun js2-stmt-node-p (node)
4753 "Heuristic for figuring out if NODE is a statement.
4754 Some node types can appear in either an expression context or a
4755 statement context, e.g. let-nodes, yield-nodes, and var-decl nodes.
4756 For these node types in a statement context, the parent will be a
4757 `js2-expr-stmt-node'.
4758 Functions aren't included in the check."
4759 (memq (js2-node-type node) js2-stmt-node-types))
4760
4761 (defun js2-mode-find-first-stmt (node)
4762 "Search upward starting from NODE looking for a statement.
4763 For purposes of this function, a `js2-function-node' counts."
4764 (while (not (or (js2-stmt-node-p node)
4765 (js2-function-node-p node)))
4766 (setq node (js2-node-parent node)))
4767 node)
4768
4769 (defun js2-node-parent-stmt (node)
4770 "Return the node's first ancestor that is a statement.
4771 Returns nil if NODE is a `js2-ast-root'. Note that any expression
4772 appearing in a statement context will have a parent that is a
4773 `js2-expr-stmt-node' that will be returned by this function."
4774 (let ((parent (js2-node-parent node)))
4775 (if (or (null parent)
4776 (js2-stmt-node-p parent)
4777 (and (js2-function-node-p parent)
4778 (not (eq (js2-function-node-form parent)
4779 'FUNCTION_EXPRESSION))))
4780 parent
4781 (js2-node-parent-stmt parent))))
4782
4783 ;; In the Mozilla Rhino sources, Roshan James writes:
4784 ;; Does consistent-return analysis on the function body when strict mode is
4785 ;; enabled.
4786 ;;
4787 ;; function (x) { return (x+1) }
4788 ;;
4789 ;; is ok, but
4790 ;;
4791 ;; function (x) { if (x < 0) return (x+1); }
4792 ;;
4793 ;; is not because the function can potentially return a value when the
4794 ;; condition is satisfied and if not, the function does not explicitly
4795 ;; return a value.
4796 ;;
4797 ;; This extends to checking mismatches such as "return" and "return <value>"
4798 ;; used in the same function. Warnings are not emitted if inconsistent
4799 ;; returns exist in code that can be statically shown to be unreachable.
4800 ;; Ex.
4801 ;; function (x) { while (true) { ... if (..) { return value } ... } }
4802 ;;
4803 ;; emits no warning. However if the loop had a break statement, then a
4804 ;; warning would be emitted.
4805 ;;
4806 ;; The consistency analysis looks at control structures such as loops, ifs,
4807 ;; switch, try-catch-finally blocks, examines the reachable code paths and
4808 ;; warns the user about an inconsistent set of termination possibilities.
4809 ;;
4810 ;; These flags enumerate the possible ways a statement/function can
4811 ;; terminate. These flags are used by endCheck() and by the Parser to
4812 ;; detect inconsistent return usage.
4813 ;;
4814 ;; END_UNREACHED is reserved for code paths that are assumed to always be
4815 ;; able to execute (example: throw, continue)
4816 ;;
4817 ;; END_DROPS_OFF indicates if the statement can transfer control to the
4818 ;; next one. Statement such as return dont. A compound statement may have
4819 ;; some branch that drops off control to the next statement.
4820 ;;
4821 ;; END_RETURNS indicates that the statement can return with no value.
4822 ;; END_RETURNS_VALUE indicates that the statement can return a value.
4823 ;;
4824 ;; A compound statement such as
4825 ;; if (condition) {
4826 ;; return value;
4827 ;; }
4828 ;; Will be detected as (END_DROPS_OFF | END_RETURN_VALUE) by endCheck()
4829
4830 (defconst js2-END_UNREACHED 0)
4831 (defconst js2-END_DROPS_OFF 1)
4832 (defconst js2-END_RETURNS 2)
4833 (defconst js2-END_RETURNS_VALUE 4)
4834 (defconst js2-END_YIELDS 8)
4835
4836 (defun js2-has-consistent-return-usage (node)
4837 "Check that every return usage in a function body is consistent.
4838 Returns t if the function satisfies strict mode requirement."
4839 (let ((n (js2-end-check node)))
4840 ;; either it doesn't return a value in any branch...
4841 (or (js2-flag-not-set-p n js2-END_RETURNS_VALUE)
4842 ;; or it returns a value (or is unreached) at every branch
4843 (js2-flag-not-set-p n (logior js2-END_DROPS_OFF
4844 js2-END_RETURNS
4845 js2-END_YIELDS)))))
4846
4847 (defun js2-end-check-if (node)
4848 "Ensure that return usage in then/else blocks is consistent.
4849 If there is no else block, then the return statement can fall through.
4850 Returns logical OR of END_* flags"
4851 (let ((th (js2-if-node-then-part node))
4852 (el (js2-if-node-else-part node)))
4853 (if (null th)
4854 js2-END_UNREACHED
4855 (logior (js2-end-check th) (if el
4856 (js2-end-check el)
4857 js2-END_DROPS_OFF)))))
4858
4859 (defun js2-end-check-switch (node)
4860 "Consistency of return statements is checked between the case statements.
4861 If there is no default, then the switch can fall through. If there is a
4862 default, we check to see if all code paths in the default return or if
4863 there is a code path that can fall through.
4864 Returns logical OR of END_* flags."
4865 (let ((rv js2-END_UNREACHED)
4866 default-case)
4867 ;; examine the cases
4868 (catch 'break
4869 (dolist (c (js2-switch-node-cases node))
4870 (if (js2-case-node-expr c)
4871 (js2-set-flag rv (js2-end-check-block c))
4872 (setq default-case c)
4873 (throw 'break nil))))
4874 ;; we don't care how the cases drop into each other
4875 (js2-clear-flag rv js2-END_DROPS_OFF)
4876 ;; examine the default
4877 (js2-set-flag rv (if default-case
4878 (js2-end-check default-case)
4879 js2-END_DROPS_OFF))
4880 rv))
4881
4882 (defun js2-end-check-try (node)
4883 "If the block has a finally, return consistency is checked in the
4884 finally block. If all code paths in the finally return, then the
4885 returns in the try-catch blocks don't matter. If there is a code path
4886 that does not return or if there is no finally block, the returns
4887 of the try and catch blocks are checked for mismatch.
4888 Returns logical OR of END_* flags."
4889 (let ((finally (js2-try-node-finally-block node))
4890 rv)
4891 ;; check the finally if it exists
4892 (setq rv (if finally
4893 (js2-end-check (js2-finally-node-body finally))
4894 js2-END_DROPS_OFF))
4895 ;; If the finally block always returns, then none of the returns
4896 ;; in the try or catch blocks matter.
4897 (when (js2-flag-set-p rv js2-END_DROPS_OFF)
4898 (js2-clear-flag rv js2-END_DROPS_OFF)
4899 ;; examine the try block
4900 (js2-set-flag rv (js2-end-check (js2-try-node-try-block node)))
4901 ;; check each catch block
4902 (dolist (cb (js2-try-node-catch-clauses node))
4903 (js2-set-flag rv (js2-end-check (js2-catch-node-block cb)))))
4904 rv))
4905
4906 (defun js2-end-check-loop (node)
4907 "Return statement in the loop body must be consistent.
4908 The default assumption for any kind of a loop is that it will eventually
4909 terminate. The only exception is a loop with a constant true condition.
4910 Code that follows such a loop is examined only if one can determine
4911 statically that there is a break out of the loop.
4912
4913 for(... ; ... ; ...) {}
4914 for(... in ... ) {}
4915 while(...) { }
4916 do { } while(...)
4917
4918 Returns logical OR of END_* flags."
4919 (let ((rv (js2-end-check (js2-loop-node-body node)))
4920 (condition (cond
4921 ((js2-while-node-p node)
4922 (js2-while-node-condition node))
4923 ((js2-do-node-p node)
4924 (js2-do-node-condition node))
4925 ((js2-for-node-p node)
4926 (js2-for-node-condition node)))))
4927
4928 ;; check to see if the loop condition is always true
4929 (if (and condition
4930 (eq (js2-always-defined-boolean-p condition) 'ALWAYS_TRUE))
4931 (js2-clear-flag rv js2-END_DROPS_OFF))
4932
4933 ;; look for effect of breaks
4934 (js2-set-flag rv (js2-node-get-prop node
4935 'CONTROL_BLOCK_PROP
4936 js2-END_UNREACHED))
4937 rv))
4938
4939 (defun js2-end-check-block (node)
4940 "A general block of code is examined statement by statement.
4941 If any statement (even a compound one) returns in all branches, then
4942 subsequent statements are not examined.
4943 Returns logical OR of END_* flags."
4944 (let* ((rv js2-END_DROPS_OFF)
4945 (kids (js2-block-node-kids node))
4946 (n (car kids)))
4947 ;; Check each statment. If the statement can continue onto the next
4948 ;; one (i.e. END_DROPS_OFF is set), then check the next statement.
4949 (while (and n (js2-flag-set-p rv js2-END_DROPS_OFF))
4950 (js2-clear-flag rv js2-END_DROPS_OFF)
4951 (js2-set-flag rv (js2-end-check n))
4952 (setq kids (cdr kids)
4953 n (car kids)))
4954 rv))
4955
4956 (defun js2-end-check-label (node)
4957 "A labeled statement implies that there may be a break to the label.
4958 The function processes the labeled statement and then checks the
4959 CONTROL_BLOCK_PROP property to see if there is ever a break to the
4960 particular label.
4961 Returns logical OR of END_* flags."
4962 (let ((rv (js2-end-check (js2-labeled-stmt-node-stmt node))))
4963 (logior rv (js2-node-get-prop node
4964 'CONTROL_BLOCK_PROP
4965 js2-END_UNREACHED))))
4966
4967 (defun js2-end-check-break (node)
4968 "When a break is encountered annotate the statement being broken
4969 out of by setting its CONTROL_BLOCK_PROP property.
4970 Returns logical OR of END_* flags."
4971 (and (js2-break-node-target node)
4972 (js2-node-set-prop (js2-break-node-target node)
4973 'CONTROL_BLOCK_PROP
4974 js2-END_DROPS_OFF))
4975 js2-END_UNREACHED)
4976
4977 (defun js2-end-check (node)
4978 "Examine the body of a function, doing a basic reachability analysis.
4979 Returns a combination of flags END_* flags that indicate
4980 how the function execution can terminate. These constitute only the
4981 pessimistic set of termination conditions. It is possible that at
4982 runtime certain code paths will never be actually taken. Hence this
4983 analysis will flag errors in cases where there may not be errors.
4984 Returns logical OR of END_* flags"
4985 (let (kid)
4986 (cond
4987 ((js2-break-node-p node)
4988 (js2-end-check-break node))
4989 ((js2-expr-stmt-node-p node)
4990 (if (setq kid (js2-expr-stmt-node-expr node))
4991 (js2-end-check kid)
4992 js2-END_DROPS_OFF))
4993 ((or (js2-continue-node-p node)
4994 (js2-throw-node-p node))
4995 js2-END_UNREACHED)
4996 ((js2-return-node-p node)
4997 (if (setq kid (js2-return-node-retval node))
4998 js2-END_RETURNS_VALUE
4999 js2-END_RETURNS))
5000 ((js2-loop-node-p node)
5001 (js2-end-check-loop node))
5002 ((js2-switch-node-p node)
5003 (js2-end-check-switch node))
5004 ((js2-labeled-stmt-node-p node)
5005 (js2-end-check-label node))
5006 ((js2-if-node-p node)
5007 (js2-end-check-if node))
5008 ((js2-try-node-p node)
5009 (js2-end-check-try node))
5010 ((js2-block-node-p node)
5011 (if (null (js2-block-node-kids node))
5012 js2-END_DROPS_OFF
5013 (js2-end-check-block node)))
5014 ((js2-yield-node-p node)
5015 js2-END_YIELDS)
5016 (t
5017 js2-END_DROPS_OFF))))
5018
5019 (defun js2-always-defined-boolean-p (node)
5020 "Check if NODE always evaluates to true or false in boolean context.
5021 Returns 'ALWAYS_TRUE, 'ALWAYS_FALSE, or nil if it's neither always true
5022 nor always false."
5023 (let ((tt (js2-node-type node))
5024 num)
5025 (cond
5026 ((or (= tt js2-FALSE) (= tt js2-NULL))
5027 'ALWAYS_FALSE)
5028 ((= tt js2-TRUE)
5029 'ALWAYS_TRUE)
5030 ((= tt js2-NUMBER)
5031 (setq num (js2-number-node-num-value node))
5032 (if (and (not (eq num 0.0e+NaN))
5033 (not (zerop num)))
5034 'ALWAYS_TRUE
5035 'ALWAYS_FALSE))
5036 (t
5037 nil))))
5038
5039 ;;; Scanner -- a port of Mozilla Rhino's lexer.
5040 ;; Corresponds to Rhino files Token.java and TokenStream.java.
5041
5042 (defvar js2-tokens nil
5043 "List of all defined token names.") ; initialized in `js2-token-names'
5044
5045 (defconst js2-token-names
5046 (let* ((names (make-vector js2-num-tokens -1))
5047 (case-fold-search nil) ; only match js2-UPPER_CASE
5048 (syms (apropos-internal "^js2-\\(?:[[:upper:]_]+\\)")))
5049 (loop for sym in syms
5050 for i from 0
5051 do
5052 (unless (or (memq sym '(js2-EOF_CHAR js2-ERROR))
5053 (not (boundp sym)))
5054 (aset names (symbol-value sym) ; code, e.g. 152
5055 (downcase
5056 (substring (symbol-name sym) 4))) ; name, e.g. "let"
5057 (push sym js2-tokens)))
5058 names)
5059 "Vector mapping int values to token string names, sans `js2-' prefix.")
5060
5061 (defun js2-tt-name (tok)
5062 "Return a string name for TOK, a token symbol or code.
5063 Signals an error if it's not a recognized token."
5064 (let ((code tok))
5065 (if (symbolp tok)
5066 (setq code (symbol-value tok)))
5067 (if (eq code -1)
5068 "ERROR"
5069 (if (and (numberp code)
5070 (not (minusp code))
5071 (< code js2-num-tokens))
5072 (aref js2-token-names code)
5073 (error "Invalid token: %s" code)))))
5074
5075 (defsubst js2-tt-sym (tok)
5076 "Return symbol for TOK given its code, e.g. 'js2-LP for code 86."
5077 (intern (js2-tt-name tok)))
5078
5079 (defconst js2-token-codes
5080 (let ((table (make-hash-table :test 'eq :size 256)))
5081 (loop for name across js2-token-names
5082 for sym = (intern (concat "js2-" (upcase name)))
5083 do
5084 (puthash sym (symbol-value sym) table))
5085 ;; clean up a few that are "wrong" in Rhino's token codes
5086 (puthash 'js2-DELETE js2-DELPROP table)
5087 table)
5088 "Hashtable mapping token type symbols to their bytecodes.")
5089
5090 (defsubst js2-tt-code (sym)
5091 "Return code for token symbol SYM, e.g. 86 for 'js2-LP."
5092 (or (gethash sym js2-token-codes)
5093 (error "Invalid token symbol: %s " sym))) ; signal code bug
5094
5095 (defun js2-report-scan-error (msg &optional no-throw beg len)
5096 (setf (js2-token-end (js2-current-token)) js2-ts-cursor)
5097 (js2-report-error msg nil
5098 (or beg (js2-current-token-beg))
5099 (or len (js2-current-token-len)))
5100 (unless no-throw
5101 (throw 'return js2-ERROR)))
5102
5103 (defun js2-set-string-from-buffer (token)
5104 "Set `string' and `end' slots for TOKEN, return the string."
5105 (setf (js2-token-end token) js2-ts-cursor
5106 (js2-token-string token) (js2-collect-string js2-ts-string-buffer)))
5107
5108 ;; TODO: could potentially avoid a lot of consing by allocating a
5109 ;; char buffer the way Rhino does.
5110 (defsubst js2-add-to-string (c)
5111 (push c js2-ts-string-buffer))
5112
5113 ;; Note that when we "read" the end-of-file, we advance js2-ts-cursor
5114 ;; to (1+ (point-max)), which lets the scanner treat end-of-file like
5115 ;; any other character: when it's not part of the current token, we
5116 ;; unget it, allowing it to be read again by the following call.
5117 (defsubst js2-unget-char ()
5118 (decf js2-ts-cursor))
5119
5120 ;; Rhino distinguishes \r and \n line endings. We don't need to
5121 ;; because we only scan from Emacs buffers, which always use \n.
5122 (defun js2-get-char ()
5123 "Read and return the next character from the input buffer.
5124 Increments `js2-ts-lineno' if the return value is a newline char.
5125 Updates `js2-ts-cursor' to the point after the returned char.
5126 Returns `js2-EOF_CHAR' if we hit the end of the buffer.
5127 Also updates `js2-ts-hit-eof' and `js2-ts-line-start' as needed."
5128 (let (c)
5129 ;; check for end of buffer
5130 (if (>= js2-ts-cursor (point-max))
5131 (setq js2-ts-hit-eof t
5132 js2-ts-cursor (1+ js2-ts-cursor)
5133 c js2-EOF_CHAR) ; return value
5134 ;; otherwise read next char
5135 (setq c (char-before (incf js2-ts-cursor)))
5136 ;; if we read a newline, update counters
5137 (if (= c ?\n)
5138 (setq js2-ts-line-start js2-ts-cursor
5139 js2-ts-lineno (1+ js2-ts-lineno)))
5140 ;; TODO: skip over format characters
5141 c)))
5142
5143 (defun js2-read-unicode-escape ()
5144 "Read a \\uNNNN sequence from the input.
5145 Assumes the ?\ and ?u have already been read.
5146 Returns the unicode character, or nil if it wasn't a valid character.
5147 Doesn't change the values of any scanner variables."
5148 ;; I really wish I knew a better way to do this, but I can't
5149 ;; find the Emacs function that takes a 16-bit int and converts
5150 ;; it to a Unicode/utf-8 character. So I basically eval it with (read).
5151 ;; Have to first check that it's 4 hex characters or it may stop
5152 ;; the read early.
5153 (ignore-errors
5154 (let ((s (buffer-substring-no-properties js2-ts-cursor
5155 (+ 4 js2-ts-cursor))))
5156 (if (string-match "[0-9a-fA-F]\\{4\\}" s)
5157 (read (concat "?\\u" s))))))
5158
5159 (defun js2-match-char (test)
5160 "Consume and return next character if it matches TEST, a character.
5161 Returns nil and consumes nothing if TEST is not the next character."
5162 (let ((c (js2-get-char)))
5163 (if (eq c test)
5164 t
5165 (js2-unget-char)
5166 nil)))
5167
5168 (defun js2-peek-char ()
5169 (prog1
5170 (js2-get-char)
5171 (js2-unget-char)))
5172
5173 (defun js2-identifier-start-p (c)
5174 "Is C a valid start to an ES5 Identifier?
5175 See http://es5.github.io/#x7.6"
5176 (or
5177 (memq c '(?$ ?_))
5178 (memq (get-char-code-property c 'general-category)
5179 ;; Letters
5180 '(Lu Ll Lt Lm Lo Nl))))
5181
5182 (defun js2-identifier-part-p (c)
5183 "Is C a valid part of an ES5 Identifier?
5184 See http://es5.github.io/#x7.6"
5185 (or
5186 (memq c '(?$ ?_ ?\u200c ?\u200d))
5187 (memq (get-char-code-property c 'general-category)
5188 '(;; Letters
5189 Lu Ll Lt Lm Lo Nl
5190 ;; Combining Marks
5191 Mn Mc
5192 ;; Digits
5193 Nd
5194 ;; Connector Punctuation
5195 Pc))))
5196
5197 (defun js2-alpha-p (c)
5198 (cond ((and (<= ?A c) (<= c ?Z)) t)
5199 ((and (<= ?a c) (<= c ?z)) t)
5200 (t nil)))
5201
5202 (defsubst js2-digit-p (c)
5203 (and (<= ?0 c) (<= c ?9)))
5204
5205 (defun js2-js-space-p (c)
5206 (if (<= c 127)
5207 (memq c '(#x20 #x9 #xB #xC #xD))
5208 (or
5209 (eq c #xA0)
5210 ;; TODO: change this nil to check for Unicode space character
5211 nil)))
5212
5213 (defconst js2-eol-chars (list js2-EOF_CHAR ?\n ?\r))
5214
5215 (defun js2-skip-line ()
5216 "Skip to end of line."
5217 (while (not (memq (js2-get-char) js2-eol-chars)))
5218 (js2-unget-char)
5219 (setf (js2-token-end (js2-current-token)) js2-ts-cursor)
5220 (setq js2-token-end js2-ts-cursor))
5221
5222 (defun js2-init-scanner (&optional buf line)
5223 "Create token stream for BUF starting on LINE.
5224 BUF defaults to `current-buffer' and LINE defaults to 1.
5225
5226 A buffer can only have one scanner active at a time, which yields
5227 dramatically simpler code than using a defstruct. If you need to
5228 have simultaneous scanners in a buffer, copy the regions to scan
5229 into temp buffers."
5230 (with-current-buffer (or buf (current-buffer))
5231 (setq js2-ts-dirty-line nil
5232 js2-ts-hit-eof nil
5233 js2-ts-line-start 0
5234 js2-ts-lineno (or line 1)
5235 js2-ts-line-end-char -1
5236 js2-ts-cursor (point-min)
5237 js2-ti-tokens (make-vector js2-ti-ntokens nil)
5238 js2-ti-tokens-cursor 0
5239 js2-ti-lookahead 0
5240 js2-ts-is-xml-attribute nil
5241 js2-ts-xml-is-tag-content nil
5242 js2-ts-xml-open-tags-count 0
5243 js2-ts-string-buffer nil)))
5244
5245 ;; This function uses the cached op, string and number fields in
5246 ;; TokenStream; if getToken has been called since the passed token
5247 ;; was scanned, the op or string printed may be incorrect.
5248 (defun js2-token-to-string (token)
5249 ;; Not sure where this function is used in Rhino. Not tested.
5250 (if (not js2-debug-print-trees)
5251 ""
5252 (let ((name (js2-tt-name token)))
5253 (cond
5254 ((memq token (list js2-STRING js2-REGEXP js2-NAME))
5255 (concat name " `" (js2-current-token-string) "'"))
5256 ((eq token js2-NUMBER)
5257 (format "NUMBER %g" (js2-token-number (js2-current-token))))
5258 (t
5259 name)))))
5260
5261 (defconst js2-keywords
5262 '(break
5263 case catch const continue
5264 debugger default delete do
5265 else enum
5266 false finally for function
5267 if in instanceof import
5268 let
5269 new null
5270 return
5271 switch
5272 this throw true try typeof
5273 var void
5274 while with
5275 yield))
5276
5277 ;; Token names aren't exactly the same as the keywords, unfortunately.
5278 ;; E.g. enum isn't in the tokens, and delete is js2-DELPROP.
5279 (defconst js2-kwd-tokens
5280 (let ((table (make-vector js2-num-tokens nil))
5281 (tokens
5282 (list js2-BREAK
5283 js2-CASE js2-CATCH js2-CONST js2-CONTINUE
5284 js2-DEBUGGER js2-DEFAULT js2-DELPROP js2-DO
5285 js2-ELSE
5286 js2-FALSE js2-FINALLY js2-FOR js2-FUNCTION
5287 js2-IF js2-IN js2-INSTANCEOF js2-IMPORT
5288 js2-LET
5289 js2-NEW js2-NULL
5290 js2-RETURN
5291 js2-SWITCH
5292 js2-THIS js2-THROW js2-TRUE js2-TRY js2-TYPEOF
5293 js2-VAR
5294 js2-WHILE js2-WITH
5295 js2-YIELD)))
5296 (dolist (i tokens)
5297 (aset table i 'font-lock-keyword-face))
5298 (aset table js2-STRING 'font-lock-string-face)
5299 (aset table js2-REGEXP 'font-lock-string-face)
5300 (aset table js2-COMMENT 'font-lock-comment-face)
5301 (aset table js2-THIS 'font-lock-builtin-face)
5302 (aset table js2-VOID 'font-lock-constant-face)
5303 (aset table js2-NULL 'font-lock-constant-face)
5304 (aset table js2-TRUE 'font-lock-constant-face)
5305 (aset table js2-FALSE 'font-lock-constant-face)
5306 table)
5307 "Vector whose values are non-nil for tokens that are keywords.
5308 The values are default faces to use for highlighting the keywords.")
5309
5310 ;; FIXME: Support strict mode-only future reserved words, after we know
5311 ;; which parts scopes are in strict mode, and which are not.
5312 (defconst js2-reserved-words '(class export extends import super)
5313 "Future reserved keywords in ECMAScript 5.")
5314
5315 (defconst js2-keyword-names
5316 (let ((table (make-hash-table :test 'equal)))
5317 (loop for k in js2-keywords
5318 do (puthash
5319 (symbol-name k) ; instanceof
5320 (intern (concat "js2-"
5321 (upcase (symbol-name k)))) ; js2-INSTANCEOF
5322 table))
5323 table)
5324 "JavaScript keywords by name, mapped to their symbols.")
5325
5326 (defconst js2-reserved-word-names
5327 (let ((table (make-hash-table :test 'equal)))
5328 (loop for k in js2-reserved-words
5329 do
5330 (puthash (symbol-name k) 'js2-RESERVED table))
5331 table)
5332 "JavaScript reserved words by name, mapped to 'js2-RESERVED.")
5333
5334 (defun js2-collect-string (buf)
5335 "Convert BUF, a list of chars, to a string.
5336 Reverses BUF before converting."
5337 (if buf
5338 (apply #'string (nreverse buf))
5339 ""))
5340
5341 (defun js2-string-to-keyword (s)
5342 "Return token for S, a string, if S is a keyword or reserved word.
5343 Returns a symbol such as 'js2-BREAK, or nil if not keyword/reserved."
5344 (or (gethash s js2-keyword-names)
5345 (gethash s js2-reserved-word-names)))
5346
5347 (defsubst js2-ts-set-char-token-bounds (token)
5348 "Used when next token is one character."
5349 (setf (js2-token-beg token) (1- js2-ts-cursor)
5350 (js2-token-end token) js2-ts-cursor))
5351
5352 (defsubst js2-ts-return (token type)
5353 "Update the `end' and `type' slots of TOKEN,
5354 then throw `return' with value TYPE."
5355 (setf (js2-token-end token) js2-ts-cursor
5356 (js2-token-type token) type)
5357 (throw 'return type))
5358
5359 (defun js2-x-digit-to-int (c accumulator)
5360 "Build up a hex number.
5361 If C is a hexadecimal digit, return ACCUMULATOR * 16 plus
5362 corresponding number. Otherwise return -1."
5363 (catch 'return
5364 (catch 'check
5365 ;; Use 0..9 < A..Z < a..z
5366 (cond
5367 ((<= c ?9)
5368 (decf c ?0)
5369 (if (<= 0 c)
5370 (throw 'check nil)))
5371 ((<= c ?F)
5372 (when (<= ?A c)
5373 (decf c (- ?A 10))
5374 (throw 'check nil)))
5375 ((<= c ?f)
5376 (when (<= ?a c)
5377 (decf c (- ?a 10))
5378 (throw 'check nil))))
5379 (throw 'return -1))
5380 (logior c (lsh accumulator 4))))
5381
5382 (defun js2-get-token ()
5383 "If `js2-ti-lookahead' is zero, call scanner to get new token.
5384 Otherwise, move `js2-ti-tokens-cursor' and return the type of
5385 next saved token.
5386
5387 This function will not return a newline (js2-EOL) - instead, it
5388 gobbles newlines until it finds a non-newline token. Call
5389 `js2-peek-token-or-eol' when you care about newlines.
5390
5391 This function will also not return a js2-COMMENT. Instead, it
5392 records comments found in `js2-scanned-comments'. If the token
5393 returned by this function immediately follows a jsdoc comment,
5394 the token is flagged as such."
5395 (if (zerop js2-ti-lookahead)
5396 (js2-get-token-internal)
5397 (decf js2-ti-lookahead)
5398 (setq js2-ti-tokens-cursor (mod (1+ js2-ti-tokens-cursor) js2-ti-ntokens))
5399 (let ((tt (js2-current-token-type)))
5400 (assert (not (= tt js2-EOL)))
5401 tt)))
5402
5403 (defun js2-unget-token ()
5404 (assert (< js2-ti-lookahead js2-ti-max-lookahead))
5405 (incf js2-ti-lookahead)
5406 (setq js2-ti-tokens-cursor (mod (1- js2-ti-tokens-cursor) js2-ti-ntokens)))
5407
5408 (defun js2-get-token-internal ()
5409 (let* ((token (js2-get-token-internal-1)) ; call scanner
5410 (tt (js2-token-type token))
5411 saw-eol
5412 face)
5413 ;; process comments
5414 (while (or (= tt js2-EOL) (= tt js2-COMMENT))
5415 (if (= tt js2-EOL)
5416 (setq saw-eol t)
5417 (setq saw-eol nil)
5418 (when js2-record-comments
5419 (js2-record-comment token)))
5420 (setq js2-ti-tokens-cursor (mod (1- js2-ti-tokens-cursor) js2-ti-ntokens))
5421 (setq token (js2-get-token-internal-1) ; call scanner again
5422 tt (js2-token-type token)))
5423
5424 (when saw-eol
5425 (setf (js2-token-follows-eol-p token) t))
5426
5427 ;; perform lexical fontification as soon as token is scanned
5428 (when js2-parse-ide-mode
5429 (cond
5430 ((minusp tt)
5431 (js2-record-face 'js2-error token))
5432 ((setq face (aref js2-kwd-tokens tt))
5433 (js2-record-face face token))
5434 ((and (= tt js2-NAME)
5435 (equal (js2-token-string token) "undefined"))
5436 (js2-record-face 'font-lock-constant-face token))))
5437 tt))
5438
5439 (defun js2-get-token-internal-1 ()
5440 "Return next JavaScript token type, an int such as js2-RETURN.
5441 During operation, creates an instance of `js2-token' struct, sets
5442 its relevant fields and puts it into `js2-ti-tokens'."
5443 (let (c c1 identifier-start is-unicode-escape-start
5444 contains-escape escape-val str result base
5445 quote-char val look-for-slash continue tt
5446 (token (js2-new-token 0)))
5447 (setq
5448 tt
5449 (catch 'return
5450 (while t
5451 ;; Eat whitespace, possibly sensitive to newlines.
5452 (setq continue t)
5453 (while continue
5454 (setq c (js2-get-char))
5455 (cond
5456 ((eq c js2-EOF_CHAR)
5457 (js2-unget-char)
5458 (js2-ts-set-char-token-bounds token)
5459 (throw 'return js2-EOF))
5460 ((eq c ?\n)
5461 (js2-ts-set-char-token-bounds token)
5462 (setq js2-ts-dirty-line nil)
5463 (throw 'return js2-EOL))
5464 ((not (js2-js-space-p c))
5465 (if (/= c ?-) ; in case end of HTML comment
5466 (setq js2-ts-dirty-line t))
5467 (setq continue nil))))
5468 ;; Assume the token will be 1 char - fixed up below.
5469 (js2-ts-set-char-token-bounds token)
5470 (when (eq c ?@)
5471 (throw 'return js2-XMLATTR))
5472 ;; identifier/keyword/instanceof?
5473 ;; watch out for starting with a <backslash>
5474 (cond
5475 ((eq c ?\\)
5476 (setq c (js2-get-char))
5477 (if (eq c ?u)
5478 (setq identifier-start t
5479 is-unicode-escape-start t
5480 js2-ts-string-buffer nil)
5481 (setq identifier-start nil)
5482 (js2-unget-char)
5483 (setq c ?\\)))
5484 (t
5485 (when (setq identifier-start (js2-identifier-start-p c))
5486 (setq js2-ts-string-buffer nil)
5487 (js2-add-to-string c))))
5488 (when identifier-start
5489 (setq contains-escape is-unicode-escape-start)
5490 (catch 'break
5491 (while t
5492 (if is-unicode-escape-start
5493 ;; strictly speaking we should probably push-back
5494 ;; all the bad characters if the <backslash>uXXXX
5495 ;; sequence is malformed. But since there isn't a
5496 ;; correct context(is there?) for a bad Unicode
5497 ;; escape sequence in an identifier, we can report
5498 ;; an error here.
5499 (progn
5500 (setq escape-val 0)
5501 (dotimes (_ 4)
5502 (setq c (js2-get-char)
5503 escape-val (js2-x-digit-to-int c escape-val))
5504 ;; Next check takes care of c < 0 and bad escape
5505 (if (minusp escape-val)
5506 (throw 'break nil)))
5507 (if (minusp escape-val)
5508 (js2-report-scan-error "msg.invalid.escape" t))
5509 (js2-add-to-string escape-val)
5510 (setq is-unicode-escape-start nil))
5511 (setq c (js2-get-char))
5512 (cond
5513 ((eq c ?\\)
5514 (setq c (js2-get-char))
5515 (if (eq c ?u)
5516 (setq is-unicode-escape-start t
5517 contains-escape t)
5518 (js2-report-scan-error "msg.illegal.character" t)))
5519 (t
5520 (if (or (eq c js2-EOF_CHAR)
5521 (not (js2-identifier-part-p c)))
5522 (throw 'break nil))
5523 (js2-add-to-string c))))))
5524 (js2-unget-char)
5525 (setf str (js2-collect-string js2-ts-string-buffer)
5526 (js2-token-end token) js2-ts-cursor)
5527 ;; FIXME: Invalid in ES5 and ES6, see
5528 ;; https://bugzilla.mozilla.org/show_bug.cgi?id=694360
5529 ;; Probably should just drop this conditional.
5530 (unless contains-escape
5531 ;; OPT we shouldn't have to make a string (object!) to
5532 ;; check if it's a keyword.
5533 ;; Return the corresponding token if it's a keyword
5534 (when (setq result (js2-string-to-keyword str))
5535 (if (and (< js2-language-version 170)
5536 (memq result '(js2-LET js2-YIELD)))
5537 ;; LET and YIELD are tokens only in 1.7 and later
5538 (setq result 'js2-NAME))
5539 (when (eq result 'js2-RESERVED)
5540 (setf (js2-token-string token) str))
5541 (throw 'return (js2-tt-code result))))
5542 ;; If we want to intern these as Rhino does, just use (intern str)
5543 (setf (js2-token-string token) str)
5544 (throw 'return js2-NAME)) ; end identifier/kwd check
5545 ;; is it a number?
5546 (when (or (js2-digit-p c)
5547 (and (eq c ?.) (js2-digit-p (js2-peek-char))))
5548 (setq js2-ts-string-buffer nil
5549 base 10)
5550 (when (eq c ?0)
5551 (setq c (js2-get-char))
5552 (cond
5553 ((or (eq c ?x) (eq c ?X))
5554 (setq base 16)
5555 (setq c (js2-get-char)))
5556 ((and (or (eq c ?b) (eq c ?B))
5557 (>= js2-language-version 200))
5558 (setq base 2)
5559 (setq c (js2-get-char)))
5560 ((and (or (eq c ?o) (eq c ?O))
5561 (>= js2-language-version 200))
5562 (setq base 8)
5563 (setq c (js2-get-char)))
5564 ((js2-digit-p c)
5565 (setq base 'maybe-8))
5566 (t
5567 (js2-add-to-string ?0))))
5568 (cond
5569 ((eq base 16)
5570 (if (> 0 (js2-x-digit-to-int c 0))
5571 (js2-report-scan-error "msg.missing.hex.digits")
5572 (while (<= 0 (js2-x-digit-to-int c 0))
5573 (js2-add-to-string c)
5574 (setq c (js2-get-char)))))
5575 ((eq base 2)
5576 (if (not (memq c '(?0 ?1)))
5577 (js2-report-scan-error "msg.missing.binary.digits")
5578 (while (memq c '(?0 ?1))
5579 (js2-add-to-string c)
5580 (setq c (js2-get-char)))))
5581 ((eq base 8)
5582 (if (or (> ?0 c) (< ?7 c))
5583 (js2-report-scan-error "msg.missing.octal.digits")
5584 (while (and (<= ?0 c) (>= ?7 c))
5585 (js2-add-to-string c)
5586 (setq c (js2-get-char)))))
5587 (t
5588 (while (and (<= ?0 c) (<= c ?9))
5589 ;; We permit 08 and 09 as decimal numbers, which
5590 ;; makes our behavior a superset of the ECMA
5591 ;; numeric grammar. We might not always be so
5592 ;; permissive, so we warn about it.
5593 (when (and (eq base 'maybe-8) (>= c ?8))
5594 (js2-report-warning "msg.bad.octal.literal"
5595 (if (eq c ?8) "8" "9"))
5596 (setq base 10))
5597 (js2-add-to-string c)
5598 (setq c (js2-get-char)))
5599 (when (eq base 'maybe-8)
5600 (setq base 8))))
5601 (when (and (eq base 10) (memq c '(?. ?e ?E)))
5602 (when (eq c ?.)
5603 (loop do
5604 (js2-add-to-string c)
5605 (setq c (js2-get-char))
5606 while (js2-digit-p c)))
5607 (when (memq c '(?e ?E))
5608 (js2-add-to-string c)
5609 (setq c (js2-get-char))
5610 (when (memq c '(?+ ?-))
5611 (js2-add-to-string c)
5612 (setq c (js2-get-char)))
5613 (unless (js2-digit-p c)
5614 (js2-report-scan-error "msg.missing.exponent" t))
5615 (loop do
5616 (js2-add-to-string c)
5617 (setq c (js2-get-char))
5618 while (js2-digit-p c))))
5619 (js2-unget-char)
5620 (let ((str (js2-set-string-from-buffer token)))
5621 (setf (js2-token-number token)
5622 (js2-string-to-number str base)))
5623 (throw 'return js2-NUMBER))
5624 ;; is it a string?
5625 (when (memq c '(?\" ?\'))
5626 ;; We attempt to accumulate a string the fast way, by
5627 ;; building it directly out of the reader. But if there
5628 ;; are any escaped characters in the string, we revert to
5629 ;; building it out of a string buffer.
5630 (setq quote-char c
5631 js2-ts-string-buffer nil
5632 c (js2-get-char))
5633 (catch 'break
5634 (while (/= c quote-char)
5635 (catch 'continue
5636 (when (or (eq c ?\n) (eq c js2-EOF_CHAR))
5637 (js2-unget-char)
5638 (setf (js2-token-end token) js2-ts-cursor)
5639 (js2-report-error "msg.unterminated.string.lit")
5640 (throw 'return js2-STRING))
5641 (when (eq c ?\\)
5642 ;; We've hit an escaped character
5643 (setq c (js2-get-char))
5644 (case c
5645 (?b (setq c ?\b))
5646 (?f (setq c ?\f))
5647 (?n (setq c ?\n))
5648 (?r (setq c ?\r))
5649 (?t (setq c ?\t))
5650 (?v (setq c ?\v))
5651 (?u
5652 (setq c1 (js2-read-unicode-escape))
5653 (if js2-parse-ide-mode
5654 (if c1
5655 (progn
5656 ;; just copy the string in IDE-mode
5657 (js2-add-to-string ?\\)
5658 (js2-add-to-string ?u)
5659 (dotimes (_ 3)
5660 (js2-add-to-string (js2-get-char)))
5661 (setq c (js2-get-char))) ; added at end of loop
5662 ;; flag it as an invalid escape
5663 (js2-report-warning "msg.invalid.escape"
5664 nil (- js2-ts-cursor 2) 6))
5665 ;; Get 4 hex digits; if the u escape is not
5666 ;; followed by 4 hex digits, use 'u' + the
5667 ;; literal character sequence that follows.
5668 (js2-add-to-string ?u)
5669 (setq escape-val 0)
5670 (dotimes (_ 4)
5671 (setq c (js2-get-char)
5672 escape-val (js2-x-digit-to-int c escape-val))
5673 (if (minusp escape-val)
5674 (throw 'continue nil))
5675 (js2-add-to-string c))
5676 ;; prepare for replace of stored 'u' sequence by escape value
5677 (setq js2-ts-string-buffer (nthcdr 5 js2-ts-string-buffer)
5678 c escape-val)))
5679 (?x
5680 ;; Get 2 hex digits, defaulting to 'x'+literal
5681 ;; sequence, as above.
5682 (setq c (js2-get-char)
5683 escape-val (js2-x-digit-to-int c 0))
5684 (if (minusp escape-val)
5685 (progn
5686 (js2-add-to-string ?x)
5687 (throw 'continue nil))
5688 (setq c1 c
5689 c (js2-get-char)
5690 escape-val (js2-x-digit-to-int c escape-val))
5691 (if (minusp escape-val)
5692 (progn
5693 (js2-add-to-string ?x)
5694 (js2-add-to-string c1)
5695 (throw 'continue nil))
5696 ;; got 2 hex digits
5697 (setq c escape-val))))
5698 (?\n
5699 ;; Remove line terminator after escape to follow
5700 ;; SpiderMonkey and C/C++
5701 (setq c (js2-get-char))
5702 (throw 'continue nil))
5703 (t
5704 (when (and (<= ?0 c) (< c ?8))
5705 (setq val (- c ?0)
5706 c (js2-get-char))
5707 (when (and (<= ?0 c) (< c ?8))
5708 (setq val (- (+ (* 8 val) c) ?0)
5709 c (js2-get-char))
5710 (when (and (<= ?0 c)
5711 (< c ?8)
5712 (< val #o37))
5713 ;; c is 3rd char of octal sequence only
5714 ;; if the resulting val <= 0377
5715 (setq val (- (+ (* 8 val) c) ?0)
5716 c (js2-get-char))))
5717 (js2-unget-char)
5718 (setq c val)))))
5719 (js2-add-to-string c)
5720 (setq c (js2-get-char)))))
5721 (js2-set-string-from-buffer token)
5722 (throw 'return js2-STRING))
5723 (js2-ts-return token
5724 (case c
5725 (?\;
5726 (throw 'return js2-SEMI))
5727 (?\[
5728 (throw 'return js2-LB))
5729 (?\]
5730 (throw 'return js2-RB))
5731 (?{
5732 (throw 'return js2-LC))
5733 (?}
5734 (throw 'return js2-RC))
5735 (?\(
5736 (throw 'return js2-LP))
5737 (?\)
5738 (throw 'return js2-RP))
5739 (?,
5740 (throw 'return js2-COMMA))
5741 (??
5742 (throw 'return js2-HOOK))
5743 (?:
5744 (if (js2-match-char ?:)
5745 js2-COLONCOLON
5746 (throw 'return js2-COLON)))
5747 (?.
5748 (if (js2-match-char ?.)
5749 (if (js2-match-char ?.)
5750 js2-TRIPLEDOT js2-DOTDOT)
5751 (if (js2-match-char ?\()
5752 js2-DOTQUERY
5753 (throw 'return js2-DOT))))
5754 (?|
5755 (if (js2-match-char ?|)
5756 (throw 'return js2-OR)
5757 (if (js2-match-char ?=)
5758 js2-ASSIGN_BITOR
5759 (throw 'return js2-BITOR))))
5760 (?^
5761 (if (js2-match-char ?=)
5762 js2-ASSIGN_BITOR
5763 (throw 'return js2-BITXOR)))
5764 (?&
5765 (if (js2-match-char ?&)
5766 (throw 'return js2-AND)
5767 (if (js2-match-char ?=)
5768 js2-ASSIGN_BITAND
5769 (throw 'return js2-BITAND))))
5770 (?=
5771 (if (js2-match-char ?=)
5772 (if (js2-match-char ?=)
5773 js2-SHEQ
5774 (throw 'return js2-EQ))
5775 (if (js2-match-char ?>)
5776 (js2-ts-return token js2-ARROW)
5777 (throw 'return js2-ASSIGN))))
5778 (?!
5779 (if (js2-match-char ?=)
5780 (if (js2-match-char ?=)
5781 js2-SHNE
5782 js2-NE)
5783 (throw 'return js2-NOT)))
5784 (?<
5785 ;; NB:treat HTML begin-comment as comment-till-eol
5786 (when (js2-match-char ?!)
5787 (when (js2-match-char ?-)
5788 (when (js2-match-char ?-)
5789 (js2-skip-line)
5790 (setf (js2-token-comment-type (js2-current-token)) 'html)
5791 (throw 'return js2-COMMENT)))
5792 (js2-unget-char))
5793 (if (js2-match-char ?<)
5794 (if (js2-match-char ?=)
5795 js2-ASSIGN_LSH
5796 js2-LSH)
5797 (if (js2-match-char ?=)
5798 js2-LE
5799 (throw 'return js2-LT))))
5800 (?>
5801 (if (js2-match-char ?>)
5802 (if (js2-match-char ?>)
5803 (if (js2-match-char ?=)
5804 js2-ASSIGN_URSH
5805 js2-URSH)
5806 (if (js2-match-char ?=)
5807 js2-ASSIGN_RSH
5808 js2-RSH))
5809 (if (js2-match-char ?=)
5810 js2-GE
5811 (throw 'return js2-GT))))
5812 (?*
5813 (if (js2-match-char ?=)
5814 js2-ASSIGN_MUL
5815 (throw 'return js2-MUL)))
5816 (?/
5817 ;; is it a // comment?
5818 (when (js2-match-char ?/)
5819 (setf (js2-token-beg token) (- js2-ts-cursor 2))
5820 (js2-skip-line)
5821 (setf (js2-token-comment-type token) 'line)
5822 ;; include newline so highlighting goes to end of window
5823 (incf (js2-token-end token))
5824 (throw 'return js2-COMMENT))
5825 ;; is it a /* comment?
5826 (when (js2-match-char ?*)
5827 (setf look-for-slash nil
5828 (js2-token-beg token) (- js2-ts-cursor 2)
5829 (js2-token-comment-type token)
5830 (if (js2-match-char ?*)
5831 (progn
5832 (setq look-for-slash t)
5833 'jsdoc)
5834 'block))
5835 (while t
5836 (setq c (js2-get-char))
5837 (cond
5838 ((eq c js2-EOF_CHAR)
5839 (setf (js2-token-end token) (1- js2-ts-cursor))
5840 (js2-report-error "msg.unterminated.comment")
5841 (throw 'return js2-COMMENT))
5842 ((eq c ?*)
5843 (setq look-for-slash t))
5844 ((eq c ?/)
5845 (if look-for-slash
5846 (js2-ts-return token js2-COMMENT)))
5847 (t
5848 (setf look-for-slash nil
5849 (js2-token-end token) js2-ts-cursor)))))
5850 (if (js2-match-char ?=)
5851 js2-ASSIGN_DIV
5852 (throw 'return js2-DIV)))
5853 (?#
5854 (when js2-skip-preprocessor-directives
5855 (js2-skip-line)
5856 (setf (js2-token-comment-type token) 'preprocessor
5857 (js2-token-end token) js2-ts-cursor)
5858 (throw 'return js2-COMMENT))
5859 (throw 'return js2-ERROR))
5860 (?%
5861 (if (js2-match-char ?=)
5862 js2-ASSIGN_MOD
5863 (throw 'return js2-MOD)))
5864 (?~
5865 (throw 'return js2-BITNOT))
5866 (?+
5867 (if (js2-match-char ?=)
5868 js2-ASSIGN_ADD
5869 (if (js2-match-char ?+)
5870 js2-INC
5871 (throw 'return js2-ADD))))
5872 (?-
5873 (cond
5874 ((js2-match-char ?=)
5875 (setq c js2-ASSIGN_SUB))
5876 ((js2-match-char ?-)
5877 (unless js2-ts-dirty-line
5878 ;; treat HTML end-comment after possible whitespace
5879 ;; after line start as comment-until-eol
5880 (when (js2-match-char ?>)
5881 (js2-skip-line)
5882 (setf (js2-token-comment-type (js2-current-token)) 'html)
5883 (throw 'return js2-COMMENT)))
5884 (setq c js2-DEC))
5885 (t
5886 (setq c js2-SUB)))
5887 (setq js2-ts-dirty-line t)
5888 c)
5889 (otherwise
5890 (js2-report-scan-error "msg.illegal.character")))))))
5891 (setf (js2-token-type token) tt)
5892 token))
5893
5894 (defsubst js2-string-to-number (str base)
5895 ;; TODO: Maybe port ScriptRuntime.stringToNumber.
5896 (condition-case nil
5897 (string-to-number str base)
5898 (overflow-error -1)))
5899
5900 (defun js2-read-regexp (start-tt)
5901 "Called by parser when it gets / or /= in literal context."
5902 (let (c err
5903 in-class ; inside a '[' .. ']' character-class
5904 flags
5905 (continue t)
5906 (token (js2-new-token 0)))
5907 (setq js2-ts-string-buffer nil)
5908 (if (eq start-tt js2-ASSIGN_DIV)
5909 ;; mis-scanned /=
5910 (js2-add-to-string ?=)
5911 (if (not (eq start-tt js2-DIV))
5912 (error "failed assertion")))
5913 (while (and (not err)
5914 (or (/= (setq c (js2-get-char)) ?/)
5915 in-class))
5916 (cond
5917 ((or (= c ?\n)
5918 (= c js2-EOF_CHAR))
5919 (setf (js2-token-end token) (1- js2-ts-cursor)
5920 err t
5921 (js2-token-string token) (js2-collect-string js2-ts-string-buffer))
5922 (js2-report-error "msg.unterminated.re.lit"))
5923 (t (cond
5924 ((= c ?\\)
5925 (js2-add-to-string c)
5926 (setq c (js2-get-char)))
5927 ((= c ?\[)
5928 (setq in-class t))
5929 ((= c ?\])
5930 (setq in-class nil)))
5931 (js2-add-to-string c))))
5932 (unless err
5933 (while continue
5934 (cond
5935 ((js2-match-char ?g)
5936 (push ?g flags))
5937 ((js2-match-char ?i)
5938 (push ?i flags))
5939 ((js2-match-char ?m)
5940 (push ?m flags))
5941 (t
5942 (setq continue nil))))
5943 (if (js2-alpha-p (js2-peek-char))
5944 (js2-report-scan-error "msg.invalid.re.flag" t
5945 js2-ts-cursor 1))
5946 (js2-set-string-from-buffer token)
5947 ;; tell `parse-partial-sexp' to ignore this range of chars
5948 (js2-record-text-property (js2-current-token-beg)
5949 (js2-current-token-end) 'syntax-class '(2)))
5950 (js2-collect-string flags)))
5951
5952 (defun js2-get-first-xml-token ()
5953 (setq js2-ts-xml-open-tags-count 0
5954 js2-ts-is-xml-attribute nil
5955 js2-ts-xml-is-tag-content nil)
5956 (js2-unget-char)
5957 (js2-get-next-xml-token))
5958
5959 (defun js2-xml-discard-string (token)
5960 "Throw away the string in progress and flag an XML parse error."
5961 (setf js2-ts-string-buffer nil
5962 (js2-token-string token) nil)
5963 (js2-report-scan-error "msg.XML.bad.form" t))
5964
5965 (defun js2-get-next-xml-token ()
5966 (setq js2-ts-string-buffer nil) ; for recording the XML
5967 (let ((token (js2-new-token 0))
5968 c result)
5969 (setq result
5970 (catch 'return
5971 (while t
5972 (setq c (js2-get-char))
5973 (cond
5974 ((= c js2-EOF_CHAR)
5975 (throw 'return js2-ERROR))
5976 (js2-ts-xml-is-tag-content
5977 (case c
5978 (?>
5979 (js2-add-to-string c)
5980 (setq js2-ts-xml-is-tag-content nil
5981 js2-ts-is-xml-attribute nil))
5982 (?/
5983 (js2-add-to-string c)
5984 (when (eq ?> (js2-peek-char))
5985 (setq c (js2-get-char))
5986 (js2-add-to-string c)
5987 (setq js2-ts-xml-is-tag-content nil)
5988 (decf js2-ts-xml-open-tags-count)))
5989 (?{
5990 (js2-unget-char)
5991 (js2-set-string-from-buffer token)
5992 (throw 'return js2-XML))
5993 ((?\' ?\")
5994 (js2-add-to-string c)
5995 (unless (js2-read-quoted-string c token)
5996 (throw 'return js2-ERROR)))
5997 (?=
5998 (js2-add-to-string c)
5999 (setq js2-ts-is-xml-attribute t))
6000 ((? ?\t ?\r ?\n)
6001 (js2-add-to-string c))
6002 (t
6003 (js2-add-to-string c)
6004 (setq js2-ts-is-xml-attribute nil)))
6005 (when (and (not js2-ts-xml-is-tag-content)
6006 (zerop js2-ts-xml-open-tags-count))
6007 (js2-set-string-from-buffer token)
6008 (throw 'return js2-XMLEND)))
6009 (t
6010 ;; else not tag content
6011 (case c
6012 (?<
6013 (js2-add-to-string c)
6014 (setq c (js2-peek-char))
6015 (case c
6016 (?!
6017 (setq c (js2-get-char)) ;; skip !
6018 (js2-add-to-string c)
6019 (setq c (js2-peek-char))
6020 (case c
6021 (?-
6022 (setq c (js2-get-char)) ;; skip -
6023 (js2-add-to-string c)
6024 (if (eq c ?-)
6025 (progn
6026 (js2-add-to-string c)
6027 (unless (js2-read-xml-comment token)
6028 (throw 'return js2-ERROR)))
6029 (js2-xml-discard-string token)
6030 (throw 'return js2-ERROR)))
6031 (?\[
6032 (setq c (js2-get-char)) ;; skip [
6033 (js2-add-to-string c)
6034 (if (and (= (js2-get-char) ?C)
6035 (= (js2-get-char) ?D)
6036 (= (js2-get-char) ?A)
6037 (= (js2-get-char) ?T)
6038 (= (js2-get-char) ?A)
6039 (= (js2-get-char) ?\[))
6040 (progn
6041 (js2-add-to-string ?C)
6042 (js2-add-to-string ?D)
6043 (js2-add-to-string ?A)
6044 (js2-add-to-string ?T)
6045 (js2-add-to-string ?A)
6046 (js2-add-to-string ?\[)
6047 (unless (js2-read-cdata token)
6048 (throw 'return js2-ERROR)))
6049 (js2-xml-discard-string token)
6050 (throw 'return js2-ERROR)))
6051 (t
6052 (unless (js2-read-entity token)
6053 (throw 'return js2-ERROR))))
6054 ;; Allow bare CDATA section, e.g.:
6055 ;; let xml = <![CDATA[ foo bar baz ]]>;
6056 (when (zerop js2-ts-xml-open-tags-count)
6057 (throw 'return js2-XMLEND)))
6058 (??
6059 (setq c (js2-get-char)) ;; skip ?
6060 (js2-add-to-string c)
6061 (unless (js2-read-PI token)
6062 (throw 'return js2-ERROR)))
6063 (?/
6064 ;; end tag
6065 (setq c (js2-get-char)) ;; skip /
6066 (js2-add-to-string c)
6067 (when (zerop js2-ts-xml-open-tags-count)
6068 (js2-xml-discard-string token)
6069 (throw 'return js2-ERROR))
6070 (setq js2-ts-xml-is-tag-content t)
6071 (decf js2-ts-xml-open-tags-count))
6072 (t
6073 ;; start tag
6074 (setq js2-ts-xml-is-tag-content t)
6075 (incf js2-ts-xml-open-tags-count))))
6076 (?{
6077 (js2-unget-char)
6078 (js2-set-string-from-buffer token)
6079 (throw 'return js2-XML))
6080 (t
6081 (js2-add-to-string c))))))))
6082 (setf (js2-token-end token) js2-ts-cursor)
6083 (setf (js2-token-type token) result)
6084 result))
6085
6086 (defun js2-read-quoted-string (quote token)
6087 (let (c)
6088 (catch 'return
6089 (while (/= (setq c (js2-get-char)) js2-EOF_CHAR)
6090 (js2-add-to-string c)
6091 (if (eq c quote)
6092 (throw 'return t)))
6093 (js2-xml-discard-string token) ;; throw away string in progress
6094 nil)))
6095
6096 (defun js2-read-xml-comment (token)
6097 (let ((c (js2-get-char)))
6098 (catch 'return
6099 (while (/= c js2-EOF_CHAR)
6100 (catch 'continue
6101 (js2-add-to-string c)
6102 (when (and (eq c ?-) (eq ?- (js2-peek-char)))
6103 (setq c (js2-get-char))
6104 (js2-add-to-string c)
6105 (if (eq (js2-peek-char) ?>)
6106 (progn
6107 (setq c (js2-get-char)) ;; skip >
6108 (js2-add-to-string c)
6109 (throw 'return t))
6110 (throw 'continue nil)))
6111 (setq c (js2-get-char))))
6112 (js2-xml-discard-string token)
6113 nil)))
6114
6115 (defun js2-read-cdata (token)
6116 (let ((c (js2-get-char)))
6117 (catch 'return
6118 (while (/= c js2-EOF_CHAR)
6119 (catch 'continue
6120 (js2-add-to-string c)
6121 (when (and (eq c ?\]) (eq (js2-peek-char) ?\]))
6122 (setq c (js2-get-char))
6123 (js2-add-to-string c)
6124 (if (eq (js2-peek-char) ?>)
6125 (progn
6126 (setq c (js2-get-char)) ;; Skip >
6127 (js2-add-to-string c)
6128 (throw 'return t))
6129 (throw 'continue nil)))
6130 (setq c (js2-get-char))))
6131 (js2-xml-discard-string token)
6132 nil)))
6133
6134 (defun js2-read-entity (token)
6135 (let ((decl-tags 1)
6136 c)
6137 (catch 'return
6138 (while (/= js2-EOF_CHAR (setq c (js2-get-char)))
6139 (js2-add-to-string c)
6140 (case c
6141 (?<
6142 (incf decl-tags))
6143 (?>
6144 (decf decl-tags)
6145 (if (zerop decl-tags)
6146 (throw 'return t)))))
6147 (js2-xml-discard-string token)
6148 nil)))
6149
6150 (defun js2-read-PI (token)
6151 "Scan an XML processing instruction."
6152 (let (c)
6153 (catch 'return
6154 (while (/= js2-EOF_CHAR (setq c (js2-get-char)))
6155 (js2-add-to-string c)
6156 (when (and (eq c ??) (eq (js2-peek-char) ?>))
6157 (setq c (js2-get-char)) ;; Skip >
6158 (js2-add-to-string c)
6159 (throw 'return t)))
6160 (js2-xml-discard-string token)
6161 nil)))
6162
6163 ;;; Highlighting
6164
6165 (defun js2-set-face (beg end face &optional record)
6166 "Fontify a region. If RECORD is non-nil, record for later."
6167 (when (plusp js2-highlight-level)
6168 (setq beg (min (point-max) beg)
6169 beg (max (point-min) beg)
6170 end (min (point-max) end)
6171 end (max (point-min) end))
6172 (if record
6173 (push (list beg end face) js2-mode-fontifications)
6174 (put-text-property beg end 'font-lock-face face))))
6175
6176 (defsubst js2-clear-face (beg end)
6177 (remove-text-properties beg end '(font-lock-face nil
6178 help-echo nil
6179 point-entered nil
6180 c-in-sws nil)))
6181
6182 (defconst js2-ecma-global-props
6183 (concat "^"
6184 (regexp-opt
6185 '("Infinity" "NaN" "undefined" "arguments") t)
6186 "$")
6187 "Value properties of the Ecma-262 Global Object.
6188 Shown at or above `js2-highlight-level' 2.")
6189
6190 ;; might want to add the name "arguments" to this list?
6191 (defconst js2-ecma-object-props
6192 (concat "^"
6193 (regexp-opt
6194 '("prototype" "__proto__" "__parent__") t)
6195 "$")
6196 "Value properties of the Ecma-262 Object constructor.
6197 Shown at or above `js2-highlight-level' 2.")
6198
6199 (defconst js2-ecma-global-funcs
6200 (concat
6201 "^"
6202 (regexp-opt
6203 '("decodeURI" "decodeURIComponent" "encodeURI" "encodeURIComponent"
6204 "eval" "isFinite" "isNaN" "parseFloat" "parseInt") t)
6205 "$")
6206 "Function properties of the Ecma-262 Global object.
6207 Shown at or above `js2-highlight-level' 2.")
6208
6209 (defconst js2-ecma-number-props
6210 (concat "^"
6211 (regexp-opt '("MAX_VALUE" "MIN_VALUE" "NaN"
6212 "NEGATIVE_INFINITY"
6213 "POSITIVE_INFINITY") t)
6214 "$")
6215 "Properties of the Ecma-262 Number constructor.
6216 Shown at or above `js2-highlight-level' 2.")
6217
6218 (defconst js2-ecma-date-props "^\\(parse\\|UTC\\)$"
6219 "Properties of the Ecma-262 Date constructor.
6220 Shown at or above `js2-highlight-level' 2.")
6221
6222 (defconst js2-ecma-math-props
6223 (concat "^"
6224 (regexp-opt
6225 '("E" "LN10" "LN2" "LOG2E" "LOG10E" "PI" "SQRT1_2" "SQRT2")
6226 t)
6227 "$")
6228 "Properties of the Ecma-262 Math object.
6229 Shown at or above `js2-highlight-level' 2.")
6230
6231 (defconst js2-ecma-math-funcs
6232 (concat "^"
6233 (regexp-opt
6234 '("abs" "acos" "asin" "atan" "atan2" "ceil" "cos" "exp" "floor"
6235 "log" "max" "min" "pow" "random" "round" "sin" "sqrt" "tan") t)
6236 "$")
6237 "Function properties of the Ecma-262 Math object.
6238 Shown at or above `js2-highlight-level' 2.")
6239
6240 (defconst js2-ecma-function-props
6241 (concat
6242 "^"
6243 (regexp-opt
6244 '(;; properties of the Object prototype object
6245 "hasOwnProperty" "isPrototypeOf" "propertyIsEnumerable"
6246 "toLocaleString" "toString" "valueOf"
6247 ;; properties of the Function prototype object
6248 "apply" "call"
6249 ;; properties of the Array prototype object
6250 "concat" "join" "pop" "push" "reverse" "shift" "slice" "sort"
6251 "splice" "unshift"
6252 ;; properties of the String prototype object
6253 "charAt" "charCodeAt" "fromCharCode" "indexOf" "lastIndexOf"
6254 "localeCompare" "match" "replace" "search" "split" "substring"
6255 "toLocaleLowerCase" "toLocaleUpperCase" "toLowerCase"
6256 "toUpperCase"
6257 ;; properties of the Number prototype object
6258 "toExponential" "toFixed" "toPrecision"
6259 ;; properties of the Date prototype object
6260 "getDate" "getDay" "getFullYear" "getHours" "getMilliseconds"
6261 "getMinutes" "getMonth" "getSeconds" "getTime"
6262 "getTimezoneOffset" "getUTCDate" "getUTCDay" "getUTCFullYear"
6263 "getUTCHours" "getUTCMilliseconds" "getUTCMinutes" "getUTCMonth"
6264 "getUTCSeconds" "setDate" "setFullYear" "setHours"
6265 "setMilliseconds" "setMinutes" "setMonth" "setSeconds" "setTime"
6266 "setUTCDate" "setUTCFullYear" "setUTCHours" "setUTCMilliseconds"
6267 "setUTCMinutes" "setUTCMonth" "setUTCSeconds" "toDateString"
6268 "toLocaleDateString" "toLocaleString" "toLocaleTimeString"
6269 "toTimeString" "toUTCString"
6270 ;; properties of the RegExp prototype object
6271 "exec" "test"
6272 ;; properties of the JSON prototype object
6273 "parse" "stringify"
6274 ;; SpiderMonkey/Rhino extensions, versions 1.5+
6275 "toSource" "__defineGetter__" "__defineSetter__"
6276 "__lookupGetter__" "__lookupSetter__" "__noSuchMethod__"
6277 "every" "filter" "forEach" "lastIndexOf" "map" "some")
6278 t)
6279 "$")
6280 "Built-in functions defined by Ecma-262 and SpiderMonkey extensions.
6281 Shown at or above `js2-highlight-level' 3.")
6282
6283 (defun js2-parse-highlight-prop-get (parent target prop call-p)
6284 (let ((target-name (and target
6285 (js2-name-node-p target)
6286 (js2-name-node-name target)))
6287 (prop-name (if prop (js2-name-node-name prop)))
6288 (level2 (>= js2-highlight-level 2))
6289 (level3 (>= js2-highlight-level 3)))
6290 (when level2
6291 (let ((face
6292 (if call-p
6293 (cond
6294 ((and target prop)
6295 (cond
6296 ((and level3 (string-match js2-ecma-function-props prop-name))
6297 'font-lock-builtin-face)
6298 ((and target-name prop)
6299 (cond
6300 ((string= target-name "Date")
6301 (if (string-match js2-ecma-date-props prop-name)
6302 'font-lock-builtin-face))
6303 ((string= target-name "Math")
6304 (if (string-match js2-ecma-math-funcs prop-name)
6305 'font-lock-builtin-face))))))
6306 (prop
6307 (if (string-match js2-ecma-global-funcs prop-name)
6308 'font-lock-builtin-face)))
6309 (cond
6310 ((and target prop)
6311 (cond
6312 ((string= target-name "Number")
6313 (if (string-match js2-ecma-number-props prop-name)
6314 'font-lock-constant-face))
6315 ((string= target-name "Math")
6316 (if (string-match js2-ecma-math-props prop-name)
6317 'font-lock-constant-face))))
6318 (prop
6319 (if (string-match js2-ecma-object-props prop-name)
6320 'font-lock-constant-face))))))
6321 (when face
6322 (let ((pos (+ (js2-node-pos parent) ; absolute
6323 (js2-node-pos prop)))) ; relative
6324 (js2-set-face pos
6325 (+ pos (js2-node-len prop))
6326 face 'record)))))))
6327
6328 (defun js2-parse-highlight-member-expr-node (node)
6329 "Perform syntax highlighting of EcmaScript built-in properties.
6330 The variable `js2-highlight-level' governs this highighting."
6331 (let (face target prop name pos end parent call-p callee)
6332 (cond
6333 ;; case 1: simple name, e.g. foo
6334 ((js2-name-node-p node)
6335 (setq name (js2-name-node-name node))
6336 ;; possible for name to be nil in rare cases - saw it when
6337 ;; running js2-mode on an elisp buffer. Might as well try to
6338 ;; make it so js2-mode never barfs.
6339 (when name
6340 (setq face (if (string-match js2-ecma-global-props name)
6341 'font-lock-constant-face))
6342 (when face
6343 (setq pos (js2-node-pos node)
6344 end (+ pos (js2-node-len node)))
6345 (js2-set-face pos end face 'record))))
6346 ;; case 2: property access or function call
6347 ((or (js2-prop-get-node-p node)
6348 ;; highlight function call if expr is a prop-get node
6349 ;; or a plain name (i.e. unqualified function call)
6350 (and (setq call-p (js2-call-node-p node))
6351 (setq callee (js2-call-node-target node)) ; separate setq!
6352 (or (js2-prop-get-node-p callee)
6353 (js2-name-node-p callee))))
6354 (setq parent node
6355 node (if call-p callee node))
6356 (if (and call-p (js2-name-node-p callee))
6357 (setq prop callee)
6358 (setq target (js2-prop-get-node-left node)
6359 prop (js2-prop-get-node-right node)))
6360 (cond
6361 ((js2-name-node-p prop)
6362 ;; case 2(a&c): simple or complex target, simple name, e.g. x[y].bar
6363 (js2-parse-highlight-prop-get parent target prop call-p))
6364 ((js2-name-node-p target)
6365 ;; case 2b: simple target, complex name, e.g. foo.x[y]
6366 (js2-parse-highlight-prop-get parent target nil call-p)))))))
6367
6368 (defun js2-parse-highlight-member-expr-fn-name (expr)
6369 "Highlight the `baz' in function foo.bar.baz(args) {...}.
6370 This is experimental Rhino syntax. EXPR is the foo.bar.baz member expr.
6371 We currently only handle the case where the last component is a prop-get
6372 of a simple name. Called before EXPR has a parent node."
6373 (let (pos
6374 (name (and (js2-prop-get-node-p expr)
6375 (js2-prop-get-node-right expr))))
6376 (when (js2-name-node-p name)
6377 (js2-set-face (setq pos (+ (js2-node-pos expr) ; parent is absolute
6378 (js2-node-pos name)))
6379 (+ pos (js2-node-len name))
6380 'font-lock-function-name-face
6381 'record))))
6382
6383 ;; source: http://jsdoc.sourceforge.net/
6384 ;; Note - this syntax is for Google's enhanced jsdoc parser that
6385 ;; allows type specifications, and needs work before entering the wild.
6386
6387 (defconst js2-jsdoc-param-tag-regexp
6388 (concat "^\\s-*\\*+\\s-*\\(@"
6389 "\\(?:param\\|argument\\)"
6390 "\\)"
6391 "\\s-*\\({[^}]+}\\)?" ; optional type
6392 "\\s-*\\[?\\([[:alnum:]_$\.]+\\)?\\]?" ; name
6393 "\\>")
6394 "Matches jsdoc tags with optional type and optional param name.")
6395
6396 (defconst js2-jsdoc-typed-tag-regexp
6397 (concat "^\\s-*\\*+\\s-*\\(@\\(?:"
6398 (regexp-opt
6399 '("enum"
6400 "extends"
6401 "field"
6402 "id"
6403 "implements"
6404 "lends"
6405 "mods"
6406 "requires"
6407 "return"
6408 "returns"
6409 "throw"
6410 "throws"))
6411 "\\)\\)\\s-*\\({[^}]+}\\)?")
6412 "Matches jsdoc tags with optional type.")
6413
6414 (defconst js2-jsdoc-arg-tag-regexp
6415 (concat "^\\s-*\\*+\\s-*\\(@\\(?:"
6416 (regexp-opt
6417 '("alias"
6418 "augments"
6419 "borrows"
6420 "bug"
6421 "base"
6422 "config"
6423 "default"
6424 "define"
6425 "exception"
6426 "function"
6427 "member"
6428 "memberOf"
6429 "name"
6430 "namespace"
6431 "property"
6432 "since"
6433 "suppress"
6434 "this"
6435 "throws"
6436 "type"
6437 "version"))
6438 "\\)\\)\\s-+\\([^ \t]+\\)")
6439 "Matches jsdoc tags with a single argument.")
6440
6441 (defconst js2-jsdoc-empty-tag-regexp
6442 (concat "^\\s-*\\*+\\s-*\\(@\\(?:"
6443 (regexp-opt
6444 '("addon"
6445 "author"
6446 "class"
6447 "const"
6448 "constant"
6449 "constructor"
6450 "constructs"
6451 "deprecated"
6452 "desc"
6453 "description"
6454 "event"
6455 "example"
6456 "exec"
6457 "export"
6458 "fileoverview"
6459 "final"
6460 "function"
6461 "hidden"
6462 "ignore"
6463 "implicitCast"
6464 "inheritDoc"
6465 "inner"
6466 "interface"
6467 "license"
6468 "noalias"
6469 "noshadow"
6470 "notypecheck"
6471 "override"
6472 "owner"
6473 "preserve"
6474 "preserveTry"
6475 "private"
6476 "protected"
6477 "public"
6478 "static"
6479 "supported"
6480 ))
6481 "\\)\\)\\s-*")
6482 "Matches empty jsdoc tags.")
6483
6484 (defconst js2-jsdoc-link-tag-regexp
6485 "{\\(@\\(?:link\\|code\\)\\)\\s-+\\([^#}\n]+\\)\\(#.+\\)?}"
6486 "Matches a jsdoc link or code tag.")
6487
6488 (defconst js2-jsdoc-see-tag-regexp
6489 "^\\s-*\\*+\\s-*\\(@see\\)\\s-+\\([^#}\n]+\\)\\(#.+\\)?"
6490 "Matches a jsdoc @see tag.")
6491
6492 (defconst js2-jsdoc-html-tag-regexp
6493 "\\(</?\\)\\([[:alpha:]]+\\)\\s-*\\(/?>\\)"
6494 "Matches a simple (no attributes) html start- or end-tag.")
6495
6496 (defun js2-jsdoc-highlight-helper ()
6497 (js2-set-face (match-beginning 1)
6498 (match-end 1)
6499 'js2-jsdoc-tag)
6500 (if (match-beginning 2)
6501 (if (save-excursion
6502 (goto-char (match-beginning 2))
6503 (= (char-after) ?{))
6504 (js2-set-face (1+ (match-beginning 2))
6505 (1- (match-end 2))
6506 'js2-jsdoc-type)
6507 (js2-set-face (match-beginning 2)
6508 (match-end 2)
6509 'js2-jsdoc-value)))
6510 (if (match-beginning 3)
6511 (js2-set-face (match-beginning 3)
6512 (match-end 3)
6513 'js2-jsdoc-value)))
6514
6515 (defun js2-highlight-jsdoc (ast)
6516 "Highlight doc comment tags."
6517 (let ((comments (js2-ast-root-comments ast))
6518 beg end)
6519 (save-excursion
6520 (dolist (node comments)
6521 (when (eq (js2-comment-node-format node) 'jsdoc)
6522 (setq beg (js2-node-abs-pos node)
6523 end (+ beg (js2-node-len node)))
6524 (save-restriction
6525 (narrow-to-region beg end)
6526 (dolist (re (list js2-jsdoc-param-tag-regexp
6527 js2-jsdoc-typed-tag-regexp
6528 js2-jsdoc-arg-tag-regexp
6529 js2-jsdoc-link-tag-regexp
6530 js2-jsdoc-see-tag-regexp
6531 js2-jsdoc-empty-tag-regexp))
6532 (goto-char beg)
6533 (while (re-search-forward re nil t)
6534 (js2-jsdoc-highlight-helper)))
6535 ;; simple highlighting for html tags
6536 (goto-char beg)
6537 (while (re-search-forward js2-jsdoc-html-tag-regexp nil t)
6538 (js2-set-face (match-beginning 1)
6539 (match-end 1)
6540 'js2-jsdoc-html-tag-delimiter)
6541 (js2-set-face (match-beginning 2)
6542 (match-end 2)
6543 'js2-jsdoc-html-tag-name)
6544 (js2-set-face (match-beginning 3)
6545 (match-end 3)
6546 'js2-jsdoc-html-tag-delimiter))))))))
6547
6548 (defun js2-highlight-assign-targets (_node left right)
6549 "Highlight function properties and external variables."
6550 (let (leftpos name)
6551 ;; highlight vars and props assigned function values
6552 (when (js2-function-node-p right)
6553 (cond
6554 ;; var foo = function() {...}
6555 ((js2-name-node-p left)
6556 (setq name left))
6557 ;; foo.bar.baz = function() {...}
6558 ((and (js2-prop-get-node-p left)
6559 (js2-name-node-p (js2-prop-get-node-right left)))
6560 (setq name (js2-prop-get-node-right left))))
6561 (when name
6562 (js2-set-face (setq leftpos (js2-node-abs-pos name))
6563 (+ leftpos (js2-node-len name))
6564 'font-lock-function-name-face
6565 'record)))))
6566
6567 (defun js2-record-name-node (node)
6568 "Saves NODE to `js2-recorded-identifiers' to check for undeclared variables
6569 later. NODE must be a name node."
6570 (let ((leftpos (js2-node-abs-pos node)))
6571 (push (list node js2-current-scope
6572 leftpos
6573 (+ leftpos (js2-node-len node)))
6574 js2-recorded-identifiers)))
6575
6576 (defun js2-highlight-undeclared-vars ()
6577 "After entire parse is finished, look for undeclared variable references.
6578 We have to wait until entire buffer is parsed, since JavaScript permits var
6579 decls to occur after they're used.
6580
6581 If any undeclared var name is in `js2-externs' or `js2-additional-externs',
6582 it is considered declared."
6583 (let (name)
6584 (dolist (entry js2-recorded-identifiers)
6585 (destructuring-bind (name-node scope pos end) entry
6586 (setq name (js2-name-node-name name-node))
6587 (unless (or (member name js2-global-externs)
6588 (member name js2-default-externs)
6589 (member name js2-additional-externs)
6590 (js2-get-defining-scope scope name))
6591 (js2-report-warning "msg.undeclared.variable" name pos (- end pos)
6592 'js2-external-variable))))
6593 (setq js2-recorded-identifiers nil)))
6594
6595 (defun js2-set-default-externs ()
6596 "Set the value of `js2-default-externs' based on the various
6597 `js2-include-?-externs' variables."
6598 (setq js2-default-externs
6599 (append js2-ecma-262-externs
6600 (if js2-include-browser-externs js2-browser-externs)
6601 (if js2-include-rhino-externs js2-rhino-externs)
6602 (if js2-include-node-externs js2-node-externs)
6603 (if (or js2-include-browser-externs js2-include-node-externs)
6604 js2-typed-array-externs))))
6605
6606 (defun js2-apply-jslint-globals ()
6607 (setq js2-additional-externs
6608 (nconc (js2-get-jslint-globals)
6609 js2-additional-externs)))
6610
6611 (defun js2-get-jslint-globals ()
6612 (loop for node in (js2-ast-root-comments js2-mode-ast)
6613 when (and (eq 'block (js2-comment-node-format node))
6614 (save-excursion
6615 (goto-char (js2-node-abs-pos node))
6616 (looking-at "/\\*global ")))
6617 append (js2-get-jslint-globals-in
6618 (match-end 0)
6619 (js2-node-abs-end node))))
6620
6621 (defun js2-get-jslint-globals-in (beg end)
6622 (let (res)
6623 (save-excursion
6624 (goto-char beg)
6625 (while (re-search-forward js2-mode-identifier-re end t)
6626 (let ((match (match-string 0)))
6627 (unless (member match '("true" "false"))
6628 (push match res)))))
6629 (nreverse res)))
6630
6631 ;;; IMenu support
6632
6633 ;; We currently only support imenu, but eventually should support speedbar and
6634 ;; possibly other browsing mechanisms.
6635
6636 ;; The basic strategy is to identify function assignment targets of the form
6637 ;; `foo.bar.baz', convert them to (list fn foo bar baz <position>), and push the
6638 ;; list into `js2-imenu-recorder'. The lists are merged into a trie-like tree
6639 ;; for imenu after parsing is finished.
6640
6641 ;; A `foo.bar.baz' assignment target may be expressed in many ways in
6642 ;; JavaScript, and the general problem is undecidable. However, several forms
6643 ;; are readily recognizable at parse-time; the forms we attempt to recognize
6644 ;; include:
6645
6646 ;; function foo() -- function declaration
6647 ;; foo = function() -- function expression assigned to variable
6648 ;; foo.bar.baz = function() -- function expr assigned to nested property-get
6649 ;; foo = {bar: function()} -- fun prop in object literal assigned to var
6650 ;; foo = {bar: {baz: function()}} -- inside nested object literal
6651 ;; foo.bar = {baz: function()}} -- obj lit assigned to nested prop get
6652 ;; a.b = {c: {d: function()}} -- nested obj lit assigned to nested prop get
6653 ;; foo = {get bar() {...}} -- getter/setter in obj literal
6654 ;; function foo() {function bar() {...}} -- nested function
6655 ;; foo['a'] = function() -- fun expr assigned to deterministic element-get
6656
6657 ;; This list boils down to a few forms that can be combined recursively.
6658 ;; Top-level named function declarations include both the left-hand (name)
6659 ;; and the right-hand (function value) expressions needed to produce an imenu
6660 ;; entry. The other "right-hand" forms we need to look for are:
6661 ;; - functions declared as props/getters/setters in object literals
6662 ;; - nested named function declarations
6663 ;; The "left-hand" expressions that functions can be assigned to include:
6664 ;; - local/global variables
6665 ;; - nested property-get expressions like a.b.c.d
6666 ;; - element gets like foo[10] or foo['bar'] where the index
6667 ;; expression can be trivially converted to a property name. They
6668 ;; effectively then become property gets.
6669
6670 ;; All the different definition types are canonicalized into the form
6671 ;; foo.bar.baz = position-of-function-keyword
6672
6673 ;; We need to build a trie-like structure for imenu. As an example,
6674 ;; consider the following JavaScript code:
6675
6676 ;; a = function() {...} // function at position 5
6677 ;; b = function() {...} // function at position 25
6678 ;; foo = function() {...} // function at position 100
6679 ;; foo.bar = function() {...} // function at position 200
6680 ;; foo.bar.baz = function() {...} // function at position 300
6681 ;; foo.bar.zab = function() {...} // function at position 400
6682
6683 ;; During parsing we accumulate an entry for each definition in
6684 ;; the variable `js2-imenu-recorder', like so:
6685
6686 ;; '((fn a 5)
6687 ;; (fn b 25)
6688 ;; (fn foo 100)
6689 ;; (fn foo bar 200)
6690 ;; (fn foo bar baz 300)
6691 ;; (fn foo bar zab 400))
6692
6693 ;; Where 'fn' is the respective function node.
6694 ;; After parsing these entries are merged into this alist-trie:
6695
6696 ;; '((a . 1)
6697 ;; (b . 2)
6698 ;; (foo (<definition> . 3)
6699 ;; (bar (<definition> . 6)
6700 ;; (baz . 100)
6701 ;; (zab . 200))))
6702
6703 ;; Note the wacky need for a <definition> name. The token can be anything
6704 ;; that isn't a valid JavaScript identifier, because you might make foo
6705 ;; a function and then start setting properties on it that are also functions.
6706
6707 (defun js2-prop-node-name (node)
6708 "Return the name of a node that may be a property-get/property-name.
6709 If NODE is not a valid name-node, string-node or integral number-node,
6710 returns nil. Otherwise returns the string name/value of the node."
6711 (cond
6712 ((js2-name-node-p node)
6713 (js2-name-node-name node))
6714 ((js2-string-node-p node)
6715 (js2-string-node-value node))
6716 ((and (js2-number-node-p node)
6717 (string-match "^[0-9]+$" (js2-number-node-value node)))
6718 (js2-number-node-value node))
6719 ((js2-this-node-p node)
6720 "this")))
6721
6722 (defun js2-node-qname-component (node)
6723 "Return the name of this node, if it contributes to a qname.
6724 Returns nil if the node doesn't contribute."
6725 (copy-sequence
6726 (or (js2-prop-node-name node)
6727 (if (and (js2-function-node-p node)
6728 (js2-function-node-name node))
6729 (js2-name-node-name (js2-function-node-name node))))))
6730
6731 (defun js2-record-imenu-entry (fn-node qname pos)
6732 "Add an entry to `js2-imenu-recorder'.
6733 FN-NODE should be the current item's function node.
6734
6735 Associate FN-NODE with its QNAME for later lookup.
6736 This is used in postprocessing the chain list. For each chain, we find
6737 the parent function, look up its qname, then prepend a copy of it to the chain."
6738 (push (cons fn-node (append qname (list pos))) js2-imenu-recorder)
6739 (unless js2-imenu-function-map
6740 (setq js2-imenu-function-map (make-hash-table :test 'eq)))
6741 (puthash fn-node qname js2-imenu-function-map))
6742
6743 (defun js2-record-imenu-functions (node &optional var)
6744 "Record function definitions for imenu.
6745 NODE is a function node or an object literal.
6746 VAR, if non-nil, is the expression that NODE is being assigned to.
6747 When passed arguments of wrong type, does nothing."
6748 (when js2-parse-ide-mode
6749 (let ((fun-p (js2-function-node-p node))
6750 qname fname-node)
6751 (cond
6752 ;; non-anonymous function declaration?
6753 ((and fun-p
6754 (not var)
6755 (setq fname-node (js2-function-node-name node)))
6756 (js2-record-imenu-entry node (list fname-node) (js2-node-pos node)))
6757 ;; for remaining forms, compute left-side tree branch first
6758 ((and var (setq qname (js2-compute-nested-prop-get var)))
6759 (cond
6760 ;; foo.bar.baz = function
6761 (fun-p
6762 (js2-record-imenu-entry node qname (js2-node-pos node)))
6763 ;; foo.bar.baz = object-literal
6764 ;; look for nested functions: {a: {b: function() {...} }}
6765 ((js2-object-node-p node)
6766 ;; Node position here is still absolute, since the parser
6767 ;; passes the assignment target and value expressions
6768 ;; to us before they are added as children of the assignment node.
6769 (js2-record-object-literal node qname (js2-node-pos node)))))))))
6770
6771 (defun js2-compute-nested-prop-get (node)
6772 "If NODE is of form foo.bar, foo['bar'], or any nested combination, return
6773 component nodes as a list. Otherwise return nil. Element-gets are treated
6774 as property-gets if the index expression is a string, or a positive integer."
6775 (let (left right head)
6776 (cond
6777 ((or (js2-name-node-p node)
6778 (js2-this-node-p node))
6779 (list node))
6780 ;; foo.bar.baz is parenthesized as (foo.bar).baz => right operand is a leaf
6781 ((js2-prop-get-node-p node) ; foo.bar
6782 (setq left (js2-prop-get-node-left node)
6783 right (js2-prop-get-node-right node))
6784 (if (setq head (js2-compute-nested-prop-get left))
6785 (nconc head (list right))))
6786 ((js2-elem-get-node-p node) ; foo['bar'] or foo[101]
6787 (setq left (js2-elem-get-node-target node)
6788 right (js2-elem-get-node-element node))
6789 (if (or (js2-string-node-p right) ; ['bar']
6790 (and (js2-number-node-p right) ; [10]
6791 (string-match "^[0-9]+$"
6792 (js2-number-node-value right))))
6793 (if (setq head (js2-compute-nested-prop-get left))
6794 (nconc head (list right))))))))
6795
6796 (defun js2-record-object-literal (node qname pos)
6797 "Recursively process an object literal looking for functions.
6798 NODE is an object literal that is the right-hand child of an assignment
6799 expression. QNAME is a list of nodes representing the assignment target,
6800 e.g. for foo.bar.baz = {...}, QNAME is (foo-node bar-node baz-node).
6801 POS is the absolute position of the node.
6802 We do a depth-first traversal of NODE. For any functions we find,
6803 we append the property name to QNAME, then call `js2-record-imenu-entry'."
6804 (let (right)
6805 (dolist (e (js2-object-node-elems node)) ; e is a `js2-object-prop-node'
6806 (let ((left (js2-infix-node-left e))
6807 ;; Element positions are relative to the parent position.
6808 (pos (+ pos (js2-node-pos e))))
6809 (cond
6810 ;; foo: function() {...}
6811 ((js2-function-node-p (setq right (js2-infix-node-right e)))
6812 (when (js2-prop-node-name left)
6813 ;; As a policy decision, we record the position of the property,
6814 ;; not the position of the `function' keyword, since the property
6815 ;; is effectively the name of the function.
6816 (js2-record-imenu-entry right (append qname (list left)) pos)))
6817 ;; foo: {object-literal} -- add foo to qname, offset position, and recurse
6818 ((js2-object-node-p right)
6819 (js2-record-object-literal right
6820 (append qname (list (js2-infix-node-left e)))
6821 (+ pos (js2-node-pos right)))))))))
6822
6823 (defun js2-node-top-level-decl-p (node)
6824 "Return t if NODE's name is defined in the top-level scope.
6825 Also returns t if NODE's name is not defined in any scope, since it implies
6826 that it's an external variable, which must also be in the top-level scope."
6827 (let* ((name (js2-prop-node-name node))
6828 (this-scope (js2-node-get-enclosing-scope node))
6829 defining-scope)
6830 (cond
6831 ((js2-this-node-p node)
6832 nil)
6833 ((null this-scope)
6834 t)
6835 ((setq defining-scope (js2-get-defining-scope this-scope name))
6836 (js2-ast-root-p defining-scope))
6837 (t t))))
6838
6839 (defun js2-wrapper-function-p (node)
6840 "Return t if NODE is a function expression that's immediately invoked.
6841 NODE must be `js2-function-node'."
6842 (let ((parent (js2-node-parent node)))
6843 (or
6844 ;; function(){...}();
6845 (js2-call-node-p parent)
6846 (and (js2-paren-node-p parent)
6847 ;; (function(){...})();
6848 (or (js2-call-node-p (setq parent (js2-node-parent parent)))
6849 ;; (function(){...}).call(this);
6850 (and (js2-prop-get-node-p parent)
6851 (member (js2-name-node-name (js2-prop-get-node-right parent))
6852 '("call" "apply"))
6853 (js2-call-node-p (js2-node-parent parent))))))))
6854
6855 (defun js2-browse-postprocess-chains (entries)
6856 "Modify function-declaration name chains after parsing finishes.
6857 Some of the information is only available after the parse tree is complete.
6858 For instance, processing a nested scope requires a parent function node."
6859 (let (result fn parent-qname p elem)
6860 (dolist (entry entries)
6861 ;; function node goes first
6862 (destructuring-bind (current-fn &rest (&whole chain head &rest)) entry
6863 ;; Examine head's defining scope:
6864 ;; Pre-processed chain, or top-level/external, keep as-is.
6865 (if (or (stringp head) (js2-node-top-level-decl-p head))
6866 (push chain result)
6867 (when (js2-this-node-p head)
6868 (setq chain (cdr chain))) ; discard this-node
6869 (when (setq fn (js2-node-parent-script-or-fn current-fn))
6870 (setq parent-qname (gethash fn js2-imenu-function-map 'not-found))
6871 (when (eq parent-qname 'not-found)
6872 ;; anonymous function expressions are not recorded
6873 ;; during the parse, so we need to handle this case here
6874 (setq parent-qname
6875 (if (js2-wrapper-function-p fn)
6876 (let ((grandparent (js2-node-parent-script-or-fn fn)))
6877 (if (js2-ast-root-p grandparent)
6878 nil
6879 (gethash grandparent js2-imenu-function-map 'skip)))
6880 'skip))
6881 (puthash fn parent-qname js2-imenu-function-map))
6882 (unless (eq parent-qname 'skip)
6883 ;; prefix parent fn qname to this chain.
6884 (let ((qname (append parent-qname chain)))
6885 (puthash current-fn (butlast qname) js2-imenu-function-map)
6886 (push qname result)))))))
6887 ;; finally replace each node in each chain with its name.
6888 (dolist (chain result)
6889 (setq p chain)
6890 (while p
6891 (if (js2-node-p (setq elem (car p)))
6892 (setcar p (js2-node-qname-component elem)))
6893 (setq p (cdr p))))
6894 result))
6895
6896 ;; Merge name chains into a trie-like tree structure of nested lists.
6897 ;; To simplify construction of the trie, we first build it out using the rule
6898 ;; that the trie consists of lists of pairs. Each pair is a 2-element array:
6899 ;; [key, num-or-list]. The second element can be a number; if so, this key
6900 ;; is a leaf-node with only one value. (I.e. there is only one declaration
6901 ;; associated with the key at this level.) Otherwise the second element is
6902 ;; a list of pairs, with the rule applied recursively. This symmetry permits
6903 ;; a simple recursive formulation.
6904 ;;
6905 ;; js2-mode is building the data structure for imenu. The imenu documentation
6906 ;; claims that it's the structure above, but in practice it wants the children
6907 ;; at the same list level as the key for that level, which is how I've drawn
6908 ;; the "Expected final result" above. We'll postprocess the trie to remove the
6909 ;; list wrapper around the children at each level.
6910 ;;
6911 ;; A completed nested imenu-alist entry looks like this:
6912 ;; '(("foo"
6913 ;; ("<definition>" . 7)
6914 ;; ("bar"
6915 ;; ("a" . 40)
6916 ;; ("b" . 60))))
6917 ;;
6918 ;; In particular, the documentation for `imenu--index-alist' says that
6919 ;; a nested sub-alist element looks like (INDEX-NAME SUB-ALIST).
6920 ;; The sub-alist entries immediately follow INDEX-NAME, the head of the list.
6921
6922 (defun js2-treeify (lst)
6923 "Convert (a b c d) to (a ((b ((c d)))))."
6924 (if (null (cddr lst)) ; list length <= 2
6925 lst
6926 (list (car lst) (list (js2-treeify (cdr lst))))))
6927
6928 (defun js2-build-alist-trie (chains trie)
6929 "Merge declaration name chains into a trie-like alist structure for imenu.
6930 CHAINS is the qname chain list produced during parsing. TRIE is a
6931 list of elements built up so far."
6932 (let (head tail pos branch kids)
6933 (dolist (chain chains)
6934 (setq head (car chain)
6935 tail (cdr chain)
6936 pos (if (numberp (car tail)) (car tail))
6937 branch (js2-find-if (lambda (n)
6938 (string= (car n) head))
6939 trie)
6940 kids (second branch))
6941 (cond
6942 ;; case 1: this key isn't in the trie yet
6943 ((null branch)
6944 (if trie
6945 (setcdr (last trie) (list (js2-treeify chain)))
6946 (setq trie (list (js2-treeify chain)))))
6947 ;; case 2: key is present with a single number entry: replace w/ list
6948 ;; ("a1" 10) + ("a1" 20) => ("a1" (("<definition>" 10)
6949 ;; ("<definition>" 20)))
6950 ((numberp kids)
6951 (setcar (cdr branch)
6952 (list (list "<definition-1>" kids)
6953 (if pos
6954 (list "<definition-2>" pos)
6955 (js2-treeify tail)))))
6956 ;; case 3: key is there (with kids), and we're a number entry
6957 (pos
6958 (setcdr (last kids)
6959 (list
6960 (list (format "<definition-%d>"
6961 (1+ (loop for kid in kids
6962 count (eq ?< (aref (car kid) 0)))))
6963 pos))))
6964 ;; case 4: key is there with kids, need to merge in our chain
6965 (t
6966 (js2-build-alist-trie (list tail) kids))))
6967 trie))
6968
6969 (defun js2-flatten-trie (trie)
6970 "Convert TRIE to imenu-format.
6971 Recurses through nodes, and for each one whose second element is a list,
6972 appends the list's flattened elements to the current element. Also
6973 changes the tails into conses. For instance, this pre-flattened trie
6974
6975 '(a ((b 20)
6976 (c ((d 30)
6977 (e 40)))))
6978
6979 becomes
6980
6981 '(a (b . 20)
6982 (c (d . 30)
6983 (e . 40)))
6984
6985 Note that the root of the trie has no key, just a list of chains.
6986 This is also true for the value of any key with multiple children,
6987 e.g. key 'c' in the example above."
6988 (cond
6989 ((listp (car trie))
6990 (mapcar #'js2-flatten-trie trie))
6991 (t
6992 (if (numberp (second trie))
6993 (cons (car trie) (second trie))
6994 ;; else pop list and append its kids
6995 (apply #'append (list (car trie)) (js2-flatten-trie (cdr trie)))))))
6996
6997 (defun js2-build-imenu-index ()
6998 "Turn `js2-imenu-recorder' into an imenu data structure."
6999 (unless (eq js2-imenu-recorder 'empty)
7000 (let* ((chains (js2-browse-postprocess-chains js2-imenu-recorder))
7001 (result (js2-build-alist-trie chains nil)))
7002 (js2-flatten-trie result))))
7003
7004 (defun js2-test-print-chains (chains)
7005 "Print a list of qname chains.
7006 Each element of CHAINS is a list of the form (NODE [NODE *] pos);
7007 i.e. one or more nodes, and an integer position as the list tail."
7008 (mapconcat (lambda (chain)
7009 (concat "("
7010 (mapconcat (lambda (elem)
7011 (if (js2-node-p elem)
7012 (or (js2-node-qname-component elem)
7013 "nil")
7014 (number-to-string elem)))
7015 chain
7016 " ")
7017 ")"))
7018 chains
7019 "\n"))
7020
7021 ;;; Parser
7022
7023 (defconst js2-version "1.8.5"
7024 "Version of JavaScript supported.")
7025
7026 (defun js2-record-face (face &optional token)
7027 "Record a style run of FACE for TOKEN or the current token."
7028 (unless token (setq token (js2-current-token)))
7029 (js2-set-face (js2-token-beg token) (js2-token-end token) face 'record))
7030
7031 (defsubst js2-node-end (n)
7032 "Computes the absolute end of node N.
7033 Use with caution! Assumes `js2-node-pos' is -absolute-, which
7034 is only true until the node is added to its parent; i.e., while parsing."
7035 (+ (js2-node-pos n)
7036 (js2-node-len n)))
7037
7038 (defun js2-record-comment (token)
7039 "Record a comment in `js2-scanned-comments'."
7040 (let ((ct (js2-token-comment-type token))
7041 (beg (js2-token-beg token))
7042 (end (js2-token-end token)))
7043 (push (make-js2-comment-node :len (- end beg)
7044 :format ct)
7045 js2-scanned-comments)
7046 (when js2-parse-ide-mode
7047 (js2-record-face (if (eq ct 'jsdoc)
7048 'font-lock-doc-face
7049 'font-lock-comment-face)
7050 token)
7051 (when (memq ct '(html preprocessor))
7052 ;; Tell cc-engine the bounds of the comment.
7053 (js2-record-text-property beg (1- end) 'c-in-sws t)))))
7054
7055 (defun js2-peek-token ()
7056 "Return the next token type without consuming it.
7057 If `js2-ti-lookahead' is positive, return the type of next token
7058 from `js2-ti-tokens'. Otherwise, call `js2-get-token'."
7059 (if (not (zerop js2-ti-lookahead))
7060 (js2-token-type
7061 (aref js2-ti-tokens (mod (1+ js2-ti-tokens-cursor) js2-ti-ntokens)))
7062 (let ((tt (js2-get-token-internal)))
7063 (js2-unget-token)
7064 tt)))
7065
7066 (defalias 'js2-next-token 'js2-get-token)
7067
7068 (defun js2-match-token (match &optional dont-unget)
7069 "Get next token and return t if it matches MATCH, a bytecode.
7070 Returns nil and consumes nothing if MATCH is not the next token."
7071 (if (/= (js2-get-token) match)
7072 (ignore (unless dont-unget (js2-unget-token)))
7073 t))
7074
7075 (defun js2-match-contextual-kwd (name)
7076 "Consume and return t if next token is `js2-NAME', and its
7077 string is NAME. Returns nil and keeps current token otherwise."
7078 (if (or (/= (js2-get-token) js2-NAME)
7079 (not (string= (js2-current-token-string) name)))
7080 (progn
7081 (js2-unget-token)
7082 nil)
7083 (js2-record-face 'font-lock-keyword-face)
7084 t))
7085
7086 (defun js2-valid-prop-name-token (tt)
7087 (or (= tt js2-NAME)
7088 (and js2-allow-keywords-as-property-names
7089 (plusp tt)
7090 (or (= tt js2-RESERVED)
7091 (aref js2-kwd-tokens tt)))))
7092
7093 (defun js2-match-prop-name ()
7094 "Consume token and return t if next token is a valid property name.
7095 It's valid if it's a js2-NAME, or `js2-allow-keywords-as-property-names'
7096 is non-nil and it's a keyword token."
7097 (if (js2-valid-prop-name-token (js2-get-token))
7098 t
7099 (js2-unget-token)
7100 nil))
7101
7102 (defun js2-must-match-prop-name (msg-id &optional pos len)
7103 (if (js2-match-prop-name)
7104 t
7105 (js2-report-error msg-id nil pos len)
7106 nil))
7107
7108 (defun js2-peek-token-or-eol ()
7109 "Return js2-EOL if the next token immediately follows a newline.
7110 Else returns the next token. Used in situations where we don't
7111 consider certain token types valid if they are preceded by a newline.
7112 One example is the postfix ++ or -- operator, which has to be on the
7113 same line as its operand."
7114 (let ((tt (js2-get-token))
7115 (follows-eol (js2-token-follows-eol-p (js2-current-token))))
7116 (js2-unget-token)
7117 (if follows-eol
7118 js2-EOL
7119 tt)))
7120
7121 (defun js2-must-match (token msg-id &optional pos len)
7122 "Match next token to token code TOKEN, or record a syntax error.
7123 MSG-ID is the error message to report if the match fails.
7124 Returns t on match, nil if no match."
7125 (if (js2-match-token token t)
7126 t
7127 (js2-report-error msg-id nil pos len)
7128 (js2-unget-token)
7129 nil))
7130
7131 (defun js2-must-match-name (msg-id)
7132 (if (js2-match-token js2-NAME t)
7133 t
7134 (if (eq (js2-current-token-type) js2-RESERVED)
7135 (js2-report-error "msg.reserved.id" (js2-current-token-string))
7136 (js2-report-error msg-id)
7137 (js2-unget-token))
7138 nil))
7139
7140 (defsubst js2-inside-function ()
7141 (plusp js2-nesting-of-function))
7142
7143 (defun js2-set-requires-activation ()
7144 (if (js2-function-node-p js2-current-script-or-fn)
7145 (setf (js2-function-node-needs-activation js2-current-script-or-fn) t)))
7146
7147 (defun js2-check-activation-name (name _token)
7148 (when (js2-inside-function)
7149 ;; skip language-version 1.2 check from Rhino
7150 (if (or (string= "arguments" name)
7151 (and js2-compiler-activation-names ; only used in codegen
7152 (gethash name js2-compiler-activation-names)))
7153 (js2-set-requires-activation))))
7154
7155 (defun js2-set-is-generator ()
7156 (let ((fn-node js2-current-script-or-fn))
7157 (when (and (js2-function-node-p fn-node)
7158 (not (js2-function-node-generator-type fn-node)))
7159 (setf (js2-function-node-generator-type js2-current-script-or-fn) 'LEGACY))))
7160
7161 (defun js2-must-have-xml ()
7162 (unless js2-compiler-xml-available
7163 (js2-report-error "msg.XML.not.available")))
7164
7165 (defun js2-push-scope (scope)
7166 "Push SCOPE, a `js2-scope', onto the lexical scope chain."
7167 (assert (js2-scope-p scope))
7168 (assert (null (js2-scope-parent-scope scope)))
7169 (assert (not (eq js2-current-scope scope)))
7170 (setf (js2-scope-parent-scope scope) js2-current-scope
7171 js2-current-scope scope))
7172
7173 (defsubst js2-pop-scope ()
7174 (setq js2-current-scope
7175 (js2-scope-parent-scope js2-current-scope)))
7176
7177 (defun js2-enter-loop (loop-node)
7178 (push loop-node js2-loop-set)
7179 (push loop-node js2-loop-and-switch-set)
7180 (js2-push-scope loop-node)
7181 ;; Tell the current labeled statement (if any) its statement,
7182 ;; and set the jump target of the first label to the loop.
7183 ;; These are used in `js2-parse-continue' to verify that the
7184 ;; continue target is an actual labeled loop. (And for codegen.)
7185 (when js2-labeled-stmt
7186 (setf (js2-labeled-stmt-node-stmt js2-labeled-stmt) loop-node
7187 (js2-label-node-loop (car (js2-labeled-stmt-node-labels
7188 js2-labeled-stmt))) loop-node)))
7189
7190 (defun js2-exit-loop ()
7191 (pop js2-loop-set)
7192 (pop js2-loop-and-switch-set)
7193 (js2-pop-scope))
7194
7195 (defsubst js2-enter-switch (switch-node)
7196 (push switch-node js2-loop-and-switch-set))
7197
7198 (defsubst js2-exit-switch ()
7199 (pop js2-loop-and-switch-set))
7200
7201 (defun js2-parse (&optional buf cb)
7202 "Tell the js2 parser to parse a region of JavaScript.
7203
7204 BUF is a buffer or buffer name containing the code to parse.
7205 Call `narrow-to-region' first to parse only part of the buffer.
7206
7207 The returned AST root node is given some additional properties:
7208 `node-count' - total number of nodes in the AST
7209 `buffer' - BUF. The buffer it refers to may change or be killed,
7210 so the value is not necessarily reliable.
7211
7212 An optional callback CB can be specified to report parsing
7213 progress. If `(functionp CB)' returns t, it will be called with
7214 the current line number once before parsing begins, then again
7215 each time the lexer reaches a new line number.
7216
7217 CB can also be a list of the form `(symbol cb ...)' to specify
7218 multiple callbacks with different criteria. Each symbol is a
7219 criterion keyword, and the following element is the callback to
7220 call
7221
7222 :line - called whenever the line number changes
7223 :token - called for each new token consumed
7224
7225 The list of criteria could be extended to include entering or
7226 leaving a statement, an expression, or a function definition."
7227 (if (and cb (not (functionp cb)))
7228 (error "criteria callbacks not yet implemented"))
7229 (let ((inhibit-point-motion-hooks t)
7230 (js2-compiler-xml-available (>= js2-language-version 160))
7231 ;; This is a recursive-descent parser, so give it a big stack.
7232 (max-lisp-eval-depth (max max-lisp-eval-depth 3000))
7233 (max-specpdl-size (max max-specpdl-size 3000))
7234 (case-fold-search nil)
7235 ast)
7236 (with-current-buffer (or buf (current-buffer))
7237 (setq js2-scanned-comments nil
7238 js2-parsed-errors nil
7239 js2-parsed-warnings nil
7240 js2-imenu-recorder nil
7241 js2-imenu-function-map nil
7242 js2-label-set nil)
7243 (js2-init-scanner)
7244 (setq ast (with-silent-modifications
7245 (js2-do-parse)))
7246 (unless js2-ts-hit-eof
7247 (js2-report-error "msg.got.syntax.errors" (length js2-parsed-errors)))
7248 (setf (js2-ast-root-errors ast) js2-parsed-errors
7249 (js2-ast-root-warnings ast) js2-parsed-warnings)
7250 ;; if we didn't find any declarations, put a dummy in this list so we
7251 ;; don't end up re-parsing the buffer in `js2-mode-create-imenu-index'
7252 (unless js2-imenu-recorder
7253 (setq js2-imenu-recorder 'empty))
7254 (run-hooks 'js2-parse-finished-hook)
7255 ast)))
7256
7257 ;; Corresponds to Rhino's Parser.parse() method.
7258 (defun js2-do-parse ()
7259 "Parse current buffer starting from current point.
7260 Scanner should be initialized."
7261 (let ((pos js2-ts-cursor)
7262 (end js2-ts-cursor) ; in case file is empty
7263 root n tt)
7264 ;; initialize buffer-local parsing vars
7265 (setf root (make-js2-ast-root :buffer (buffer-name) :pos pos)
7266 js2-current-script-or-fn root
7267 js2-current-scope root
7268 js2-nesting-of-function 0
7269 js2-labeled-stmt nil
7270 js2-recorded-identifiers nil) ; for js2-highlight
7271 (while (/= (setq tt (js2-get-token)) js2-EOF)
7272 (if (= tt js2-FUNCTION)
7273 (progn
7274 (setq n (if js2-called-by-compile-function
7275 (js2-parse-function-expr)
7276 (js2-parse-function-stmt))))
7277 ;; not a function - parse a statement
7278 (js2-unget-token)
7279 (setq n (js2-parse-statement)))
7280 ;; add function or statement to script
7281 (setq end (js2-node-end n))
7282 (js2-block-node-push root n))
7283 ;; add comments to root in lexical order
7284 (when js2-scanned-comments
7285 ;; if we find a comment beyond end of normal kids, use its end
7286 (setq end (max end (js2-node-end (first js2-scanned-comments))))
7287 (dolist (comment js2-scanned-comments)
7288 (push comment (js2-ast-root-comments root))
7289 (js2-node-add-children root comment)))
7290 (setf (js2-node-len root) (- end pos))
7291 (setq js2-mode-ast root) ; Make sure this is available for callbacks.
7292 ;; Give extensions a chance to muck with things before highlighting starts.
7293 (let ((js2-additional-externs js2-additional-externs))
7294 (save-excursion
7295 (run-hooks 'js2-post-parse-callbacks))
7296 (js2-highlight-undeclared-vars))
7297 root))
7298
7299 (defun js2-parse-function-closure-body (fn-node)
7300 "Parse a JavaScript 1.8 function closure body."
7301 (let ((js2-nesting-of-function (1+ js2-nesting-of-function)))
7302 (if js2-ts-hit-eof
7303 (js2-report-error "msg.no.brace.body" nil
7304 (js2-node-pos fn-node)
7305 (- js2-ts-cursor (js2-node-pos fn-node)))
7306 (js2-node-add-children fn-node
7307 (setf (js2-function-node-body fn-node)
7308 (js2-parse-expr t))))))
7309
7310 (defun js2-parse-function-body (fn-node)
7311 (js2-must-match js2-LC "msg.no.brace.body"
7312 (js2-node-pos fn-node)
7313 (- js2-ts-cursor (js2-node-pos fn-node)))
7314 (let ((pos (js2-current-token-beg)) ; LC position
7315 (pn (make-js2-block-node)) ; starts at LC position
7316 tt
7317 end)
7318 (incf js2-nesting-of-function)
7319 (unwind-protect
7320 (while (not (or (= (setq tt (js2-peek-token)) js2-ERROR)
7321 (= tt js2-EOF)
7322 (= tt js2-RC)))
7323 (js2-block-node-push pn (if (/= tt js2-FUNCTION)
7324 (js2-parse-statement)
7325 (js2-get-token)
7326 (js2-parse-function-stmt))))
7327 (decf js2-nesting-of-function))
7328 (setq end (js2-current-token-end)) ; assume no curly and leave at current token
7329 (if (js2-must-match js2-RC "msg.no.brace.after.body" pos)
7330 (setq end (js2-current-token-end)))
7331 (setf (js2-node-pos pn) pos
7332 (js2-node-len pn) (- end pos))
7333 (setf (js2-function-node-body fn-node) pn)
7334 (js2-node-add-children fn-node pn)
7335 pn))
7336
7337 (defun js2-define-destruct-symbols (node decl-type face &optional ignore-not-in-block)
7338 "Declare and fontify destructuring parameters inside NODE.
7339 NODE is either `js2-array-node', `js2-object-node', or `js2-name-node'."
7340 (cond
7341 ((js2-name-node-p node)
7342 (let (leftpos)
7343 (js2-define-symbol decl-type (js2-name-node-name node)
7344 node ignore-not-in-block)
7345 (when face
7346 (js2-set-face (setq leftpos (js2-node-abs-pos node))
7347 (+ leftpos (js2-node-len node))
7348 face 'record))))
7349 ((js2-object-node-p node)
7350 (dolist (elem (js2-object-node-elems node))
7351 (js2-define-destruct-symbols
7352 (if (js2-object-prop-node-p elem)
7353 (js2-object-prop-node-right elem)
7354 ;; abbreviated destructuring {a, b}
7355 elem)
7356 decl-type face ignore-not-in-block)))
7357 ((js2-array-node-p node)
7358 (dolist (elem (js2-array-node-elems node))
7359 (when elem
7360 (js2-define-destruct-symbols elem decl-type face ignore-not-in-block))))
7361 (t (js2-report-error "msg.no.parm" nil (js2-node-abs-pos node)
7362 (js2-node-len node)))))
7363
7364 (defun js2-parse-function-params (function-type fn-node pos)
7365 (if (js2-match-token js2-RP)
7366 (setf (js2-function-node-rp fn-node) (- (js2-current-token-beg) pos))
7367 (let ((paren-free-arrow (and (eq function-type 'FUNCTION_ARROW)
7368 (eq (js2-current-token-type) js2-NAME)))
7369 params param default-found rest-param-at)
7370 (when paren-free-arrow
7371 (js2-unget-token))
7372 (loop for tt = (js2-peek-token)
7373 do
7374 (cond
7375 ;; destructuring param
7376 ((and (not paren-free-arrow)
7377 (or (= tt js2-LB) (= tt js2-LC)))
7378 (js2-get-token)
7379 (when default-found
7380 (js2-report-error "msg.no.default.after.default.param"))
7381 (setq param (js2-parse-destruct-primary-expr))
7382 (js2-define-destruct-symbols param
7383 js2-LP
7384 'js2-function-param)
7385 (push param params))
7386 ;; variable name
7387 (t
7388 (when (and (>= js2-language-version 200)
7389 (not paren-free-arrow)
7390 (js2-match-token js2-TRIPLEDOT)
7391 (not rest-param-at))
7392 ;; to report errors if there are more parameters
7393 (setq rest-param-at (length params)))
7394 (js2-must-match-name "msg.no.parm")
7395 (js2-record-face 'js2-function-param)
7396 (setq param (js2-create-name-node))
7397 (js2-define-symbol js2-LP (js2-current-token-string) param)
7398 ;; default parameter value
7399 (when (or (and default-found
7400 (not rest-param-at)
7401 (js2-must-match js2-ASSIGN
7402 "msg.no.default.after.default.param"
7403 (js2-node-pos param)
7404 (js2-node-len param)))
7405 (and (>= js2-language-version 200)
7406 (js2-match-token js2-ASSIGN)))
7407 (assert (not paren-free-arrow))
7408 (let* ((pos (js2-node-pos param))
7409 (tt (js2-current-token-type))
7410 (op-pos (- (js2-current-token-beg) pos))
7411 (left param)
7412 (right (js2-parse-assign-expr))
7413 (len (- (js2-node-end right) pos)))
7414 (setq param (make-js2-assign-node
7415 :type tt :pos pos :len len :op-pos op-pos
7416 :left left :right right)
7417 default-found t)
7418 (js2-node-add-children param left right)))
7419 (push param params)))
7420 (when (and rest-param-at (> (length params) (1+ rest-param-at)))
7421 (js2-report-error "msg.param.after.rest" nil
7422 (js2-node-pos param) (js2-node-len param)))
7423 while
7424 (js2-match-token js2-COMMA))
7425 (when (and (not paren-free-arrow)
7426 (js2-must-match js2-RP "msg.no.paren.after.parms"))
7427 (setf (js2-function-node-rp fn-node) (- (js2-current-token-beg) pos)))
7428 (when rest-param-at
7429 (setf (js2-function-node-rest-p fn-node) t))
7430 (dolist (p params)
7431 (js2-node-add-children fn-node p)
7432 (push p (js2-function-node-params fn-node))))))
7433
7434 (defun js2-check-inconsistent-return-warning (fn-node name)
7435 "Possibly show inconsistent-return warning.
7436 Last token scanned is the close-curly for the function body."
7437 (when (and js2-mode-show-strict-warnings
7438 js2-strict-inconsistent-return-warning
7439 (not (js2-has-consistent-return-usage
7440 (js2-function-node-body fn-node))))
7441 ;; Have it extend from close-curly to bol or beginning of block.
7442 (let ((pos (save-excursion
7443 (goto-char (js2-current-token-end))
7444 (max (js2-node-abs-pos (js2-function-node-body fn-node))
7445 (point-at-bol))))
7446 (end (js2-current-token-end)))
7447 (if (plusp (js2-name-node-length name))
7448 (js2-add-strict-warning "msg.no.return.value"
7449 (js2-name-node-name name) pos end)
7450 (js2-add-strict-warning "msg.anon.no.return.value" nil pos end)))))
7451
7452 (defun js2-parse-function-stmt ()
7453 (let ((pos (js2-current-token-beg))
7454 (star-p (js2-match-token js2-MUL)))
7455 (js2-must-match-name "msg.unnamed.function.stmt")
7456 (let ((name (js2-create-name-node t))
7457 pn member-expr)
7458 (cond
7459 ((js2-match-token js2-LP)
7460 (js2-parse-function 'FUNCTION_STATEMENT pos star-p name))
7461 (js2-allow-member-expr-as-function-name
7462 (setq member-expr (js2-parse-member-expr-tail nil name))
7463 (js2-parse-highlight-member-expr-fn-name member-expr)
7464 (js2-must-match js2-LP "msg.no.paren.parms")
7465 (setf pn (js2-parse-function 'FUNCTION_STATEMENT pos star-p)
7466 (js2-function-node-member-expr pn) member-expr)
7467 pn)
7468 (t
7469 (js2-report-error "msg.no.paren.parms")
7470 (make-js2-error-node))))))
7471
7472 (defun js2-parse-function-expr ()
7473 (let ((pos (js2-current-token-beg))
7474 (star-p (js2-match-token js2-MUL))
7475 name)
7476 (when (js2-match-token js2-NAME)
7477 (setq name (js2-create-name-node t)))
7478 (js2-must-match js2-LP "msg.no.paren.parms")
7479 (js2-parse-function 'FUNCTION_EXPRESSION pos star-p name)))
7480
7481 (defun js2-parse-function (function-type pos star-p &optional name)
7482 "Function parser. FUNCTION-TYPE is a symbol, POS is the
7483 beginning of the first token (function keyword, unless it's an
7484 arrow function), NAME is js2-name-node."
7485 (let (fn-node lp)
7486 (if (= (js2-current-token-type) js2-LP) ; eventually matched LP?
7487 (setq lp (js2-current-token-beg)))
7488 (setf fn-node (make-js2-function-node :pos pos
7489 :name name
7490 :form function-type
7491 :lp (if lp (- lp pos))
7492 :generator-type (and star-p 'STAR)))
7493 (when name
7494 (js2-set-face (js2-node-pos name) (js2-node-end name)
7495 'font-lock-function-name-face 'record)
7496 (when (plusp (js2-name-node-length name))
7497 ;; Function statements define a symbol in the enclosing scope
7498 (js2-define-symbol js2-FUNCTION (js2-name-node-name name) fn-node)))
7499 (if (or (js2-inside-function) (plusp js2-nesting-of-with))
7500 ;; 1. Nested functions are not affected by the dynamic scope flag
7501 ;; as dynamic scope is already a parent of their scope.
7502 ;; 2. Functions defined under the with statement also immune to
7503 ;; this setup, in which case dynamic scope is ignored in favor
7504 ;; of the with object.
7505 (setf (js2-function-node-ignore-dynamic fn-node) t))
7506 ;; dynamically bind all the per-function variables
7507 (let ((js2-current-script-or-fn fn-node)
7508 (js2-current-scope fn-node)
7509 (js2-nesting-of-with 0)
7510 (js2-end-flags 0)
7511 js2-label-set
7512 js2-loop-set
7513 js2-loop-and-switch-set)
7514 (js2-parse-function-params function-type fn-node pos)
7515 (when (eq function-type 'FUNCTION_ARROW)
7516 (js2-must-match js2-ARROW "msg.bad.arrow.args"))
7517 (if (and (>= js2-language-version 180)
7518 (/= (js2-peek-token) js2-LC))
7519 (js2-parse-function-closure-body fn-node)
7520 (js2-parse-function-body fn-node))
7521 (js2-check-inconsistent-return-warning fn-node name)
7522
7523 (when name
7524 (js2-node-add-children fn-node name)
7525 ;; Function expressions define a name only in the body of the
7526 ;; function, and only if not hidden by a parameter name
7527 (when (and (eq function-type 'FUNCTION_EXPRESSION)
7528 (null (js2-scope-get-symbol js2-current-scope
7529 (js2-name-node-name name))))
7530 (js2-define-symbol js2-FUNCTION
7531 (js2-name-node-name name)
7532 fn-node))
7533 (when (eq function-type 'FUNCTION_STATEMENT)
7534 (js2-record-imenu-functions fn-node))))
7535
7536 (setf (js2-node-len fn-node) (- js2-ts-cursor pos))
7537 ;; Rhino doesn't do this, but we need it for finding undeclared vars.
7538 ;; We wait until after parsing the function to set its parent scope,
7539 ;; since `js2-define-symbol' needs the defining-scope check to stop
7540 ;; at the function boundary when checking for redeclarations.
7541 (setf (js2-scope-parent-scope fn-node) js2-current-scope)
7542 fn-node))
7543
7544 (defun js2-parse-statements (&optional parent)
7545 "Parse a statement list. Last token consumed must be js2-LC.
7546
7547 PARENT can be a `js2-block-node', in which case the statements are
7548 appended to PARENT. Otherwise a new `js2-block-node' is created
7549 and returned.
7550
7551 This function does not match the closing js2-RC: the caller
7552 matches the RC so it can provide a suitable error message if not
7553 matched. This means it's up to the caller to set the length of
7554 the node to include the closing RC. The node start pos is set to
7555 the absolute buffer start position, and the caller should fix it
7556 up to be relative to the parent node. All children of this block
7557 node are given relative start positions and correct lengths."
7558 (let ((pn (or parent (make-js2-block-node)))
7559 tt)
7560 (setf (js2-node-pos pn) (js2-current-token-beg))
7561 (while (and (> (setq tt (js2-peek-token)) js2-EOF)
7562 (/= tt js2-RC))
7563 (js2-block-node-push pn (js2-parse-statement)))
7564 pn))
7565
7566 (defun js2-parse-statement ()
7567 (let (pn beg end)
7568 ;; coarse-grained user-interrupt check - needs work
7569 (and js2-parse-interruptable-p
7570 (zerop (% (incf js2-parse-stmt-count)
7571 js2-statements-per-pause))
7572 (input-pending-p)
7573 (throw 'interrupted t))
7574 (setq pn (js2-statement-helper))
7575 ;; no-side-effects warning check
7576 (unless (js2-node-has-side-effects pn)
7577 (setq end (js2-node-end pn))
7578 (save-excursion
7579 (goto-char end)
7580 (setq beg (max (js2-node-pos pn) (point-at-bol))))
7581 (js2-add-strict-warning "msg.no.side.effects" nil beg end))
7582 pn))
7583
7584 ;; These correspond to the switch cases in Parser.statementHelper
7585 (defconst js2-parsers
7586 (let ((parsers (make-vector js2-num-tokens
7587 #'js2-parse-expr-stmt)))
7588 (aset parsers js2-BREAK #'js2-parse-break)
7589 (aset parsers js2-CONST #'js2-parse-const-var)
7590 (aset parsers js2-CONTINUE #'js2-parse-continue)
7591 (aset parsers js2-DEBUGGER #'js2-parse-debugger)
7592 (aset parsers js2-DEFAULT #'js2-parse-default-xml-namespace)
7593 (aset parsers js2-DO #'js2-parse-do)
7594 (aset parsers js2-FOR #'js2-parse-for)
7595 (aset parsers js2-FUNCTION #'js2-parse-function-stmt)
7596 (aset parsers js2-IF #'js2-parse-if)
7597 (aset parsers js2-LC #'js2-parse-block)
7598 (aset parsers js2-LET #'js2-parse-let-stmt)
7599 (aset parsers js2-NAME #'js2-parse-name-or-label)
7600 (aset parsers js2-RETURN #'js2-parse-ret-yield)
7601 (aset parsers js2-SEMI #'js2-parse-semi)
7602 (aset parsers js2-SWITCH #'js2-parse-switch)
7603 (aset parsers js2-THROW #'js2-parse-throw)
7604 (aset parsers js2-TRY #'js2-parse-try)
7605 (aset parsers js2-VAR #'js2-parse-const-var)
7606 (aset parsers js2-WHILE #'js2-parse-while)
7607 (aset parsers js2-WITH #'js2-parse-with)
7608 (aset parsers js2-YIELD #'js2-parse-ret-yield)
7609 parsers)
7610 "A vector mapping token types to parser functions.")
7611
7612 (defun js2-parse-warn-missing-semi (beg end)
7613 (and js2-mode-show-strict-warnings
7614 js2-strict-missing-semi-warning
7615 (js2-add-strict-warning
7616 "msg.missing.semi" nil
7617 ;; back up to beginning of statement or line
7618 (max beg (save-excursion
7619 (goto-char end)
7620 (point-at-bol)))
7621 end)))
7622
7623 (defconst js2-no-semi-insertion
7624 (list js2-IF
7625 js2-SWITCH
7626 js2-WHILE
7627 js2-DO
7628 js2-FOR
7629 js2-TRY
7630 js2-WITH
7631 js2-LC
7632 js2-ERROR
7633 js2-SEMI
7634 js2-FUNCTION)
7635 "List of tokens that don't do automatic semicolon insertion.")
7636
7637 (defconst js2-autoinsert-semi-and-warn
7638 (list js2-ERROR js2-EOF js2-RC))
7639
7640 (defun js2-statement-helper ()
7641 (let* ((tt (js2-get-token))
7642 (first-tt tt)
7643 (parser (if (= tt js2-ERROR)
7644 #'js2-parse-semi
7645 (aref js2-parsers tt)))
7646 pn)
7647 ;; If the statement is set, then it's been told its label by now.
7648 (and js2-labeled-stmt
7649 (js2-labeled-stmt-node-stmt js2-labeled-stmt)
7650 (setq js2-labeled-stmt nil))
7651 (setq pn (funcall parser))
7652 ;; Don't do auto semi insertion for certain statement types.
7653 (unless (or (memq first-tt js2-no-semi-insertion)
7654 (js2-labeled-stmt-node-p pn))
7655 (js2-auto-insert-semicolon pn))
7656 pn))
7657
7658 (defun js2-auto-insert-semicolon (pn)
7659 (let* ((tt (js2-get-token))
7660 (pos (js2-node-pos pn)))
7661 (cond
7662 ((= tt js2-SEMI)
7663 ;; extend the node bounds to include the semicolon.
7664 (setf (js2-node-len pn) (- (js2-current-token-end) pos)))
7665 ((memq tt js2-autoinsert-semi-and-warn)
7666 (js2-unget-token) ; Not ';', do not consume.
7667 ;; Autoinsert ;
7668 (js2-parse-warn-missing-semi pos (js2-node-end pn)))
7669 (t
7670 (if (not (js2-token-follows-eol-p (js2-current-token)))
7671 ;; Report error if no EOL or autoinsert ';' otherwise
7672 (js2-report-error "msg.no.semi.stmt")
7673 (js2-parse-warn-missing-semi pos (js2-node-end pn)))
7674 (js2-unget-token) ; Not ';', do not consume.
7675 ))))
7676
7677 (defun js2-parse-condition ()
7678 "Parse a parenthesized boolean expression, e.g. in an if- or while-stmt.
7679 The parens are discarded and the expression node is returned.
7680 The `pos' field of the return value is set to an absolute position
7681 that must be fixed up by the caller.
7682 Return value is a list (EXPR LP RP), with absolute paren positions."
7683 (let (pn lp rp)
7684 (if (js2-must-match js2-LP "msg.no.paren.cond")
7685 (setq lp (js2-current-token-beg)))
7686 (setq pn (js2-parse-expr))
7687 (if (js2-must-match js2-RP "msg.no.paren.after.cond")
7688 (setq rp (js2-current-token-beg)))
7689 ;; Report strict warning on code like "if (a = 7) ..."
7690 (if (and js2-strict-cond-assign-warning
7691 (js2-assign-node-p pn))
7692 (js2-add-strict-warning "msg.equal.as.assign" nil
7693 (js2-node-pos pn)
7694 (+ (js2-node-pos pn)
7695 (js2-node-len pn))))
7696 (list pn lp rp)))
7697
7698 (defun js2-parse-if ()
7699 "Parser for if-statement. Last matched token must be js2-IF."
7700 (let ((pos (js2-current-token-beg))
7701 cond if-true if-false else-pos end pn)
7702 (setq cond (js2-parse-condition)
7703 if-true (js2-parse-statement)
7704 if-false (if (js2-match-token js2-ELSE)
7705 (progn
7706 (setq else-pos (- (js2-current-token-beg) pos))
7707 (js2-parse-statement)))
7708 end (js2-node-end (or if-false if-true))
7709 pn (make-js2-if-node :pos pos
7710 :len (- end pos)
7711 :condition (car cond)
7712 :then-part if-true
7713 :else-part if-false
7714 :else-pos else-pos
7715 :lp (js2-relpos (second cond) pos)
7716 :rp (js2-relpos (third cond) pos)))
7717 (js2-node-add-children pn (car cond) if-true if-false)
7718 pn))
7719
7720 (defun js2-parse-switch ()
7721 "Parser for switch-statement. Last matched token must be js2-SWITCH."
7722 (let ((pos (js2-current-token-beg))
7723 tt pn discriminant has-default case-expr case-node
7724 case-pos cases stmt lp)
7725 (if (js2-must-match js2-LP "msg.no.paren.switch")
7726 (setq lp (js2-current-token-beg)))
7727 (setq discriminant (js2-parse-expr)
7728 pn (make-js2-switch-node :discriminant discriminant
7729 :pos pos
7730 :lp (js2-relpos lp pos)))
7731 (js2-node-add-children pn discriminant)
7732 (js2-enter-switch pn)
7733 (unwind-protect
7734 (progn
7735 (if (js2-must-match js2-RP "msg.no.paren.after.switch")
7736 (setf (js2-switch-node-rp pn) (- (js2-current-token-beg) pos)))
7737 (js2-must-match js2-LC "msg.no.brace.switch")
7738 (catch 'break
7739 (while t
7740 (setq tt (js2-next-token)
7741 case-pos (js2-current-token-beg))
7742 (cond
7743 ((= tt js2-RC)
7744 (setf (js2-node-len pn) (- (js2-current-token-end) pos))
7745 (throw 'break nil)) ; done
7746 ((= tt js2-CASE)
7747 (setq case-expr (js2-parse-expr))
7748 (js2-must-match js2-COLON "msg.no.colon.case"))
7749 ((= tt js2-DEFAULT)
7750 (if has-default
7751 (js2-report-error "msg.double.switch.default"))
7752 (setq has-default t
7753 case-expr nil)
7754 (js2-must-match js2-COLON "msg.no.colon.case"))
7755 (t
7756 (js2-report-error "msg.bad.switch")
7757 (throw 'break nil)))
7758 (setq case-node (make-js2-case-node :pos case-pos
7759 :len (- (js2-current-token-end) case-pos)
7760 :expr case-expr))
7761 (js2-node-add-children case-node case-expr)
7762 (while (and (/= (setq tt (js2-peek-token)) js2-RC)
7763 (/= tt js2-CASE)
7764 (/= tt js2-DEFAULT)
7765 (/= tt js2-EOF))
7766 (setf stmt (js2-parse-statement)
7767 (js2-node-len case-node) (- (js2-node-end stmt) case-pos))
7768 (js2-block-node-push case-node stmt))
7769 (push case-node cases)))
7770 ;; add cases last, as pushing reverses the order to be correct
7771 (dolist (kid cases)
7772 (js2-node-add-children pn kid)
7773 (push kid (js2-switch-node-cases pn)))
7774 pn) ; return value
7775 (js2-exit-switch))))
7776
7777 (defun js2-parse-while ()
7778 "Parser for while-statement. Last matched token must be js2-WHILE."
7779 (let ((pos (js2-current-token-beg))
7780 (pn (make-js2-while-node))
7781 cond body)
7782 (js2-enter-loop pn)
7783 (unwind-protect
7784 (progn
7785 (setf cond (js2-parse-condition)
7786 (js2-while-node-condition pn) (car cond)
7787 body (js2-parse-statement)
7788 (js2-while-node-body pn) body
7789 (js2-node-len pn) (- (js2-node-end body) pos)
7790 (js2-while-node-lp pn) (js2-relpos (second cond) pos)
7791 (js2-while-node-rp pn) (js2-relpos (third cond) pos))
7792 (js2-node-add-children pn body (car cond)))
7793 (js2-exit-loop))
7794 pn))
7795
7796 (defun js2-parse-do ()
7797 "Parser for do-statement. Last matched token must be js2-DO."
7798 (let ((pos (js2-current-token-beg))
7799 (pn (make-js2-do-node))
7800 cond body end)
7801 (js2-enter-loop pn)
7802 (unwind-protect
7803 (progn
7804 (setq body (js2-parse-statement))
7805 (js2-must-match js2-WHILE "msg.no.while.do")
7806 (setf (js2-do-node-while-pos pn) (- (js2-current-token-beg) pos)
7807 cond (js2-parse-condition)
7808 (js2-do-node-condition pn) (car cond)
7809 (js2-do-node-body pn) body
7810 end js2-ts-cursor
7811 (js2-do-node-lp pn) (js2-relpos (second cond) pos)
7812 (js2-do-node-rp pn) (js2-relpos (third cond) pos))
7813 (js2-node-add-children pn (car cond) body))
7814 (js2-exit-loop))
7815 ;; Always auto-insert semicolon to follow SpiderMonkey:
7816 ;; It is required by ECMAScript but is ignored by the rest of
7817 ;; world; see bug 238945
7818 (if (js2-match-token js2-SEMI)
7819 (setq end js2-ts-cursor))
7820 (setf (js2-node-len pn) (- end pos))
7821 pn))
7822
7823 (defun js2-parse-for ()
7824 "Parser for for-statement. Last matched token must be js2-FOR.
7825 Parses for, for-in, and for each-in statements."
7826 (let ((for-pos (js2-current-token-beg))
7827 pn is-for-each is-for-in-or-of is-for-of
7828 in-pos each-pos tmp-pos
7829 init ; Node init is also foo in 'foo in object'
7830 cond ; Node cond is also object in 'foo in object'
7831 incr ; 3rd section of for-loop initializer
7832 body tt lp rp)
7833 ;; See if this is a for each () instead of just a for ()
7834 (when (js2-match-token js2-NAME)
7835 (if (string= "each" (js2-current-token-string))
7836 (progn
7837 (setq is-for-each t
7838 each-pos (- (js2-current-token-beg) for-pos)) ; relative
7839 (js2-record-face 'font-lock-keyword-face))
7840 (js2-report-error "msg.no.paren.for")))
7841 (if (js2-must-match js2-LP "msg.no.paren.for")
7842 (setq lp (- (js2-current-token-beg) for-pos)))
7843 (setq tt (js2-get-token))
7844 ;; 'for' makes local scope
7845 (js2-push-scope (make-js2-scope))
7846 (unwind-protect
7847 ;; parse init clause
7848 (let ((js2-in-for-init t)) ; set as dynamic variable
7849 (cond
7850 ((= tt js2-SEMI)
7851 (js2-unget-token)
7852 (setq init (make-js2-empty-expr-node)))
7853 ((or (= tt js2-VAR) (= tt js2-LET))
7854 (setq init (js2-parse-variables tt (js2-current-token-beg))))
7855 (t
7856 (js2-unget-token)
7857 (setq init (js2-parse-expr)))))
7858 (if (or (js2-match-token js2-IN)
7859 (and (>= js2-language-version 200)
7860 (js2-match-contextual-kwd "of")
7861 (setq is-for-of t)))
7862 (setq is-for-in-or-of t
7863 in-pos (- (js2-current-token-beg) for-pos)
7864 ;; scope of iteration target object is not the scope we've created above.
7865 ;; stash current scope temporary.
7866 cond (let ((js2-current-scope (js2-scope-parent-scope js2-current-scope)))
7867 (js2-parse-expr))) ; object over which we're iterating
7868 ;; else ordinary for loop - parse cond and incr
7869 (js2-must-match js2-SEMI "msg.no.semi.for")
7870 (setq cond (if (= (js2-peek-token) js2-SEMI)
7871 (make-js2-empty-expr-node) ; no loop condition
7872 (js2-parse-expr)))
7873 (js2-must-match js2-SEMI "msg.no.semi.for.cond")
7874 (setq tmp-pos (js2-current-token-end)
7875 incr (if (= (js2-peek-token) js2-RP)
7876 (make-js2-empty-expr-node :pos tmp-pos)
7877 (js2-parse-expr))))
7878 (if (js2-must-match js2-RP "msg.no.paren.for.ctrl")
7879 (setq rp (- (js2-current-token-beg) for-pos)))
7880 (if (not is-for-in-or-of)
7881 (setq pn (make-js2-for-node :init init
7882 :condition cond
7883 :update incr
7884 :lp lp
7885 :rp rp))
7886 ;; cond could be null if 'in obj' got eaten by the init node.
7887 (if (js2-infix-node-p init)
7888 ;; it was (foo in bar) instead of (var foo in bar)
7889 (setq cond (js2-infix-node-right init)
7890 init (js2-infix-node-left init))
7891 (if (and (js2-var-decl-node-p init)
7892 (> (length (js2-var-decl-node-kids init)) 1))
7893 (js2-report-error "msg.mult.index")))
7894 (setq pn (make-js2-for-in-node :iterator init
7895 :object cond
7896 :in-pos in-pos
7897 :foreach-p is-for-each
7898 :each-pos each-pos
7899 :forof-p is-for-of
7900 :lp lp
7901 :rp rp)))
7902 (unwind-protect
7903 (progn
7904 (js2-enter-loop pn)
7905 ;; We have to parse the body -after- creating the loop node,
7906 ;; so that the loop node appears in the js2-loop-set, allowing
7907 ;; break/continue statements to find the enclosing loop.
7908 (setf body (js2-parse-statement)
7909 (js2-loop-node-body pn) body
7910 (js2-node-pos pn) for-pos
7911 (js2-node-len pn) (- (js2-node-end body) for-pos))
7912 (js2-node-add-children pn init cond incr body))
7913 ;; finally
7914 (js2-exit-loop))
7915 (js2-pop-scope))
7916 pn))
7917
7918 (defun js2-parse-try ()
7919 "Parser for try-statement. Last matched token must be js2-TRY."
7920 (let ((try-pos (js2-current-token-beg))
7921 try-end
7922 try-block
7923 catch-blocks
7924 finally-block
7925 saw-default-catch
7926 peek
7927 param
7928 catch-cond
7929 catch-node
7930 guard-kwd
7931 catch-pos
7932 finally-pos
7933 pn
7934 block
7935 lp
7936 rp)
7937 (if (/= (js2-peek-token) js2-LC)
7938 (js2-report-error "msg.no.brace.try"))
7939 (setq try-block (js2-parse-statement)
7940 try-end (js2-node-end try-block)
7941 peek (js2-peek-token))
7942 (cond
7943 ((= peek js2-CATCH)
7944 (while (js2-match-token js2-CATCH)
7945 (setq catch-pos (js2-current-token-beg)
7946 guard-kwd nil
7947 catch-cond nil
7948 lp nil
7949 rp nil)
7950 (if saw-default-catch
7951 (js2-report-error "msg.catch.unreachable"))
7952 (if (js2-must-match js2-LP "msg.no.paren.catch")
7953 (setq lp (- (js2-current-token-beg) catch-pos)))
7954 (js2-push-scope (make-js2-scope))
7955 (let ((tt (js2-peek-token)))
7956 (cond
7957 ;; destructuring pattern
7958 ;; catch ({ message, file }) { ... }
7959 ((or (= tt js2-LB) (= tt js2-LC))
7960 (js2-get-token)
7961 (setq param (js2-parse-destruct-primary-expr))
7962 (js2-define-destruct-symbols param js2-LET nil))
7963 ;; simple name
7964 (t
7965 (js2-must-match-name "msg.bad.catchcond")
7966 (setq param (js2-create-name-node))
7967 (js2-define-symbol js2-LET (js2-current-token-string) param))))
7968 ;; pattern guard
7969 (if (js2-match-token js2-IF)
7970 (setq guard-kwd (- (js2-current-token-beg) catch-pos)
7971 catch-cond (js2-parse-expr))
7972 (setq saw-default-catch t))
7973 (if (js2-must-match js2-RP "msg.bad.catchcond")
7974 (setq rp (- (js2-current-token-beg) catch-pos)))
7975 (js2-must-match js2-LC "msg.no.brace.catchblock")
7976 (setq block (js2-parse-statements)
7977 try-end (js2-node-end block)
7978 catch-node (make-js2-catch-node :pos catch-pos
7979 :param param
7980 :guard-expr catch-cond
7981 :guard-kwd guard-kwd
7982 :block block
7983 :lp lp
7984 :rp rp))
7985 (js2-pop-scope)
7986 (if (js2-must-match js2-RC "msg.no.brace.after.body")
7987 (setq try-end (js2-current-token-beg)))
7988 (setf (js2-node-len block) (- try-end (js2-node-pos block))
7989 (js2-node-len catch-node) (- try-end catch-pos))
7990 (js2-node-add-children catch-node param catch-cond block)
7991 (push catch-node catch-blocks)))
7992 ((/= peek js2-FINALLY)
7993 (js2-must-match js2-FINALLY "msg.try.no.catchfinally"
7994 (js2-node-pos try-block)
7995 (- (setq try-end (js2-node-end try-block))
7996 (js2-node-pos try-block)))))
7997 (when (js2-match-token js2-FINALLY)
7998 (setq finally-pos (js2-current-token-beg)
7999 block (js2-parse-statement)
8000 try-end (js2-node-end block)
8001 finally-block (make-js2-finally-node :pos finally-pos
8002 :len (- try-end finally-pos)
8003 :body block))
8004 (js2-node-add-children finally-block block))
8005 (setq pn (make-js2-try-node :pos try-pos
8006 :len (- try-end try-pos)
8007 :try-block try-block
8008 :finally-block finally-block))
8009 (js2-node-add-children pn try-block finally-block)
8010 ;; push them onto the try-node, which reverses and corrects their order
8011 (dolist (cb catch-blocks)
8012 (js2-node-add-children pn cb)
8013 (push cb (js2-try-node-catch-clauses pn)))
8014 pn))
8015
8016 (defun js2-parse-throw ()
8017 "Parser for throw-statement. Last matched token must be js2-THROW."
8018 (let ((pos (js2-current-token-beg))
8019 expr pn)
8020 (if (= (js2-peek-token-or-eol) js2-EOL)
8021 ;; ECMAScript does not allow new lines before throw expression,
8022 ;; see bug 256617
8023 (js2-report-error "msg.bad.throw.eol"))
8024 (setq expr (js2-parse-expr)
8025 pn (make-js2-throw-node :pos pos
8026 :len (- (js2-node-end expr) pos)
8027 :expr expr))
8028 (js2-node-add-children pn expr)
8029 pn))
8030
8031 (defun js2-match-jump-label-name (label-name)
8032 "If break/continue specified a label, return that label's labeled stmt.
8033 Returns the corresponding `js2-labeled-stmt-node', or if LABEL-NAME
8034 does not match an existing label, reports an error and returns nil."
8035 (let ((bundle (cdr (assoc label-name js2-label-set))))
8036 (if (null bundle)
8037 (js2-report-error "msg.undef.label"))
8038 bundle))
8039
8040 (defun js2-parse-break ()
8041 "Parser for break-statement. Last matched token must be js2-BREAK."
8042 (let ((pos (js2-current-token-beg))
8043 (end (js2-current-token-end))
8044 break-target ; statement to break from
8045 break-label ; in "break foo", name-node representing the foo
8046 labels ; matching labeled statement to break to
8047 pn)
8048 (when (eq (js2-peek-token-or-eol) js2-NAME)
8049 (js2-get-token)
8050 (setq break-label (js2-create-name-node)
8051 end (js2-node-end break-label)
8052 ;; matchJumpLabelName only matches if there is one
8053 labels (js2-match-jump-label-name (js2-current-token-string))
8054 break-target (if labels (car (js2-labeled-stmt-node-labels labels)))))
8055 (unless (or break-target break-label)
8056 ;; no break target specified - try for innermost enclosing loop/switch
8057 (if (null js2-loop-and-switch-set)
8058 (unless break-label
8059 (js2-report-error "msg.bad.break" nil pos (length "break")))
8060 (setq break-target (car js2-loop-and-switch-set))))
8061 (setq pn (make-js2-break-node :pos pos
8062 :len (- end pos)
8063 :label break-label
8064 :target break-target))
8065 (js2-node-add-children pn break-label) ; but not break-target
8066 pn))
8067
8068 (defun js2-parse-continue ()
8069 "Parser for continue-statement. Last matched token must be js2-CONTINUE."
8070 (let ((pos (js2-current-token-beg))
8071 (end (js2-current-token-end))
8072 label ; optional user-specified label, a `js2-name-node'
8073 labels ; current matching labeled stmt, if any
8074 target ; the `js2-loop-node' target of this continue stmt
8075 pn)
8076 (when (= (js2-peek-token-or-eol) js2-NAME)
8077 (js2-get-token)
8078 (setq label (js2-create-name-node)
8079 end (js2-node-end label)
8080 ;; matchJumpLabelName only matches if there is one
8081 labels (js2-match-jump-label-name (js2-current-token-string))))
8082 (cond
8083 ((null labels) ; no current label to go to
8084 (if (null js2-loop-set) ; no loop to continue to
8085 (js2-report-error "msg.continue.outside" nil pos
8086 (length "continue"))
8087 (setq target (car js2-loop-set)))) ; innermost enclosing loop
8088 (t
8089 (if (js2-loop-node-p (js2-labeled-stmt-node-stmt labels))
8090 (setq target (js2-labeled-stmt-node-stmt labels))
8091 (js2-report-error "msg.continue.nonloop" nil pos (- end pos)))))
8092 (setq pn (make-js2-continue-node :pos pos
8093 :len (- end pos)
8094 :label label
8095 :target target))
8096 (js2-node-add-children pn label) ; but not target - it's not our child
8097 pn))
8098
8099 (defun js2-parse-with ()
8100 "Parser for with-statement. Last matched token must be js2-WITH."
8101 (let ((pos (js2-current-token-beg))
8102 obj body pn lp rp)
8103 (if (js2-must-match js2-LP "msg.no.paren.with")
8104 (setq lp (js2-current-token-beg)))
8105 (setq obj (js2-parse-expr))
8106 (if (js2-must-match js2-RP "msg.no.paren.after.with")
8107 (setq rp (js2-current-token-beg)))
8108 (let ((js2-nesting-of-with (1+ js2-nesting-of-with)))
8109 (setq body (js2-parse-statement)))
8110 (setq pn (make-js2-with-node :pos pos
8111 :len (- (js2-node-end body) pos)
8112 :object obj
8113 :body body
8114 :lp (js2-relpos lp pos)
8115 :rp (js2-relpos rp pos)))
8116 (js2-node-add-children pn obj body)
8117 pn))
8118
8119 (defun js2-parse-const-var ()
8120 "Parser for var- or const-statement.
8121 Last matched token must be js2-CONST or js2-VAR."
8122 (let ((tt (js2-current-token-type))
8123 (pos (js2-current-token-beg))
8124 expr pn)
8125 (setq expr (js2-parse-variables tt (js2-current-token-beg))
8126 pn (make-js2-expr-stmt-node :pos pos
8127 :len (- (js2-node-end expr) pos)
8128 :expr expr))
8129 (js2-node-add-children pn expr)
8130 pn))
8131
8132 (defun js2-wrap-with-expr-stmt (pos expr &optional add-child)
8133 (let ((pn (make-js2-expr-stmt-node :pos pos
8134 :len (js2-node-len expr)
8135 :type (if (js2-inside-function)
8136 js2-EXPR_VOID
8137 js2-EXPR_RESULT)
8138 :expr expr)))
8139 (if add-child
8140 (js2-node-add-children pn expr))
8141 pn))
8142
8143 (defun js2-parse-let-stmt ()
8144 "Parser for let-statement. Last matched token must be js2-LET."
8145 (let ((pos (js2-current-token-beg))
8146 expr pn)
8147 (if (= (js2-peek-token) js2-LP)
8148 ;; let expression in statement context
8149 (setq expr (js2-parse-let pos 'statement)
8150 pn (js2-wrap-with-expr-stmt pos expr t))
8151 ;; else we're looking at a statement like let x=6, y=7;
8152 (setf expr (js2-parse-variables js2-LET pos)
8153 pn (js2-wrap-with-expr-stmt pos expr t)
8154 (js2-node-type pn) js2-EXPR_RESULT))
8155 pn))
8156
8157 (defun js2-parse-ret-yield ()
8158 (js2-parse-return-or-yield (js2-current-token-type) nil))
8159
8160 (defconst js2-parse-return-stmt-enders
8161 (list js2-SEMI js2-RC js2-EOF js2-EOL js2-ERROR js2-RB js2-RP js2-YIELD))
8162
8163 (defsubst js2-now-all-set (before after mask)
8164 "Return whether or not the bits in the mask have changed to all set.
8165 BEFORE is bits before change, AFTER is bits after change, and MASK is
8166 the mask for bits. Returns t if all the bits in the mask are set in AFTER
8167 but not BEFORE."
8168 (and (/= (logand before mask) mask)
8169 (= (logand after mask) mask)))
8170
8171 (defun js2-parse-return-or-yield (tt expr-context)
8172 (let* ((pos (js2-current-token-beg))
8173 (end (js2-current-token-end))
8174 (before js2-end-flags)
8175 (inside-function (js2-inside-function))
8176 (gen-type (and inside-function (js2-function-node-generator-type
8177 js2-current-script-or-fn)))
8178 e ret name yield-star-p)
8179 (unless inside-function
8180 (js2-report-error (if (eq tt js2-RETURN)
8181 "msg.bad.return"
8182 "msg.bad.yield")))
8183 (when (and inside-function
8184 (eq gen-type 'STAR)
8185 (js2-match-token js2-MUL))
8186 (setq yield-star-p t))
8187 ;; This is ugly, but we don't want to require a semicolon.
8188 (unless (memq (js2-peek-token-or-eol) js2-parse-return-stmt-enders)
8189 (setq e (js2-parse-expr)
8190 end (js2-node-end e)))
8191 (cond
8192 ((eq tt js2-RETURN)
8193 (js2-set-flag js2-end-flags (if (null e)
8194 js2-end-returns
8195 js2-end-returns-value))
8196 (setq ret (make-js2-return-node :pos pos
8197 :len (- end pos)
8198 :retval e))
8199 (js2-node-add-children ret e)
8200 ;; See if we need a strict mode warning.
8201 ;; TODO: The analysis done by `js2-has-consistent-return-usage' is
8202 ;; more thorough and accurate than this before/after flag check.
8203 ;; E.g. if there's a finally-block that always returns, we shouldn't
8204 ;; show a warning generated by inconsistent returns in the catch blocks.
8205 ;; Basically `js2-has-consistent-return-usage' needs to keep more state,
8206 ;; so we know which returns/yields to highlight, and we should get rid of
8207 ;; all the checking in `js2-parse-return-or-yield'.
8208 (if (and js2-strict-inconsistent-return-warning
8209 (js2-now-all-set before js2-end-flags
8210 (logior js2-end-returns js2-end-returns-value)))
8211 (js2-add-strict-warning "msg.return.inconsistent" nil pos end)))
8212 ((eq gen-type 'COMPREHENSION)
8213 ;; FIXME: We should probably switch to saving and using lastYieldOffset,
8214 ;; like SpiderMonkey does.
8215 (js2-report-error "msg.syntax" nil pos 5))
8216 (t
8217 (setq ret (make-js2-yield-node :pos pos
8218 :len (- end pos)
8219 :value e
8220 :star-p yield-star-p))
8221 (js2-node-add-children ret e)
8222 (unless expr-context
8223 (setq e ret
8224 ret (js2-wrap-with-expr-stmt pos e t))
8225 (js2-set-requires-activation)
8226 (js2-set-is-generator))))
8227 ;; see if we are mixing yields and value returns.
8228 (when (and inside-function
8229 (js2-flag-set-p js2-end-flags js2-end-returns-value)
8230 (eq (js2-function-node-generator-type js2-current-script-or-fn)
8231 'LEGACY))
8232 (setq name (js2-function-name js2-current-script-or-fn))
8233 (if (zerop (length name))
8234 (js2-report-error "msg.anon.generator.returns" nil pos (- end pos))
8235 (js2-report-error "msg.generator.returns" name pos (- end pos))))
8236 ret))
8237
8238 (defun js2-parse-debugger ()
8239 (make-js2-keyword-node :type js2-DEBUGGER))
8240
8241 (defun js2-parse-block ()
8242 "Parser for a curly-delimited statement block.
8243 Last token matched must be `js2-LC'."
8244 (let ((pos (js2-current-token-beg))
8245 (pn (make-js2-scope)))
8246 (js2-push-scope pn)
8247 (unwind-protect
8248 (progn
8249 (js2-parse-statements pn)
8250 (js2-must-match js2-RC "msg.no.brace.block")
8251 (setf (js2-node-len pn) (- (js2-current-token-end) pos)))
8252 (js2-pop-scope))
8253 pn))
8254
8255 ;; For `js2-ERROR' too, to have a node for error recovery to work on.
8256 (defun js2-parse-semi ()
8257 "Parse a statement or handle an error.
8258 Current token type is `js2-SEMI' or `js2-ERROR'."
8259 (let ((tt (js2-current-token-type)) pos len)
8260 (if (eq tt js2-SEMI)
8261 (make-js2-empty-expr-node :len 1)
8262 (setq pos (js2-current-token-beg)
8263 len (- (js2-current-token-end) pos))
8264 (js2-report-error "msg.syntax" nil pos len)
8265 (make-js2-error-node :pos pos :len len))))
8266
8267 (defun js2-parse-default-xml-namespace ()
8268 "Parse a `default xml namespace = <expr>' e4x statement."
8269 (let ((pos (js2-current-token-beg))
8270 end len expr unary)
8271 (js2-must-have-xml)
8272 (js2-set-requires-activation)
8273 (setq len (- js2-ts-cursor pos))
8274 (unless (and (js2-match-token js2-NAME)
8275 (string= (js2-current-token-string) "xml"))
8276 (js2-report-error "msg.bad.namespace" nil pos len))
8277 (unless (and (js2-match-token js2-NAME)
8278 (string= (js2-current-token-string) "namespace"))
8279 (js2-report-error "msg.bad.namespace" nil pos len))
8280 (unless (js2-match-token js2-ASSIGN)
8281 (js2-report-error "msg.bad.namespace" nil pos len))
8282 (setq expr (js2-parse-expr)
8283 end (js2-node-end expr)
8284 unary (make-js2-unary-node :type js2-DEFAULTNAMESPACE
8285 :pos pos
8286 :len (- end pos)
8287 :operand expr))
8288 (js2-node-add-children unary expr)
8289 (make-js2-expr-stmt-node :pos pos
8290 :len (- end pos)
8291 :expr unary)))
8292
8293 (defun js2-record-label (label bundle)
8294 ;; current token should be colon that `js2-parse-primary-expr' left untouched
8295 (js2-get-token)
8296 (let ((name (js2-label-node-name label))
8297 labeled-stmt
8298 dup)
8299 (when (setq labeled-stmt (cdr (assoc name js2-label-set)))
8300 ;; flag both labels if possible when used in editing mode
8301 (if (and js2-parse-ide-mode
8302 (setq dup (js2-get-label-by-name labeled-stmt name)))
8303 (js2-report-error "msg.dup.label" nil
8304 (js2-node-abs-pos dup) (js2-node-len dup)))
8305 (js2-report-error "msg.dup.label" nil
8306 (js2-node-pos label) (js2-node-len label)))
8307 (js2-labeled-stmt-node-add-label bundle label)
8308 (js2-node-add-children bundle label)
8309 ;; Add one reference to the bundle per label in `js2-label-set'
8310 (push (cons name bundle) js2-label-set)))
8311
8312 (defun js2-parse-name-or-label ()
8313 "Parser for identifier or label. Last token matched must be js2-NAME.
8314 Called when we found a name in a statement context. If it's a label, we gather
8315 up any following labels and the next non-label statement into a
8316 `js2-labeled-stmt-node' bundle and return that. Otherwise we parse an
8317 expression and return it wrapped in a `js2-expr-stmt-node'."
8318 (let ((pos (js2-current-token-beg))
8319 expr stmt bundle
8320 (continue t))
8321 ;; set check for label and call down to `js2-parse-primary-expr'
8322 (setq expr (js2-maybe-parse-label))
8323 (if (null expr)
8324 ;; Parse the non-label expression and wrap with expression stmt.
8325 (js2-wrap-with-expr-stmt pos (js2-parse-expr) t)
8326 ;; else parsed a label
8327 (setq bundle (make-js2-labeled-stmt-node :pos pos))
8328 (js2-record-label expr bundle)
8329 ;; look for more labels
8330 (while (and continue (= (js2-get-token) js2-NAME))
8331 (if (setq expr (js2-maybe-parse-label))
8332 (js2-record-label expr bundle)
8333 (setq expr (js2-parse-expr)
8334 stmt (js2-wrap-with-expr-stmt (js2-node-pos expr) expr t)
8335 continue nil)
8336 (js2-auto-insert-semicolon stmt)))
8337 ;; no more labels; now parse the labeled statement
8338 (unwind-protect
8339 (unless stmt
8340 (let ((js2-labeled-stmt bundle)) ; bind dynamically
8341 (js2-unget-token)
8342 (setq stmt (js2-statement-helper))))
8343 ;; remove the labels for this statement from the global set
8344 (dolist (label (js2-labeled-stmt-node-labels bundle))
8345 (setq js2-label-set (remove label js2-label-set))))
8346 (setf (js2-labeled-stmt-node-stmt bundle) stmt
8347 (js2-node-len bundle) (- (js2-node-end stmt) pos))
8348 (js2-node-add-children bundle stmt)
8349 bundle)))
8350
8351 (defun js2-maybe-parse-label ()
8352 (assert (= (js2-current-token-type) js2-NAME))
8353 (let (label-pos
8354 (next-tt (js2-get-token))
8355 (label-end (js2-current-token-end)))
8356 ;; Do not consume colon, it is used as unwind indicator
8357 ;; to return to statementHelper.
8358 (js2-unget-token)
8359 (if (= next-tt js2-COLON)
8360 (prog2
8361 (setq label-pos (js2-current-token-beg))
8362 (make-js2-label-node :pos label-pos
8363 :len (- label-end label-pos)
8364 :name (js2-current-token-string))
8365 (js2-set-face label-pos
8366 label-end
8367 'font-lock-variable-name-face 'record))
8368 ;; Backtrack from the name token, too.
8369 (js2-unget-token)
8370 nil)))
8371
8372 (defun js2-parse-expr-stmt ()
8373 "Default parser in statement context, if no recognized statement found."
8374 (js2-wrap-with-expr-stmt (js2-current-token-beg)
8375 (progn
8376 (js2-unget-token)
8377 (js2-parse-expr)) t))
8378
8379 (defun js2-parse-variables (decl-type pos)
8380 "Parse a comma-separated list of variable declarations.
8381 Could be a 'var', 'const' or 'let' expression, possibly in a for-loop initializer.
8382
8383 DECL-TYPE is a token value: either VAR, CONST, or LET depending on context.
8384 For 'var' or 'const', the keyword should be the token last scanned.
8385
8386 POS is the position where the node should start. It's sometimes the
8387 var/const/let keyword, and other times the beginning of the first token
8388 in the first variable declaration.
8389
8390 Returns the parsed `js2-var-decl-node' expression node."
8391 (let* ((result (make-js2-var-decl-node :decl-type decl-type
8392 :pos pos))
8393 destructuring kid-pos tt init name end nbeg nend vi
8394 (continue t))
8395 ;; Example:
8396 ;; var foo = {a: 1, b: 2}, bar = [3, 4];
8397 ;; var {b: s2, a: s1} = foo, x = 6, y, [s3, s4] = bar;
8398 ;; var {a, b} = baz;
8399 (while continue
8400 (setq destructuring nil
8401 name nil
8402 tt (js2-get-token)
8403 kid-pos (js2-current-token-beg)
8404 end (js2-current-token-end)
8405 init nil)
8406 (if (or (= tt js2-LB) (= tt js2-LC))
8407 ;; Destructuring assignment, e.g., var [a, b] = ...
8408 (setq destructuring (js2-parse-destruct-primary-expr)
8409 end (js2-node-end destructuring))
8410 ;; Simple variable name
8411 (js2-unget-token)
8412 (when (js2-must-match-name "msg.bad.var")
8413 (setq name (js2-create-name-node)
8414 nbeg (js2-current-token-beg)
8415 nend (js2-current-token-end)
8416 end nend)
8417 (js2-define-symbol decl-type (js2-current-token-string) name js2-in-for-init)))
8418 (when (js2-match-token js2-ASSIGN)
8419 (setq init (js2-parse-assign-expr)
8420 end (js2-node-end init))
8421 (js2-record-imenu-functions init name))
8422 (when name
8423 (js2-set-face nbeg nend (if (js2-function-node-p init)
8424 'font-lock-function-name-face
8425 'font-lock-variable-name-face)
8426 'record))
8427 (setq vi (make-js2-var-init-node :pos kid-pos
8428 :len (- end kid-pos)
8429 :type decl-type))
8430 (if destructuring
8431 (progn
8432 (if (and (null init) (not js2-in-for-init))
8433 (js2-report-error "msg.destruct.assign.no.init"))
8434 (js2-define-destruct-symbols destructuring
8435 decl-type
8436 'font-lock-variable-name-face)
8437 (setf (js2-var-init-node-target vi) destructuring))
8438 (setf (js2-var-init-node-target vi) name))
8439 (setf (js2-var-init-node-initializer vi) init)
8440 (js2-node-add-children vi name destructuring init)
8441 (js2-block-node-push result vi)
8442 (unless (js2-match-token js2-COMMA)
8443 (setq continue nil)))
8444 (setf (js2-node-len result) (- end pos))
8445 result))
8446
8447 (defun js2-parse-let (pos &optional stmt-p)
8448 "Parse a let expression or statement.
8449 A let-expression is of the form `let (vars) expr'.
8450 A let-statment is of the form `let (vars) {statements}'.
8451 The third form of let is a variable declaration list, handled
8452 by `js2-parse-variables'."
8453 (let ((pn (make-js2-let-node :pos pos))
8454 beg vars body)
8455 (if (js2-must-match js2-LP "msg.no.paren.after.let")
8456 (setf (js2-let-node-lp pn) (- (js2-current-token-beg) pos)))
8457 (js2-push-scope pn)
8458 (unwind-protect
8459 (progn
8460 (setq vars (js2-parse-variables js2-LET (js2-current-token-beg)))
8461 (if (js2-must-match js2-RP "msg.no.paren.let")
8462 (setf (js2-let-node-rp pn) (- (js2-current-token-beg) pos)))
8463 (if (and stmt-p (eq (js2-get-token) js2-LC))
8464 ;; let statement
8465 (progn
8466 (setf beg (js2-current-token-beg) ; position stmt at LC
8467 body (js2-parse-statements))
8468 (js2-must-match js2-RC "msg.no.curly.let")
8469 (setf (js2-node-len body) (- (js2-current-token-end) beg)
8470 (js2-node-len pn) (- (js2-current-token-end) pos)
8471 (js2-let-node-body pn) body
8472 (js2-node-type pn) js2-LET))
8473 ;; let expression
8474 (js2-unget-token)
8475 (setf body (js2-parse-expr)
8476 (js2-node-len pn) (- (js2-node-end body) pos)
8477 (js2-let-node-body pn) body))
8478 (js2-node-add-children pn vars body))
8479 (js2-pop-scope))
8480 pn))
8481
8482 (defun js2-define-new-symbol (decl-type name node &optional scope)
8483 (js2-scope-put-symbol (or scope js2-current-scope)
8484 name
8485 (make-js2-symbol decl-type name node)))
8486
8487 (defun js2-define-symbol (decl-type name &optional node ignore-not-in-block)
8488 "Define a symbol in the current scope.
8489 If NODE is non-nil, it is the AST node associated with the symbol."
8490 (let* ((defining-scope (js2-get-defining-scope js2-current-scope name))
8491 (symbol (if defining-scope
8492 (js2-scope-get-symbol defining-scope name)))
8493 (sdt (if symbol (js2-symbol-decl-type symbol) -1)))
8494 (cond
8495 ((and symbol ; already defined
8496 (or (= sdt js2-CONST) ; old version is const
8497 (= decl-type js2-CONST) ; new version is const
8498 ;; two let-bound vars in this block have same name
8499 (and (= sdt js2-LET)
8500 (eq defining-scope js2-current-scope))))
8501 (js2-report-error
8502 (cond
8503 ((= sdt js2-CONST) "msg.const.redecl")
8504 ((= sdt js2-LET) "msg.let.redecl")
8505 ((= sdt js2-VAR) "msg.var.redecl")
8506 ((= sdt js2-FUNCTION) "msg.function.redecl")
8507 (t "msg.parm.redecl"))
8508 name))
8509 ((= decl-type js2-LET)
8510 (if (and (not ignore-not-in-block)
8511 (or (= (js2-node-type js2-current-scope) js2-IF)
8512 (js2-loop-node-p js2-current-scope)))
8513 (js2-report-error "msg.let.decl.not.in.block")
8514 (js2-define-new-symbol decl-type name node)))
8515 ((or (= decl-type js2-VAR)
8516 (= decl-type js2-CONST)
8517 (= decl-type js2-FUNCTION))
8518 (if symbol
8519 (if (and js2-strict-var-redeclaration-warning (= sdt js2-VAR))
8520 (js2-add-strict-warning "msg.var.redecl" name)
8521 (if (and js2-strict-var-hides-function-arg-warning (= sdt js2-LP))
8522 (js2-add-strict-warning "msg.var.hides.arg" name)))
8523 (js2-define-new-symbol decl-type name node
8524 js2-current-script-or-fn)))
8525 ((= decl-type js2-LP)
8526 (if symbol
8527 ;; must be duplicate parameter. Second parameter hides the
8528 ;; first, so go ahead and add the second pararameter
8529 (js2-report-warning "msg.dup.parms" name))
8530 (js2-define-new-symbol decl-type name node))
8531 (t (js2-code-bug)))))
8532
8533 (defun js2-parse-paren-expr-or-generator-comp ()
8534 (let ((px-pos (js2-current-token-beg)))
8535 (if (and (>= js2-language-version 200)
8536 (js2-match-token js2-FOR))
8537 (js2-parse-generator-comp px-pos)
8538 (let* ((js2-in-for-init nil)
8539 (expr (js2-parse-expr))
8540 (pn (make-js2-paren-node :pos px-pos
8541 :expr expr
8542 :len (- (js2-current-token-end)
8543 px-pos))))
8544 (js2-node-add-children pn (js2-paren-node-expr pn))
8545 (js2-must-match js2-RP "msg.no.paren")
8546 pn))))
8547
8548 (defun js2-parse-expr (&optional oneshot)
8549 (let* ((pn (js2-parse-assign-expr))
8550 (pos (js2-node-pos pn))
8551 left
8552 right
8553 op-pos)
8554 (while (and (not oneshot)
8555 (js2-match-token js2-COMMA))
8556 (setq op-pos (- (js2-current-token-beg) pos)) ; relative
8557 (if (= (js2-peek-token) js2-YIELD)
8558 (js2-report-error "msg.yield.parenthesized"))
8559 (setq right (js2-parse-assign-expr)
8560 left pn
8561 pn (make-js2-infix-node :type js2-COMMA
8562 :pos pos
8563 :len (- js2-ts-cursor pos)
8564 :op-pos op-pos
8565 :left left
8566 :right right))
8567 (js2-node-add-children pn left right))
8568 pn))
8569
8570 (defun js2-parse-assign-expr ()
8571 (let ((tt (js2-get-token))
8572 (pos (js2-current-token-beg))
8573 pn left right op-pos
8574 ts-state recorded-identifiers)
8575 (if (= tt js2-YIELD)
8576 (js2-parse-return-or-yield tt t)
8577 ;; Save the tokenizer state in case we find an arrow function
8578 ;; and have to rewind.
8579 (setq ts-state (make-js2-ts-state)
8580 recorded-identifiers js2-recorded-identifiers)
8581 ;; not yield - parse assignment expression
8582 (setq pn (js2-parse-cond-expr)
8583 tt (js2-get-token))
8584 (cond
8585 ((and (<= js2-first-assign tt)
8586 (<= tt js2-last-assign))
8587 ;; tt express assignment (=, |=, ^=, ..., %=)
8588 (setq op-pos (- (js2-current-token-beg) pos) ; relative
8589 left pn)
8590 (setq right (js2-parse-assign-expr)
8591 pn (make-js2-assign-node :type tt
8592 :pos pos
8593 :len (- (js2-node-end right) pos)
8594 :op-pos op-pos
8595 :left left
8596 :right right))
8597 (when js2-parse-ide-mode
8598 (js2-highlight-assign-targets pn left right)
8599 (js2-record-imenu-functions right left))
8600 ;; do this last so ide checks above can use absolute positions
8601 (js2-node-add-children pn left right))
8602 ((and (= tt js2-ARROW)
8603 (>= js2-language-version 200))
8604 (js2-ts-seek ts-state)
8605 (setq js2-recorded-identifiers recorded-identifiers)
8606 (setq pn (js2-parse-function 'FUNCTION_ARROW (js2-current-token-beg) nil)))
8607 (t
8608 (js2-unget-token)))
8609 pn)))
8610
8611 (defun js2-parse-cond-expr ()
8612 (let ((pos (js2-current-token-beg))
8613 (pn (js2-parse-or-expr))
8614 test-expr
8615 if-true
8616 if-false
8617 q-pos
8618 c-pos)
8619 (when (js2-match-token js2-HOOK)
8620 (setq q-pos (- (js2-current-token-beg) pos)
8621 if-true (let (js2-in-for-init) (js2-parse-assign-expr)))
8622 (js2-must-match js2-COLON "msg.no.colon.cond")
8623 (setq c-pos (- (js2-current-token-beg) pos)
8624 if-false (js2-parse-assign-expr)
8625 test-expr pn
8626 pn (make-js2-cond-node :pos pos
8627 :len (- (js2-node-end if-false) pos)
8628 :test-expr test-expr
8629 :true-expr if-true
8630 :false-expr if-false
8631 :q-pos q-pos
8632 :c-pos c-pos))
8633 (js2-node-add-children pn test-expr if-true if-false))
8634 pn))
8635
8636 (defun js2-make-binary (type left parser)
8637 "Helper for constructing a binary-operator AST node.
8638 LEFT is the left-side-expression, already parsed, and the
8639 binary operator should have just been matched.
8640 PARSER is a function to call to parse the right operand,
8641 or a `js2-node' struct if it has already been parsed.
8642 FIXME: The latter option is unused?"
8643 (let* ((pos (js2-node-pos left))
8644 (op-pos (- (js2-current-token-beg) pos))
8645 (right (if (js2-node-p parser)
8646 parser
8647 (js2-get-token)
8648 (funcall parser)))
8649 (pn (make-js2-infix-node :type type
8650 :pos pos
8651 :len (- (js2-node-end right) pos)
8652 :op-pos op-pos
8653 :left left
8654 :right right)))
8655 (js2-node-add-children pn left right)
8656 pn))
8657
8658 (defun js2-parse-or-expr ()
8659 (let ((pn (js2-parse-and-expr)))
8660 (when (js2-match-token js2-OR)
8661 (setq pn (js2-make-binary js2-OR
8662 pn
8663 'js2-parse-or-expr)))
8664 pn))
8665
8666 (defun js2-parse-and-expr ()
8667 (let ((pn (js2-parse-bit-or-expr)))
8668 (when (js2-match-token js2-AND)
8669 (setq pn (js2-make-binary js2-AND
8670 pn
8671 'js2-parse-and-expr)))
8672 pn))
8673
8674 (defun js2-parse-bit-or-expr ()
8675 (let ((pn (js2-parse-bit-xor-expr)))
8676 (while (js2-match-token js2-BITOR)
8677 (setq pn (js2-make-binary js2-BITOR
8678 pn
8679 'js2-parse-bit-xor-expr)))
8680 pn))
8681
8682 (defun js2-parse-bit-xor-expr ()
8683 (let ((pn (js2-parse-bit-and-expr)))
8684 (while (js2-match-token js2-BITXOR)
8685 (setq pn (js2-make-binary js2-BITXOR
8686 pn
8687 'js2-parse-bit-and-expr)))
8688 pn))
8689
8690 (defun js2-parse-bit-and-expr ()
8691 (let ((pn (js2-parse-eq-expr)))
8692 (while (js2-match-token js2-BITAND)
8693 (setq pn (js2-make-binary js2-BITAND
8694 pn
8695 'js2-parse-eq-expr)))
8696 pn))
8697
8698 (defconst js2-parse-eq-ops
8699 (list js2-EQ js2-NE js2-SHEQ js2-SHNE))
8700
8701 (defun js2-parse-eq-expr ()
8702 (let ((pn (js2-parse-rel-expr))
8703 tt)
8704 (while (memq (setq tt (js2-get-token)) js2-parse-eq-ops)
8705 (setq pn (js2-make-binary tt
8706 pn
8707 'js2-parse-rel-expr)))
8708 (js2-unget-token)
8709 pn))
8710
8711 (defconst js2-parse-rel-ops
8712 (list js2-IN js2-INSTANCEOF js2-LE js2-LT js2-GE js2-GT))
8713
8714 (defun js2-parse-rel-expr ()
8715 (let ((pn (js2-parse-shift-expr))
8716 (continue t)
8717 tt)
8718 (while continue
8719 (setq tt (js2-get-token))
8720 (cond
8721 ((and js2-in-for-init (= tt js2-IN))
8722 (js2-unget-token)
8723 (setq continue nil))
8724 ((memq tt js2-parse-rel-ops)
8725 (setq pn (js2-make-binary tt pn 'js2-parse-shift-expr)))
8726 (t
8727 (js2-unget-token)
8728 (setq continue nil))))
8729 pn))
8730
8731 (defconst js2-parse-shift-ops
8732 (list js2-LSH js2-URSH js2-RSH))
8733
8734 (defun js2-parse-shift-expr ()
8735 (let ((pn (js2-parse-add-expr))
8736 tt
8737 (continue t))
8738 (while continue
8739 (setq tt (js2-get-token))
8740 (if (memq tt js2-parse-shift-ops)
8741 (setq pn (js2-make-binary tt pn 'js2-parse-add-expr))
8742 (js2-unget-token)
8743 (setq continue nil)))
8744 pn))
8745
8746 (defun js2-parse-add-expr ()
8747 (let ((pn (js2-parse-mul-expr))
8748 tt
8749 (continue t))
8750 (while continue
8751 (setq tt (js2-get-token))
8752 (if (or (= tt js2-ADD) (= tt js2-SUB))
8753 (setq pn (js2-make-binary tt pn 'js2-parse-mul-expr))
8754 (js2-unget-token)
8755 (setq continue nil)))
8756 pn))
8757
8758 (defconst js2-parse-mul-ops
8759 (list js2-MUL js2-DIV js2-MOD))
8760
8761 (defun js2-parse-mul-expr ()
8762 (let ((pn (js2-parse-unary-expr))
8763 tt
8764 (continue t))
8765 (while continue
8766 (setq tt (js2-get-token))
8767 (if (memq tt js2-parse-mul-ops)
8768 (setq pn (js2-make-binary tt pn 'js2-parse-unary-expr))
8769 (js2-unget-token)
8770 (setq continue nil)))
8771 pn))
8772
8773 (defun js2-make-unary (type parser &rest args)
8774 "Make a unary node of type TYPE.
8775 PARSER is either a node (for postfix operators) or a function to call
8776 to parse the operand (for prefix operators)."
8777 (let* ((pos (js2-current-token-beg))
8778 (postfix (js2-node-p parser))
8779 (expr (if postfix
8780 parser
8781 (apply parser args)))
8782 end
8783 pn)
8784 (if postfix ; e.g. i++
8785 (setq pos (js2-node-pos expr)
8786 end (js2-current-token-end))
8787 (setq end (js2-node-end expr)))
8788 (setq pn (make-js2-unary-node :type type
8789 :pos pos
8790 :len (- end pos)
8791 :operand expr))
8792 (js2-node-add-children pn expr)
8793 pn))
8794
8795 (defconst js2-incrementable-node-types
8796 (list js2-NAME js2-GETPROP js2-GETELEM js2-GET_REF js2-CALL)
8797 "Node types that can be the operand of a ++ or -- operator.")
8798
8799 (defun js2-check-bad-inc-dec (tt beg end unary)
8800 (unless (memq (js2-node-type (js2-unary-node-operand unary))
8801 js2-incrementable-node-types)
8802 (js2-report-error (if (= tt js2-INC)
8803 "msg.bad.incr"
8804 "msg.bad.decr")
8805 nil beg (- end beg))))
8806
8807 (defun js2-parse-unary-expr ()
8808 (let ((tt (js2-current-token-type))
8809 pn expr beg end)
8810 (cond
8811 ((or (= tt js2-VOID)
8812 (= tt js2-NOT)
8813 (= tt js2-BITNOT)
8814 (= tt js2-TYPEOF))
8815 (js2-get-token)
8816 (js2-make-unary tt 'js2-parse-unary-expr))
8817 ((= tt js2-ADD)
8818 (js2-get-token)
8819 ;; Convert to special POS token in decompiler and parse tree
8820 (js2-make-unary js2-POS 'js2-parse-unary-expr))
8821 ((= tt js2-SUB)
8822 (js2-get-token)
8823 ;; Convert to special NEG token in decompiler and parse tree
8824 (js2-make-unary js2-NEG 'js2-parse-unary-expr))
8825 ((or (= tt js2-INC)
8826 (= tt js2-DEC))
8827 (js2-get-token)
8828 (prog1
8829 (setq beg (js2-current-token-beg)
8830 end (js2-current-token-end)
8831 expr (js2-make-unary tt 'js2-parse-member-expr t))
8832 (js2-check-bad-inc-dec tt beg end expr)))
8833 ((= tt js2-DELPROP)
8834 (js2-get-token)
8835 (js2-make-unary js2-DELPROP 'js2-parse-unary-expr))
8836 ((= tt js2-ERROR)
8837 (js2-get-token)
8838 (make-js2-error-node)) ; try to continue
8839 ((and (= tt js2-LT)
8840 js2-compiler-xml-available)
8841 ;; XML stream encountered in expression.
8842 (js2-parse-member-expr-tail t (js2-parse-xml-initializer)))
8843 (t
8844 (setq pn (js2-parse-member-expr t)
8845 ;; Don't look across a newline boundary for a postfix incop.
8846 tt (js2-peek-token-or-eol))
8847 (when (or (= tt js2-INC) (= tt js2-DEC))
8848 (js2-get-token)
8849 (setf expr pn
8850 pn (js2-make-unary tt expr))
8851 (js2-node-set-prop pn 'postfix t)
8852 (js2-check-bad-inc-dec tt (js2-current-token-beg) (js2-current-token-end) pn))
8853 pn))))
8854
8855 (defun js2-parse-xml-initializer ()
8856 "Parse an E4X XML initializer.
8857 I'm parsing it the way Rhino parses it, but without the tree-rewriting.
8858 Then I'll postprocess the result, depending on whether we're in IDE
8859 mode or codegen mode, and generate the appropriate rewritten AST.
8860 IDE mode uses a rich AST that models the XML structure. Codegen mode
8861 just concatenates everything and makes a new XML or XMLList out of it."
8862 (let ((tt (js2-get-first-xml-token))
8863 pn-xml pn expr kids expr-pos
8864 (continue t)
8865 (first-token t))
8866 (when (not (or (= tt js2-XML) (= tt js2-XMLEND)))
8867 (js2-report-error "msg.syntax"))
8868 (setq pn-xml (make-js2-xml-node))
8869 (while continue
8870 (if first-token
8871 (setq first-token nil)
8872 (setq tt (js2-get-next-xml-token)))
8873 (cond
8874 ;; js2-XML means we found a {expr} in the XML stream.
8875 ;; The token string is the XML up to the left-curly.
8876 ((= tt js2-XML)
8877 (push (make-js2-string-node :pos (js2-current-token-beg)
8878 :len (- js2-ts-cursor (js2-current-token-beg)))
8879 kids)
8880 (js2-must-match js2-LC "msg.syntax")
8881 (setq expr-pos js2-ts-cursor
8882 expr (if (eq (js2-peek-token) js2-RC)
8883 (make-js2-empty-expr-node :pos expr-pos)
8884 (js2-parse-expr)))
8885 (js2-must-match js2-RC "msg.syntax")
8886 (setq pn (make-js2-xml-js-expr-node :pos (js2-node-pos expr)
8887 :len (js2-node-len expr)
8888 :expr expr))
8889 (js2-node-add-children pn expr)
8890 (push pn kids))
8891 ;; a js2-XMLEND token means we hit the final close-tag.
8892 ((= tt js2-XMLEND)
8893 (push (make-js2-string-node :pos (js2-current-token-beg)
8894 :len (- js2-ts-cursor (js2-current-token-beg)))
8895 kids)
8896 (dolist (kid (nreverse kids))
8897 (js2-block-node-push pn-xml kid))
8898 (setf (js2-node-len pn-xml) (- js2-ts-cursor
8899 (js2-node-pos pn-xml))
8900 continue nil))
8901 (t
8902 (js2-report-error "msg.syntax")
8903 (setq continue nil))))
8904 pn-xml))
8905
8906
8907 (defun js2-parse-argument-list ()
8908 "Parse an argument list and return it as a Lisp list of nodes.
8909 Returns the list in reverse order. Consumes the right-paren token."
8910 (let (result)
8911 (unless (js2-match-token js2-RP)
8912 (loop do
8913 (let ((tt (js2-get-token)))
8914 (if (= tt js2-YIELD)
8915 (js2-report-error "msg.yield.parenthesized"))
8916 (if (and (= tt js2-TRIPLEDOT)
8917 (>= js2-language-version 200))
8918 (push (js2-make-unary tt 'js2-parse-assign-expr) result)
8919 (js2-unget-token)
8920 (push (js2-parse-assign-expr) result)))
8921 while
8922 (js2-match-token js2-COMMA))
8923 (js2-must-match js2-RP "msg.no.paren.arg")
8924 result)))
8925
8926 (defun js2-parse-member-expr (&optional allow-call-syntax)
8927 (let ((tt (js2-current-token-type))
8928 pn pos target args beg end init)
8929 (if (/= tt js2-NEW)
8930 (setq pn (js2-parse-primary-expr))
8931 ;; parse a 'new' expression
8932 (js2-get-token)
8933 (setq pos (js2-current-token-beg)
8934 beg pos
8935 target (js2-parse-member-expr)
8936 end (js2-node-end target)
8937 pn (make-js2-new-node :pos pos
8938 :target target
8939 :len (- end pos)))
8940 (js2-highlight-function-call (js2-current-token))
8941 (js2-node-add-children pn target)
8942 (when (js2-match-token js2-LP)
8943 ;; Add the arguments to pn, if any are supplied.
8944 (setf beg pos ; start of "new" keyword
8945 pos (js2-current-token-beg)
8946 args (nreverse (js2-parse-argument-list))
8947 (js2-new-node-args pn) args
8948 end (js2-current-token-end)
8949 (js2-new-node-lp pn) (- pos beg)
8950 (js2-new-node-rp pn) (- end 1 beg))
8951 (apply #'js2-node-add-children pn args))
8952 (when (and js2-allow-rhino-new-expr-initializer
8953 (js2-match-token js2-LC))
8954 (setf init (js2-parse-object-literal)
8955 end (js2-node-end init)
8956 (js2-new-node-initializer pn) init)
8957 (js2-node-add-children pn init))
8958 (setf (js2-node-len pn) (- end beg))) ; end outer if
8959 (js2-parse-member-expr-tail allow-call-syntax pn)))
8960
8961 (defun js2-parse-member-expr-tail (allow-call-syntax pn)
8962 "Parse a chain of property/array accesses or function calls.
8963 Includes parsing for E4X operators like `..' and `.@'.
8964 If ALLOW-CALL-SYNTAX is nil, stops when we encounter a left-paren.
8965 Returns an expression tree that includes PN, the parent node."
8966 (let (tt
8967 (continue t))
8968 (while continue
8969 (setq tt (js2-get-token))
8970 (cond
8971 ((or (= tt js2-DOT) (= tt js2-DOTDOT))
8972 (setq pn (js2-parse-property-access tt pn)))
8973 ((= tt js2-DOTQUERY)
8974 (setq pn (js2-parse-dot-query pn)))
8975 ((= tt js2-LB)
8976 (setq pn (js2-parse-element-get pn)))
8977 ((= tt js2-LP)
8978 (js2-unget-token)
8979 (if allow-call-syntax
8980 (setq pn (js2-parse-function-call pn))
8981 (setq continue nil)))
8982 (t
8983 (js2-unget-token)
8984 (setq continue nil))))
8985 (if (>= js2-highlight-level 2)
8986 (js2-parse-highlight-member-expr-node pn))
8987 pn))
8988
8989 (defun js2-parse-dot-query (pn)
8990 "Parse a dot-query expression, e.g. foo.bar.(@name == 2)
8991 Last token parsed must be `js2-DOTQUERY'."
8992 (let ((pos (js2-node-pos pn))
8993 op-pos expr end)
8994 (js2-must-have-xml)
8995 (js2-set-requires-activation)
8996 (setq op-pos (js2-current-token-beg)
8997 expr (js2-parse-expr)
8998 end (js2-node-end expr)
8999 pn (make-js2-xml-dot-query-node :left pn
9000 :pos pos
9001 :op-pos op-pos
9002 :right expr))
9003 (js2-node-add-children pn
9004 (js2-xml-dot-query-node-left pn)
9005 (js2-xml-dot-query-node-right pn))
9006 (if (js2-must-match js2-RP "msg.no.paren")
9007 (setf (js2-xml-dot-query-node-rp pn) (js2-current-token-beg)
9008 end (js2-current-token-end)))
9009 (setf (js2-node-len pn) (- end pos))
9010 pn))
9011
9012 (defun js2-parse-element-get (pn)
9013 "Parse an element-get expression, e.g. foo[bar].
9014 Last token parsed must be `js2-RB'."
9015 (let ((lb (js2-current-token-beg))
9016 (pos (js2-node-pos pn))
9017 rb expr)
9018 (setq expr (js2-parse-expr))
9019 (if (js2-must-match js2-RB "msg.no.bracket.index")
9020 (setq rb (js2-current-token-beg)))
9021 (setq pn (make-js2-elem-get-node :target pn
9022 :pos pos
9023 :element expr
9024 :lb (js2-relpos lb pos)
9025 :rb (js2-relpos rb pos)
9026 :len (- (js2-current-token-end) pos)))
9027 (js2-node-add-children pn
9028 (js2-elem-get-node-target pn)
9029 (js2-elem-get-node-element pn))
9030 pn))
9031
9032 (defun js2-highlight-function-call (token)
9033 (when (eq (js2-token-type token) js2-NAME)
9034 (js2-record-face 'js2-function-call token)))
9035
9036 (defun js2-parse-function-call (pn)
9037 (js2-highlight-function-call (js2-current-token))
9038 (js2-get-token)
9039 (let (args
9040 (pos (js2-node-pos pn)))
9041 (setq pn (make-js2-call-node :pos pos
9042 :target pn
9043 :lp (- (js2-current-token-beg) pos)))
9044 (js2-node-add-children pn (js2-call-node-target pn))
9045 ;; Add the arguments to pn, if any are supplied.
9046 (setf args (nreverse (js2-parse-argument-list))
9047 (js2-call-node-rp pn) (- (js2-current-token-beg) pos)
9048 (js2-call-node-args pn) args)
9049 (apply #'js2-node-add-children pn args)
9050 (setf (js2-node-len pn) (- js2-ts-cursor pos))
9051 pn))
9052
9053 (defun js2-parse-property-access (tt pn)
9054 "Parse a property access, XML descendants access, or XML attr access."
9055 (let ((member-type-flags 0)
9056 (dot-pos (js2-current-token-beg))
9057 (dot-len (if (= tt js2-DOTDOT) 2 1))
9058 name
9059 ref ; right side of . or .. operator
9060 result)
9061 (when (= tt js2-DOTDOT)
9062 (js2-must-have-xml)
9063 (setq member-type-flags js2-descendants-flag))
9064 (if (not js2-compiler-xml-available)
9065 (progn
9066 (js2-must-match-prop-name "msg.no.name.after.dot")
9067 (setq name (js2-create-name-node t js2-GETPROP)
9068 result (make-js2-prop-get-node :left pn
9069 :pos (js2-current-token-beg)
9070 :right name
9071 :len (js2-current-token-len)))
9072 (js2-node-add-children result pn name)
9073 result)
9074 ;; otherwise look for XML operators
9075 (setf result (if (= tt js2-DOT)
9076 (make-js2-prop-get-node)
9077 (make-js2-infix-node :type js2-DOTDOT))
9078 (js2-node-pos result) (js2-node-pos pn)
9079 (js2-infix-node-op-pos result) dot-pos
9080 (js2-infix-node-left result) pn ; do this after setting position
9081 tt (js2-next-token))
9082 (cond
9083 ;; needed for generator.throw()
9084 ((= tt js2-THROW)
9085 (setq ref (js2-parse-property-name nil nil member-type-flags)))
9086 ;; handles: name, ns::name, ns::*, ns::[expr]
9087 ((js2-valid-prop-name-token tt)
9088 (setq ref (js2-parse-property-name -1 nil member-type-flags)))
9089 ;; handles: *, *::name, *::*, *::[expr]
9090 ((= tt js2-MUL)
9091 (setq ref (js2-parse-property-name nil "*" member-type-flags)))
9092 ;; handles: '@attr', '@ns::attr', '@ns::*', '@ns::[expr]', etc.
9093 ((= tt js2-XMLATTR)
9094 (setq result (js2-parse-attribute-access)))
9095 (t
9096 (js2-report-error "msg.no.name.after.dot" nil dot-pos dot-len)))
9097 (if ref
9098 (setf (js2-node-len result) (- (js2-node-end ref)
9099 (js2-node-pos result))
9100 (js2-infix-node-right result) ref))
9101 (if (js2-infix-node-p result)
9102 (js2-node-add-children result
9103 (js2-infix-node-left result)
9104 (js2-infix-node-right result)))
9105 result)))
9106
9107 (defun js2-parse-attribute-access ()
9108 "Parse an E4X XML attribute expression.
9109 This includes expressions of the forms:
9110
9111 @attr @ns::attr @ns::*
9112 @* @*::attr @*::*
9113 @[expr] @*::[expr] @ns::[expr]
9114
9115 Called if we peeked an '@' token."
9116 (let ((tt (js2-next-token))
9117 (at-pos (js2-current-token-beg)))
9118 (cond
9119 ;; handles: @name, @ns::name, @ns::*, @ns::[expr]
9120 ((js2-valid-prop-name-token tt)
9121 (js2-parse-property-name at-pos nil 0))
9122 ;; handles: @*, @*::name, @*::*, @*::[expr]
9123 ((= tt js2-MUL)
9124 (js2-parse-property-name (js2-current-token-beg) "*" 0))
9125 ;; handles @[expr]
9126 ((= tt js2-LB)
9127 (js2-parse-xml-elem-ref at-pos))
9128 (t
9129 (js2-report-error "msg.no.name.after.xmlAttr")
9130 ;; Avoid cascaded errors that happen if we make an error node here.
9131 (js2-parse-property-name (js2-current-token-beg) "" 0)))))
9132
9133 (defun js2-parse-property-name (at-pos s member-type-flags)
9134 "Check if :: follows name in which case it becomes qualified name.
9135
9136 AT-POS is a natural number if we just read an '@' token, else nil.
9137 S is the name or string that was matched: an identifier, 'throw' or '*'.
9138 MEMBER-TYPE-FLAGS is a bit set tracking whether we're a '.' or '..' child.
9139
9140 Returns a `js2-xml-ref-node' if it's an attribute access, a child of a '..'
9141 operator, or the name is followed by ::. For a plain name, returns a
9142 `js2-name-node'. Returns a `js2-error-node' for malformed XML expressions."
9143 (let ((pos (or at-pos (js2-current-token-beg)))
9144 colon-pos
9145 (name (js2-create-name-node t (js2-current-token-type) s))
9146 ns tt pn)
9147 (catch 'return
9148 (when (js2-match-token js2-COLONCOLON)
9149 (setq ns name
9150 colon-pos (js2-current-token-beg)
9151 tt (js2-next-token))
9152 (cond
9153 ;; handles name::name
9154 ((js2-valid-prop-name-token tt)
9155 (setq name (js2-create-name-node)))
9156 ;; handles name::*
9157 ((= tt js2-MUL)
9158 (setq name (js2-create-name-node nil nil "*")))
9159 ;; handles name::[expr]
9160 ((= tt js2-LB)
9161 (throw 'return (js2-parse-xml-elem-ref at-pos ns colon-pos)))
9162 (t
9163 (js2-report-error "msg.no.name.after.coloncolon"))))
9164 (if (and (null ns) (zerop member-type-flags))
9165 name
9166 (prog1
9167 (setq pn
9168 (make-js2-xml-prop-ref-node :pos pos
9169 :len (- (js2-node-end name) pos)
9170 :at-pos at-pos
9171 :colon-pos colon-pos
9172 :propname name))
9173 (js2-node-add-children pn name))))))
9174
9175 (defun js2-parse-xml-elem-ref (at-pos &optional namespace colon-pos)
9176 "Parse the [expr] portion of an xml element reference.
9177 For instance, @[expr], @*::[expr], or ns::[expr]."
9178 (let* ((lb (js2-current-token-beg))
9179 (pos (or at-pos lb))
9180 rb
9181 (expr (js2-parse-expr))
9182 (end (js2-node-end expr))
9183 pn)
9184 (if (js2-must-match js2-RB "msg.no.bracket.index")
9185 (setq rb (js2-current-token-beg)
9186 end (js2-current-token-end)))
9187 (prog1
9188 (setq pn
9189 (make-js2-xml-elem-ref-node :pos pos
9190 :len (- end pos)
9191 :namespace namespace
9192 :colon-pos colon-pos
9193 :at-pos at-pos
9194 :expr expr
9195 :lb (js2-relpos lb pos)
9196 :rb (js2-relpos rb pos)))
9197 (js2-node-add-children pn namespace expr))))
9198
9199 (defun js2-parse-destruct-primary-expr ()
9200 (let ((js2-is-in-destructuring t))
9201 (js2-parse-primary-expr)))
9202
9203 (defun js2-parse-primary-expr ()
9204 "Parse a literal (leaf) expression of some sort.
9205 Includes complex literals such as functions, object-literals,
9206 array-literals, array comprehensions and regular expressions."
9207 (let (pn ; parent node (usually return value)
9208 tt
9209 px-pos ; paren-expr pos
9210 len
9211 flags ; regexp flags
9212 expr)
9213 (setq tt (js2-current-token-type))
9214 (cond
9215 ((= tt js2-FUNCTION)
9216 (js2-parse-function-expr))
9217 ((= tt js2-LB)
9218 (js2-parse-array-comp-or-literal))
9219 ((= tt js2-LC)
9220 (js2-parse-object-literal))
9221 ((= tt js2-LET)
9222 (js2-parse-let (js2-current-token-beg)))
9223 ((= tt js2-LP)
9224 (js2-parse-paren-expr-or-generator-comp))
9225 ((= tt js2-XMLATTR)
9226 (js2-must-have-xml)
9227 (js2-parse-attribute-access))
9228 ((= tt js2-NAME)
9229 (js2-parse-name tt))
9230 ((= tt js2-NUMBER)
9231 (make-js2-number-node))
9232 ((= tt js2-STRING)
9233 (prog1
9234 (make-js2-string-node)
9235 (js2-record-face 'font-lock-string-face)))
9236 ((or (= tt js2-DIV) (= tt js2-ASSIGN_DIV))
9237 ;; Got / or /= which in this context means a regexp literal
9238 (setq px-pos (js2-current-token-beg))
9239 (setq flags (js2-read-regexp tt))
9240 (prog1
9241 (make-js2-regexp-node :pos px-pos
9242 :len (- js2-ts-cursor px-pos)
9243 :value (js2-current-token-string)
9244 :flags flags)
9245 (js2-set-face px-pos js2-ts-cursor 'font-lock-string-face 'record)
9246 (js2-record-text-property px-pos js2-ts-cursor 'syntax-table '(2))))
9247 ((or (= tt js2-NULL)
9248 (= tt js2-THIS)
9249 (= tt js2-FALSE)
9250 (= tt js2-TRUE))
9251 (make-js2-keyword-node :type tt))
9252 ((= tt js2-RP)
9253 ;; Not valid expression syntax, but this is valid in an arrow
9254 ;; function with no params: () => body.
9255 (if (eq (js2-peek-token) js2-ARROW)
9256 (progn
9257 (js2-unget-token) ; Put back the right paren.
9258 ;; Return whatever, it will hopefully be rewinded and
9259 ;; reparsed when we reach the =>.
9260 (make-js2-keyword-node :type js2-NULL))
9261 (js2-report-error "msg.syntax")
9262 (make-js2-error-node)))
9263 ((= tt js2-TRIPLEDOT)
9264 ;; Likewise, only valid in an arrow function with a rest param.
9265 (if (and (js2-match-token js2-NAME)
9266 (js2-match-token js2-RP)
9267 (eq (js2-peek-token) js2-ARROW))
9268 (progn
9269 (js2-unget-token) ; Put back the right paren.
9270 ;; See the previous case.
9271 (make-js2-keyword-node :type js2-NULL))
9272 (js2-report-error "msg.syntax")
9273 (make-js2-error-node)))
9274 ((= tt js2-RESERVED)
9275 (js2-report-error "msg.reserved.id")
9276 (make-js2-name-node))
9277 ((= tt js2-ERROR)
9278 ;; the scanner or one of its subroutines reported the error.
9279 (make-js2-error-node))
9280 ((= tt js2-EOF)
9281 (setq px-pos (point-at-bol)
9282 len (- js2-ts-cursor px-pos))
9283 (js2-report-error "msg.unexpected.eof" nil px-pos len)
9284 (make-js2-error-node :pos (1- js2-ts-cursor)))
9285 (t
9286 (js2-report-error "msg.syntax")
9287 (make-js2-error-node)))))
9288
9289 (defun js2-parse-name (_tt)
9290 (let ((name (js2-current-token-string))
9291 node)
9292 (setq node (if js2-compiler-xml-available
9293 (js2-parse-property-name nil name 0)
9294 (js2-create-name-node 'check-activation nil name)))
9295 (if js2-highlight-external-variables
9296 (js2-record-name-node node))
9297 node))
9298
9299 (defun js2-parse-warn-trailing-comma (msg pos elems comma-pos)
9300 (js2-add-strict-warning
9301 msg nil
9302 ;; back up from comma to beginning of line or array/objlit
9303 (max (if elems
9304 (js2-node-pos (car elems))
9305 pos)
9306 (save-excursion
9307 (goto-char comma-pos)
9308 (back-to-indentation)
9309 (point)))
9310 comma-pos))
9311
9312 (defun js2-parse-array-comp-or-literal ()
9313 (let ((pos (js2-current-token-beg)))
9314 (if (and (>= js2-language-version 200)
9315 (js2-match-token js2-FOR))
9316 (js2-parse-array-comp pos)
9317 (js2-parse-array-literal pos))))
9318
9319 (defun js2-parse-array-literal (pos)
9320 (let ((after-lb-or-comma t)
9321 after-comma tt elems pn
9322 (continue t))
9323 (unless js2-is-in-destructuring
9324 (js2-push-scope (make-js2-scope))) ; for the legacy array comp
9325 (while continue
9326 (setq tt (js2-get-token))
9327 (cond
9328 ;; comma
9329 ((= tt js2-COMMA)
9330 (setq after-comma (js2-current-token-end))
9331 (if (not after-lb-or-comma)
9332 (setq after-lb-or-comma t)
9333 (push nil elems)))
9334 ;; end of array
9335 ((or (= tt js2-RB)
9336 (= tt js2-EOF)) ; prevent infinite loop
9337 (if (= tt js2-EOF)
9338 (js2-report-error "msg.no.bracket.arg" nil pos))
9339 (when (and after-comma (< js2-language-version 170))
9340 (js2-parse-warn-trailing-comma "msg.array.trailing.comma"
9341 pos (remove nil elems) after-comma))
9342 (setq continue nil
9343 pn (make-js2-array-node :pos pos
9344 :len (- js2-ts-cursor pos)
9345 :elems (nreverse elems)))
9346 (apply #'js2-node-add-children pn (js2-array-node-elems pn)))
9347 ;; destructuring binding
9348 (js2-is-in-destructuring
9349 (push (if (or (= tt js2-LC)
9350 (= tt js2-LB)
9351 (= tt js2-NAME))
9352 ;; [a, b, c] | {a, b, c} | {a:x, b:y, c:z} | a
9353 (js2-parse-destruct-primary-expr)
9354 ;; invalid pattern
9355 (js2-report-error "msg.bad.var")
9356 (make-js2-error-node))
9357 elems)
9358 (setq after-lb-or-comma nil
9359 after-comma nil))
9360 ;; array comp
9361 ((and (>= js2-language-version 170)
9362 (= tt js2-FOR) ; check for array comprehension
9363 (not after-lb-or-comma) ; "for" can't follow a comma
9364 elems ; must have at least 1 element
9365 (not (cdr elems))) ; but no 2nd element
9366 (js2-unget-token)
9367 (setf continue nil
9368 pn (js2-parse-legacy-array-comp (car elems) pos)))
9369 ;; another element
9370 (t
9371 (unless after-lb-or-comma
9372 (js2-report-error "msg.no.bracket.arg"))
9373 (if (and (= tt js2-TRIPLEDOT)
9374 (>= js2-language-version 200))
9375 ;; spread operator
9376 (push (js2-make-unary tt 'js2-parse-assign-expr)
9377 elems)
9378 (js2-unget-token)
9379 (push (js2-parse-assign-expr) elems))
9380 (setq after-lb-or-comma nil
9381 after-comma nil))))
9382 (unless js2-is-in-destructuring
9383 (js2-pop-scope))
9384 pn))
9385
9386 (defun js2-parse-legacy-array-comp (expr pos)
9387 "Parse a legacy array comprehension (JavaScript 1.7).
9388 EXPR is the first expression after the opening left-bracket.
9389 POS is the beginning of the LB token preceding EXPR.
9390 We should have just parsed the 'for' keyword before calling this function."
9391 (let ((current-scope js2-current-scope)
9392 loops first filter result)
9393 (unwind-protect
9394 (progn
9395 (while (js2-match-token js2-FOR)
9396 (let ((loop (make-js2-comp-loop-node)))
9397 (js2-push-scope loop)
9398 (push loop loops)
9399 (js2-parse-comp-loop loop)))
9400 ;; First loop takes expr scope's parent.
9401 (setf (js2-scope-parent-scope (setq first (car (last loops))))
9402 (js2-scope-parent-scope current-scope))
9403 ;; Set expr scope's parent to the last loop.
9404 (setf (js2-scope-parent-scope current-scope) (car loops))
9405 (if (/= (js2-get-token) js2-IF)
9406 (js2-unget-token)
9407 (setq filter (js2-parse-condition))))
9408 (dotimes (_ (1- (length loops)))
9409 (js2-pop-scope)))
9410 (js2-must-match js2-RB "msg.no.bracket.arg" pos)
9411 (setq result (make-js2-comp-node :pos pos
9412 :len (- js2-ts-cursor pos)
9413 :result expr
9414 :loops (nreverse loops)
9415 :filters (and filter (list (car filter)))
9416 :form 'LEGACY_ARRAY))
9417 (apply #'js2-node-add-children result expr (car filter)
9418 (js2-comp-node-loops result))
9419 result))
9420
9421 (defun js2-parse-array-comp (pos)
9422 "Parse an ES6 array comprehension.
9423 POS is the beginning of the LB token.
9424 We should have just parsed the 'for' keyword before calling this function."
9425 (let ((pn (js2-parse-comprehension pos 'ARRAY)))
9426 (js2-must-match js2-RB "msg.no.bracket.arg" pos)
9427 pn))
9428
9429 (defun js2-parse-generator-comp (pos)
9430 (let* ((js2-nesting-of-function (1+ js2-nesting-of-function))
9431 (js2-current-script-or-fn
9432 (make-js2-function-node :generator-type 'COMPREHENSION))
9433 (pn (js2-parse-comprehension pos 'STAR_GENERATOR)))
9434 (js2-must-match js2-RP "msg.no.paren" pos)
9435 pn))
9436
9437 (defun js2-parse-comprehension (pos form)
9438 (let (loops filters expr result)
9439 (unwind-protect
9440 (progn
9441 (js2-unget-token)
9442 (while (js2-match-token js2-FOR)
9443 (let ((loop (make-js2-comp-loop-node)))
9444 (js2-push-scope loop)
9445 (push loop loops)
9446 (js2-parse-comp-loop loop)))
9447 (while (js2-match-token js2-IF)
9448 (push (car (js2-parse-condition)) filters))
9449 (setq expr (js2-parse-assign-expr)))
9450 (dolist (_ loops)
9451 (js2-pop-scope)))
9452 (setq result (make-js2-comp-node :pos pos
9453 :len (- js2-ts-cursor pos)
9454 :result expr
9455 :loops (nreverse loops)
9456 :filters (nreverse filters)
9457 :form form))
9458 (apply #'js2-node-add-children result (js2-comp-node-loops result))
9459 (apply #'js2-node-add-children result expr (js2-comp-node-filters result))
9460 result))
9461
9462 (defun js2-parse-comp-loop (pn &optional only-of-p)
9463 "Parse a 'for [each] (foo [in|of] bar)' expression in an Array comprehension.
9464 The current token should be the initial FOR.
9465 If ONLY-OF-P is non-nil, only the 'for (foo of bar)' form is allowed."
9466 (let ((pos (js2-comp-loop-node-pos pn))
9467 tt iter obj foreach-p forof-p in-pos each-pos lp rp)
9468 (when (and (not only-of-p) (js2-match-token js2-NAME))
9469 (if (string= (js2-current-token-string) "each")
9470 (progn
9471 (setq foreach-p t
9472 each-pos (- (js2-current-token-beg) pos)) ; relative
9473 (js2-record-face 'font-lock-keyword-face))
9474 (js2-report-error "msg.no.paren.for")))
9475 (if (js2-must-match js2-LP "msg.no.paren.for")
9476 (setq lp (- (js2-current-token-beg) pos)))
9477 (setq tt (js2-peek-token))
9478 (cond
9479 ((or (= tt js2-LB)
9480 (= tt js2-LC))
9481 (js2-get-token)
9482 (setq iter (js2-parse-destruct-primary-expr))
9483 (js2-define-destruct-symbols iter js2-LET
9484 'font-lock-variable-name-face t))
9485 ((js2-match-token js2-NAME)
9486 (setq iter (js2-create-name-node)))
9487 (t
9488 (js2-report-error "msg.bad.var")))
9489 ;; Define as a let since we want the scope of the variable to
9490 ;; be restricted to the array comprehension
9491 (if (js2-name-node-p iter)
9492 (js2-define-symbol js2-LET (js2-name-node-name iter) pn t))
9493 (if (or (and (not only-of-p) (js2-match-token js2-IN))
9494 (and (>= js2-language-version 200)
9495 (js2-match-contextual-kwd "of")
9496 (setq forof-p t)))
9497 (setq in-pos (- (js2-current-token-beg) pos))
9498 (js2-report-error "msg.in.after.for.name"))
9499 (setq obj (js2-parse-expr))
9500 (if (js2-must-match js2-RP "msg.no.paren.for.ctrl")
9501 (setq rp (- (js2-current-token-beg) pos)))
9502 (setf (js2-node-pos pn) pos
9503 (js2-node-len pn) (- js2-ts-cursor pos)
9504 (js2-comp-loop-node-iterator pn) iter
9505 (js2-comp-loop-node-object pn) obj
9506 (js2-comp-loop-node-in-pos pn) in-pos
9507 (js2-comp-loop-node-each-pos pn) each-pos
9508 (js2-comp-loop-node-foreach-p pn) foreach-p
9509 (js2-comp-loop-node-forof-p pn) forof-p
9510 (js2-comp-loop-node-lp pn) lp
9511 (js2-comp-loop-node-rp pn) rp)
9512 (js2-node-add-children pn iter obj)
9513 pn))
9514
9515 (defun js2-parse-object-literal ()
9516 (let ((pos (js2-current-token-beg))
9517 tt elems result after-comma
9518 (continue t))
9519 (while continue
9520 (setq tt (js2-get-token))
9521 (cond
9522 ;; {foo: ...}, {'foo': ...}, {foo, bar, ...},
9523 ;; {get foo() {...}}, or {set foo(x) {...}}
9524 ((or (js2-valid-prop-name-token tt)
9525 (= tt js2-STRING))
9526 (setq after-comma nil
9527 result (js2-parse-named-prop tt))
9528 (if (and (null result)
9529 (not js2-recover-from-parse-errors))
9530 (setq continue nil)
9531 (push result elems)))
9532 ;; {12: x} or {10.7: x}
9533 ((= tt js2-NUMBER)
9534 (setq after-comma nil)
9535 (push (js2-parse-plain-property (make-js2-number-node)) elems))
9536 ;; trailing comma
9537 ((= tt js2-RC)
9538 (js2-unget-token)
9539 (setq continue nil)
9540 (if after-comma
9541 (js2-parse-warn-trailing-comma "msg.extra.trailing.comma"
9542 pos elems after-comma)))
9543 (t
9544 (js2-report-error "msg.bad.prop")
9545 (unless js2-recover-from-parse-errors
9546 (setq continue nil)))) ; end switch
9547 (if (js2-match-token js2-COMMA)
9548 (setq after-comma (js2-current-token-end))
9549 (setq continue nil))) ; end loop
9550 (js2-must-match js2-RC "msg.no.brace.prop")
9551 (setq result (make-js2-object-node :pos pos
9552 :len (- js2-ts-cursor pos)
9553 :elems (nreverse elems)))
9554 (apply #'js2-node-add-children result (js2-object-node-elems result))
9555 result))
9556
9557 (defun js2-parse-named-prop (tt)
9558 "Parse a name, string, or getter/setter object property.
9559 When `js2-is-in-destructuring' is t, forms like {a, b, c} will be permitted."
9560 (let ((string-prop (and (= tt js2-STRING)
9561 (make-js2-string-node)))
9562 expr
9563 (ppos (js2-current-token-beg))
9564 (pend (js2-current-token-end))
9565 (name (js2-create-name-node))
9566 (prop (js2-current-token-string)))
9567 (cond
9568 ;; getter/setter prop
9569 ((and (= tt js2-NAME)
9570 (= (js2-peek-token) js2-NAME)
9571 (or (string= prop "get")
9572 (string= prop "set")))
9573 (js2-get-token)
9574 (js2-set-face ppos pend 'font-lock-keyword-face 'record) ; get/set
9575 (js2-record-face 'font-lock-function-name-face) ; for peeked name
9576 (setq name (js2-create-name-node)) ; discard get/set & use peeked name
9577 (js2-parse-getter-setter-prop ppos name (string= prop "get")))
9578 ;; Abbreviated destructuring binding, e.g. {a, b} = c;
9579 ;; XXX: To be honest, the value of `js2-is-in-destructuring' becomes t only
9580 ;; when patterns are used in variable declarations, function parameters,
9581 ;; catch-clause, and iterators.
9582 ;; We have to set `js2-is-in-destructuring' to t when the current
9583 ;; expressions are on the left side of any assignment, but it's difficult
9584 ;; because it requires looking ahead of expression.
9585 ((and js2-is-in-destructuring
9586 (= tt js2-NAME)
9587 (let ((ctk (js2-peek-token)))
9588 (or (= ctk js2-COMMA)
9589 (= ctk js2-RC)
9590 (js2-valid-prop-name-token ctk))))
9591 name)
9592 ;; regular prop
9593 (t
9594 (prog1
9595 (setq expr (js2-parse-plain-property (or string-prop name)))
9596 (js2-set-face ppos pend
9597 (if (js2-function-node-p
9598 (js2-object-prop-node-right expr))
9599 'font-lock-function-name-face
9600 'font-lock-variable-name-face)
9601 'record))))))
9602
9603 (defun js2-parse-plain-property (prop)
9604 "Parse a non-getter/setter property in an object literal.
9605 PROP is the node representing the property: a number, name or string."
9606 (js2-must-match js2-COLON "msg.no.colon.prop")
9607 (let* ((pos (js2-node-pos prop))
9608 (colon (- (js2-current-token-beg) pos))
9609 (expr (js2-parse-assign-expr))
9610 (result (make-js2-object-prop-node
9611 :pos pos
9612 ;; don't include last consumed token in length
9613 :len (- (+ (js2-node-pos expr)
9614 (js2-node-len expr))
9615 pos)
9616 :left prop
9617 :right expr
9618 :op-pos colon)))
9619 (js2-node-add-children result prop expr)
9620 result))
9621
9622 (defun js2-parse-getter-setter-prop (pos prop get-p)
9623 "Parse getter or setter property in an object literal.
9624 JavaScript syntax is:
9625
9626 { get foo() {...}, set foo(x) {...} }
9627
9628 and expression closure style is also supported
9629
9630 { get foo() x, set foo(x) _x = x }
9631
9632 POS is the start position of the `get' or `set' keyword.
9633 PROP is the `js2-name-node' representing the property name.
9634 GET-P is non-nil if the keyword was `get'."
9635 (let ((type (if get-p js2-GET js2-SET))
9636 result end
9637 (fn (js2-parse-function-expr)))
9638 ;; it has to be an anonymous function, as we already parsed the name
9639 (if (/= (js2-node-type fn) js2-FUNCTION)
9640 (js2-report-error "msg.bad.prop")
9641 (if (plusp (length (js2-function-name fn)))
9642 (js2-report-error "msg.bad.prop")))
9643 (js2-node-set-prop fn 'GETTER_SETTER type) ; for codegen
9644 (setq end (js2-node-end fn)
9645 result (make-js2-getter-setter-node :type type
9646 :pos pos
9647 :len (- end pos)
9648 :left prop
9649 :right fn))
9650 (js2-node-add-children result prop fn)
9651 result))
9652
9653 (defun js2-create-name-node (&optional check-activation-p token string)
9654 "Create a name node using the current token and, optionally, STRING.
9655 And, if CHECK-ACTIVATION-P is non-nil, use the value of TOKEN."
9656 (let* ((beg (js2-current-token-beg))
9657 (tt (js2-current-token-type))
9658 (s (or string
9659 (if (= js2-NAME tt)
9660 (js2-current-token-string)
9661 (js2-tt-name tt))))
9662 name)
9663 (setq name (make-js2-name-node :pos beg
9664 :name s
9665 :len (length s)))
9666 (if check-activation-p
9667 (js2-check-activation-name s (or token js2-NAME)))
9668 name))
9669
9670 ;;; Indentation support
9671
9672 ;; This indenter is based on Karl Landström's "javascript.el" indenter.
9673 ;; Karl cleverly deduces that the desired indentation level is often a
9674 ;; function of paren/bracket/brace nesting depth, which can be determined
9675 ;; quickly via the built-in `parse-partial-sexp' function. His indenter
9676 ;; then does some equally clever checks to see if we're in the context of a
9677 ;; substatement of a possibly braceless statement keyword such as if, while,
9678 ;; or finally. This approach yields pretty good results.
9679
9680 ;; The indenter is often "wrong", however, and needs to be overridden.
9681 ;; The right long-term solution is probably to emulate (or integrate
9682 ;; with) cc-engine, but it's a nontrivial amount of coding. Even when a
9683 ;; parse tree from `js2-parse' is present, which is not true at the
9684 ;; moment the user is typing, computing indentation is still thousands
9685 ;; of lines of code to handle every possible syntactic edge case.
9686
9687 ;; In the meantime, the compromise solution is that we offer a "bounce
9688 ;; indenter", configured with `js2-bounce-indent-p', which cycles the
9689 ;; current line indent among various likely guess points. This approach
9690 ;; is far from perfect, but should at least make it slightly easier to
9691 ;; move the line towards its desired indentation when manually
9692 ;; overriding Karl's heuristic nesting guesser.
9693
9694 ;; I've made miscellaneous tweaks to Karl's code to handle some Ecma
9695 ;; extensions such as `let' and Array comprehensions. Major kudos to
9696 ;; Karl for coming up with the initial approach, which packs a lot of
9697 ;; punch for so little code.
9698
9699 (defconst js2-possibly-braceless-keywords-re
9700 (concat "else[ \t]+if\\|for[ \t]+each\\|"
9701 (regexp-opt '("catch" "do" "else" "finally" "for" "if"
9702 "try" "while" "with" "let")))
9703 "Regular expression matching keywords that are optionally
9704 followed by an opening brace.")
9705
9706 (defconst js2-indent-operator-re
9707 (concat "[-+*/%<>=&^|?:.]\\([^-+*/]\\|$\\)\\|"
9708 (regexp-opt '("in" "instanceof") 'words))
9709 "Regular expression matching operators that affect indentation
9710 of continued expressions.")
9711
9712 (defconst js2-declaration-keyword-re
9713 (regexp-opt '("var" "let" "const") 'words)
9714 "Regular expression matching variable declaration keywords.")
9715
9716 (defun js2-re-search-forward-inner (regexp &optional bound count)
9717 "Auxiliary function for `js2-re-search-forward'."
9718 (let (parse saved-point)
9719 (while (> count 0)
9720 (re-search-forward regexp bound)
9721 (setq parse (if saved-point
9722 (parse-partial-sexp saved-point (point))
9723 (syntax-ppss (point))))
9724 (cond ((nth 3 parse)
9725 (re-search-forward
9726 (concat "\\(\\=\\|[^\\]\\|^\\)" (string (nth 3 parse)))
9727 (save-excursion (end-of-line) (point)) t))
9728 ((nth 7 parse)
9729 (forward-line))
9730 ((or (nth 4 parse)
9731 (and (eq (char-before) ?\/) (eq (char-after) ?\*)))
9732 (re-search-forward "\\*/"))
9733 (t
9734 (setq count (1- count))))
9735 (setq saved-point (point))))
9736 (point))
9737
9738 (defun js2-re-search-forward (regexp &optional bound noerror count)
9739 "Search forward but ignore strings and comments.
9740 Invokes `re-search-forward' but treats the buffer as if strings
9741 and comments have been removed."
9742 (let ((saved-point (point)))
9743 (condition-case err
9744 (cond ((null count)
9745 (js2-re-search-forward-inner regexp bound 1))
9746 ((< count 0)
9747 (js2-re-search-backward-inner regexp bound (- count)))
9748 ((> count 0)
9749 (js2-re-search-forward-inner regexp bound count)))
9750 (search-failed
9751 (goto-char saved-point)
9752 (unless noerror
9753 (error (error-message-string err)))))))
9754
9755 (defun js2-re-search-backward-inner (regexp &optional bound count)
9756 "Auxiliary function for `js2-re-search-backward'."
9757 (let (parse)
9758 (while (> count 0)
9759 (re-search-backward regexp bound)
9760 (setq parse (syntax-ppss (point)))
9761 (cond ((nth 3 parse)
9762 (re-search-backward
9763 (concat "\\([^\\]\\|^\\)" (string (nth 3 parse)))
9764 (line-beginning-position) t))
9765 ((nth 7 parse)
9766 (goto-char (nth 8 parse)))
9767 ((or (nth 4 parse)
9768 (and (eq (char-before) ?/) (eq (char-after) ?*)))
9769 (re-search-backward "/\\*"))
9770 (t
9771 (setq count (1- count))))))
9772 (point))
9773
9774 (defun js2-re-search-backward (regexp &optional bound noerror count)
9775 "Search backward but ignore strings and comments.
9776 Invokes `re-search-backward' but treats the buffer as if strings
9777 and comments have been removed."
9778 (let ((saved-point (point)))
9779 (condition-case err
9780 (cond ((null count)
9781 (js2-re-search-backward-inner regexp bound 1))
9782 ((< count 0)
9783 (js2-re-search-forward-inner regexp bound (- count)))
9784 ((> count 0)
9785 (js2-re-search-backward-inner regexp bound count)))
9786 (search-failed
9787 (goto-char saved-point)
9788 (unless noerror
9789 (error (error-message-string err)))))))
9790
9791 (defun js2-looking-at-operator-p ()
9792 "Return non-nil if text after point is a non-comma operator."
9793 (and (looking-at js2-indent-operator-re)
9794 (or (not (looking-at ":"))
9795 (save-excursion
9796 (and (js2-re-search-backward "[?:{]\\|\\<case\\>" nil t)
9797 (looking-at "?"))))))
9798
9799 (defun js2-continued-expression-p ()
9800 "Return non-nil if the current line continues an expression."
9801 (save-excursion
9802 (back-to-indentation)
9803 (or (js2-looking-at-operator-p)
9804 (when (catch 'found
9805 (while (and (re-search-backward "\n" nil t)
9806 (let ((state (syntax-ppss)))
9807 (when (nth 4 state)
9808 (goto-char (nth 8 state))) ;; skip comments
9809 (skip-chars-backward " \t")
9810 (if (bolp)
9811 t
9812 (throw 'found t))))))
9813 (backward-char)
9814 (when (js2-looking-at-operator-p)
9815 (backward-char)
9816 (not (looking-at "\\*\\|++\\|--\\|/[/*]")))))))
9817
9818 (defun js2-end-of-do-while-loop-p ()
9819 "Return non-nil if word after point is `while' of a do-while
9820 statement, else returns nil. A braceless do-while statement
9821 spanning several lines requires that the start of the loop is
9822 indented to the same column as the current line."
9823 (interactive)
9824 (save-excursion
9825 (when (looking-at "\\s-*\\<while\\>")
9826 (if (save-excursion
9827 (skip-chars-backward "[ \t\n]*}")
9828 (looking-at "[ \t\n]*}"))
9829 (save-excursion
9830 (backward-list) (backward-word 1) (looking-at "\\<do\\>"))
9831 (js2-re-search-backward "\\<do\\>" (point-at-bol) t)
9832 (or (looking-at "\\<do\\>")
9833 (let ((saved-indent (current-indentation)))
9834 (while (and (js2-re-search-backward "^[ \t]*\\<" nil t)
9835 (/= (current-indentation) saved-indent)))
9836 (and (looking-at "[ \t]*\\<do\\>")
9837 (not (js2-re-search-forward
9838 "\\<while\\>" (point-at-eol) t))
9839 (= (current-indentation) saved-indent))))))))
9840
9841 (defun js2-multiline-decl-indentation ()
9842 "Return the declaration indentation column if the current line belongs
9843 to a multiline declaration statement. See `js2-pretty-multiline-declarations'."
9844 (let (forward-sexp-function ; use Lisp version
9845 at-opening-bracket)
9846 (save-excursion
9847 (back-to-indentation)
9848 (when (not (looking-at js2-declaration-keyword-re))
9849 (when (looking-at js2-indent-operator-re)
9850 (goto-char (match-end 0))) ; continued expressions are ok
9851 (while (and (not at-opening-bracket)
9852 (not (bobp))
9853 (let ((pos (point)))
9854 (save-excursion
9855 (js2-backward-sws)
9856 (or (eq (char-before) ?,)
9857 (and (not (eq (char-before) ?\;))
9858 (prog2 (skip-syntax-backward ".")
9859 (looking-at js2-indent-operator-re)
9860 (js2-backward-sws))
9861 (not (eq (char-before) ?\;)))
9862 (js2-same-line pos)))))
9863 (condition-case _
9864 (backward-sexp)
9865 (scan-error (setq at-opening-bracket t))))
9866 (when (looking-at js2-declaration-keyword-re)
9867 (goto-char (match-end 0))
9868 (1+ (current-column)))))))
9869
9870 (defun js2-ctrl-statement-indentation ()
9871 "Return the proper indentation of current line if it is a control statement.
9872 Returns an indentation if this line starts the body of a control
9873 statement without braces, else returns nil."
9874 (let (forward-sexp-function)
9875 (save-excursion
9876 (back-to-indentation)
9877 (when (and (not (js2-same-line (point-min)))
9878 (not (looking-at "{"))
9879 (js2-re-search-backward "[[:graph:]]" nil t)
9880 (not (looking-at "[{([]"))
9881 (progn
9882 (forward-char)
9883 (when (= (char-before) ?\))
9884 ;; scan-sexps sometimes throws an error
9885 (ignore-errors (backward-sexp))
9886 (skip-chars-backward " \t" (point-at-bol)))
9887 (let ((pt (point)))
9888 (back-to-indentation)
9889 (when (looking-at "}[ \t]*")
9890 (goto-char (match-end 0)))
9891 (and (looking-at js2-possibly-braceless-keywords-re)
9892 (= (match-end 0) pt)
9893 (not (js2-end-of-do-while-loop-p))))))
9894 (+ (current-indentation) js2-basic-offset)))))
9895
9896 (defun js2-indent-in-array-comp (parse-status)
9897 "Return non-nil if we think we're in an array comprehension.
9898 In particular, return the buffer position of the first `for' kwd."
9899 (let ((bracket (nth 1 parse-status))
9900 (end (point)))
9901 (when bracket
9902 (save-excursion
9903 (goto-char bracket)
9904 (when (looking-at "\\[")
9905 (forward-char 1)
9906 (js2-forward-sws)
9907 (if (looking-at "[[{]")
9908 (let (forward-sexp-function) ; use Lisp version
9909 (forward-sexp) ; skip destructuring form
9910 (js2-forward-sws)
9911 (if (and (/= (char-after) ?,) ; regular array
9912 (looking-at "for"))
9913 (match-beginning 0)))
9914 ;; to skip arbitrary expressions we need the parser,
9915 ;; so we'll just guess at it.
9916 (if (and (> end (point)) ; not empty literal
9917 (re-search-forward "[^,]]* \\(for\\) " end t)
9918 ;; not inside comment or string literal
9919 (let ((state (parse-partial-sexp bracket (point))))
9920 (not (or (nth 3 state) (nth 4 state)))))
9921 (match-beginning 1))))))))
9922
9923 (defun js2-array-comp-indentation (parse-status for-kwd)
9924 (if (js2-same-line for-kwd)
9925 ;; first continuation line
9926 (save-excursion
9927 (goto-char (nth 1 parse-status))
9928 (forward-char 1)
9929 (skip-chars-forward " \t")
9930 (current-column))
9931 (save-excursion
9932 (goto-char for-kwd)
9933 (current-column))))
9934
9935 (defun js2-proper-indentation (parse-status)
9936 "Return the proper indentation for the current line."
9937 (save-excursion
9938 (back-to-indentation)
9939 (let* ((ctrl-stmt-indent (js2-ctrl-statement-indentation))
9940 (at-closing-bracket (looking-at "[]})]"))
9941 (same-indent-p (or at-closing-bracket
9942 (looking-at "\\<case\\>[^:]")
9943 (and (looking-at "\\<default:")
9944 (save-excursion
9945 (js2-backward-sws)
9946 (not (memq (char-before) '(?, ?{)))))))
9947 (continued-expr-p (js2-continued-expression-p))
9948 (declaration-indent (and js2-pretty-multiline-declarations
9949 (js2-multiline-decl-indentation)))
9950 (bracket (nth 1 parse-status))
9951 beg indent)
9952 (cond
9953 ;; indent array comprehension continuation lines specially
9954 ((and bracket
9955 (>= js2-language-version 170)
9956 (not (js2-same-line bracket))
9957 (setq beg (js2-indent-in-array-comp parse-status))
9958 (>= (point) (save-excursion
9959 (goto-char beg)
9960 (point-at-bol)))) ; at or after first loop?
9961 (js2-array-comp-indentation parse-status beg))
9962
9963 (ctrl-stmt-indent)
9964
9965 ((and declaration-indent continued-expr-p)
9966 (+ declaration-indent js2-basic-offset))
9967
9968 (declaration-indent)
9969
9970 (bracket
9971 (goto-char bracket)
9972 (cond
9973 ((looking-at "[({[][ \t]*\\(/[/*]\\|$\\)")
9974 (when (save-excursion (skip-chars-backward " \t)")
9975 (looking-at ")"))
9976 (backward-list))
9977 (back-to-indentation)
9978 (and (eq js2-pretty-multiline-declarations 'all)
9979 (looking-at js2-declaration-keyword-re)
9980 (goto-char (1+ (match-end 0))))
9981 (setq indent
9982 (cond (same-indent-p
9983 (current-column))
9984 (continued-expr-p
9985 (+ (current-column) (* 2 js2-basic-offset)))
9986 (t
9987 (+ (current-column) js2-basic-offset))))
9988 (if (and js2-indent-switch-body
9989 (not at-closing-bracket)
9990 (looking-at "\\_<switch\\_>"))
9991 (+ indent js2-basic-offset)
9992 indent))
9993 (t
9994 (unless same-indent-p
9995 (forward-char)
9996 (skip-chars-forward " \t"))
9997 (current-column))))
9998
9999 (continued-expr-p js2-basic-offset)
10000
10001 (t 0)))))
10002
10003 (defun js2-lineup-comment (parse-status)
10004 "Indent a multi-line block comment continuation line."
10005 (let* ((beg (nth 8 parse-status))
10006 (first-line (js2-same-line beg))
10007 (offset (save-excursion
10008 (goto-char beg)
10009 (if (looking-at "/\\*")
10010 (+ 1 (current-column))
10011 0))))
10012 (unless first-line
10013 (indent-line-to offset))))
10014
10015 (defun js2-backward-sws ()
10016 "Move backward through whitespace and comments."
10017 (interactive)
10018 (while (forward-comment -1)))
10019
10020 (defun js2-forward-sws ()
10021 "Move forward through whitespace and comments."
10022 (interactive)
10023 (while (forward-comment 1)))
10024
10025 (defun js2-current-indent (&optional pos)
10026 "Return column of indentation on current line.
10027 If POS is non-nil, go to that point and return indentation for that line."
10028 (save-excursion
10029 (if pos
10030 (goto-char pos))
10031 (back-to-indentation)
10032 (current-column)))
10033
10034 (defun js2-arglist-close ()
10035 "Return non-nil if we're on a line beginning with a close-paren/brace."
10036 (save-excursion
10037 (goto-char (point-at-bol))
10038 (js2-forward-sws)
10039 (looking-at "[])}]")))
10040
10041 (defun js2-indent-looks-like-label-p ()
10042 (goto-char (point-at-bol))
10043 (js2-forward-sws)
10044 (looking-at (concat js2-mode-identifier-re ":")))
10045
10046 (defun js2-indent-in-objlit-p (parse-status)
10047 "Return non-nil if this looks like an object-literal entry."
10048 (let ((start (nth 1 parse-status)))
10049 (and
10050 start
10051 (save-excursion
10052 (and (zerop (forward-line -1))
10053 (not (< (point) start)) ; crossed a {} boundary
10054 (js2-indent-looks-like-label-p)))
10055 (save-excursion
10056 (js2-indent-looks-like-label-p)))))
10057
10058 ;; If prev line looks like foobar({ then we're passing an object
10059 ;; literal to a function call, and people pretty much always want to
10060 ;; de-dent back to the previous line, so move the 'basic-offset'
10061 ;; position to the front.
10062 (defun js2-indent-objlit-arg-p (parse-status)
10063 (save-excursion
10064 (back-to-indentation)
10065 (js2-backward-sws)
10066 (and (eq (1- (point)) (nth 1 parse-status))
10067 (eq (char-before) ?{)
10068 (progn
10069 (forward-char -1)
10070 (skip-chars-backward " \t")
10071 (eq (char-before) ?\()))))
10072
10073 (defun js2-indent-case-block-p ()
10074 (save-excursion
10075 (back-to-indentation)
10076 (js2-backward-sws)
10077 (goto-char (point-at-bol))
10078 (skip-chars-forward " \t")
10079 (looking-at "case\\s-.+:")))
10080
10081 (defun js2-bounce-indent (normal-col parse-status &optional backwards)
10082 "Cycle among alternate computed indentation positions.
10083 PARSE-STATUS is the result of `parse-partial-sexp' from the beginning
10084 of the buffer to the current point. NORMAL-COL is the indentation
10085 column computed by the heuristic guesser based on current paren,
10086 bracket, brace and statement nesting. If BACKWARDS, cycle positions
10087 in reverse."
10088 (let ((cur-indent (js2-current-indent))
10089 (old-buffer-undo-list buffer-undo-list)
10090 ;; Emacs 21 only has `count-lines', not `line-number-at-pos'
10091 (current-line (save-excursion
10092 (forward-line 0) ; move to bol
10093 (1+ (count-lines (point-min) (point)))))
10094 positions pos main-pos anchor arglist-cont same-indent
10095 basic-offset computed-pos)
10096 ;; temporarily don't record undo info, if user requested this
10097 (when js2-mode-indent-inhibit-undo
10098 (setq buffer-undo-list t))
10099 (unwind-protect
10100 (progn
10101 ;; First likely point: indent from beginning of previous code line
10102 (push (setq basic-offset
10103 (+ (save-excursion
10104 (back-to-indentation)
10105 (js2-backward-sws)
10106 (back-to-indentation)
10107 (current-column))
10108 js2-basic-offset))
10109 positions)
10110
10111 ;; (First + epsilon) likely point: indent 2x from beginning of
10112 ;; previous code line. Google does it this way.
10113 (push (setq basic-offset
10114 (+ (save-excursion
10115 (back-to-indentation)
10116 (js2-backward-sws)
10117 (back-to-indentation)
10118 (current-column))
10119 (* 2 js2-basic-offset)))
10120 positions)
10121
10122 ;; Second likely point: indent from assign-expr RHS. This
10123 ;; is just a crude guess based on finding " = " on the previous
10124 ;; line containing actual code.
10125 (setq pos (save-excursion
10126 (forward-line -1)
10127 (goto-char (point-at-bol))
10128 (when (re-search-forward "\\s-+\\(=\\)\\s-+"
10129 (point-at-eol) t)
10130 (goto-char (match-end 1))
10131 (skip-chars-forward " \t\r\n")
10132 (current-column))))
10133 (when pos
10134 (incf pos js2-basic-offset)
10135 (push pos positions))
10136
10137 ;; Third likely point: same indent as previous line of code.
10138 ;; Make it the first likely point if we're not on an
10139 ;; arglist-close line and previous line ends in a comma, or
10140 ;; both this line and prev line look like object-literal
10141 ;; elements.
10142 (setq pos (save-excursion
10143 (goto-char (point-at-bol))
10144 (js2-backward-sws)
10145 (back-to-indentation)
10146 (prog1
10147 (current-column)
10148 ;; while we're here, look for trailing comma
10149 (if (save-excursion
10150 (goto-char (point-at-eol))
10151 (js2-backward-sws)
10152 (eq (char-before) ?,))
10153 (setq arglist-cont (1- (point)))))))
10154 (when pos
10155 (if (and (or arglist-cont
10156 (js2-indent-in-objlit-p parse-status))
10157 (not (js2-arglist-close)))
10158 (setq same-indent pos))
10159 (push pos positions))
10160
10161 ;; Fourth likely point: first preceding code with less indentation.
10162 ;; than the immediately preceding code line.
10163 (setq pos (save-excursion
10164 (back-to-indentation)
10165 (js2-backward-sws)
10166 (back-to-indentation)
10167 (setq anchor (current-column))
10168 (while (and (zerop (forward-line -1))
10169 (>= (progn
10170 (back-to-indentation)
10171 (current-column))
10172 anchor)))
10173 (setq pos (current-column))))
10174 (push pos positions)
10175
10176 ;; nesting-heuristic position, main by default
10177 (push (setq main-pos normal-col) positions)
10178
10179 ;; delete duplicates and sort positions list
10180 (setq positions (sort (delete-dups positions) '<))
10181
10182 ;; comma-list continuation lines: prev line indent takes precedence
10183 (if same-indent
10184 (setq main-pos same-indent))
10185
10186 ;; common special cases where we want to indent in from previous line
10187 (if (or (js2-indent-case-block-p)
10188 (js2-indent-objlit-arg-p parse-status))
10189 (setq main-pos basic-offset))
10190
10191 ;; if bouncing backwards, reverse positions list
10192 (if backwards
10193 (setq positions (reverse positions)))
10194
10195 ;; record whether we're already sitting on one of the alternatives
10196 (setq pos (member cur-indent positions))
10197
10198 (cond
10199 ;; case 0: we're one one of the alternatives and this is the
10200 ;; first time they've pressed TAB on this line (best-guess).
10201 ((and js2-mode-indent-ignore-first-tab
10202 pos
10203 ;; first time pressing TAB on this line?
10204 (not (eq js2-mode-last-indented-line current-line)))
10205 ;; do nothing
10206 (setq computed-pos nil))
10207 ;; case 1: only one computed position => use it
10208 ((null (cdr positions))
10209 (setq computed-pos 0))
10210 ;; case 2: not on any of the computed spots => use main spot
10211 ((not pos)
10212 (setq computed-pos (js2-position main-pos positions)))
10213 ;; case 3: on last position: cycle to first position
10214 ((null (cdr pos))
10215 (setq computed-pos 0))
10216 ;; case 4: on intermediate position: cycle to next position
10217 (t
10218 (setq computed-pos (js2-position (second pos) positions))))
10219
10220 ;; see if any hooks want to indent; otherwise we do it
10221 (loop with result = nil
10222 for hook in js2-indent-hook
10223 while (null result)
10224 do
10225 (setq result (funcall hook positions computed-pos))
10226 finally do
10227 (unless (or result (null computed-pos))
10228 (indent-line-to (nth computed-pos positions)))))
10229
10230 ;; finally
10231 (if js2-mode-indent-inhibit-undo
10232 (setq buffer-undo-list old-buffer-undo-list))
10233 ;; see commentary for `js2-mode-last-indented-line'
10234 (setq js2-mode-last-indented-line current-line))))
10235
10236 (defun js2-indent-bounce-backwards ()
10237 "Calls `js2-indent-line'. When `js2-bounce-indent-p',
10238 cycles between the computed indentation positions in reverse order."
10239 (interactive)
10240 (js2-indent-line t))
10241
10242 (defun js2-1-line-comment-continuation-p ()
10243 "Return t if we're in a 1-line comment continuation.
10244 If so, we don't ever want to use bounce-indent."
10245 (save-excursion
10246 (and (progn
10247 (forward-line 0)
10248 (looking-at "\\s-*//"))
10249 (progn
10250 (forward-line -1)
10251 (forward-line 0)
10252 (when (looking-at "\\s-*$")
10253 (js2-backward-sws)
10254 (forward-line 0))
10255 (looking-at "\\s-*//")))))
10256
10257 (defun js2-indent-line (&optional bounce-backwards)
10258 "Indent the current line as JavaScript source text."
10259 (interactive)
10260 (let (parse-status offset indent-col
10261 ;; Don't whine about errors/warnings when we're indenting.
10262 ;; This has to be set before calling parse-partial-sexp below.
10263 (inhibit-point-motion-hooks t))
10264 (setq parse-status (save-excursion
10265 (syntax-ppss (point-at-bol)))
10266 offset (- (point) (save-excursion
10267 (back-to-indentation)
10268 (point))))
10269 (js2-with-underscore-as-word-syntax
10270 (if (nth 4 parse-status)
10271 (js2-lineup-comment parse-status)
10272 (setq indent-col (js2-proper-indentation parse-status))
10273 ;; See comments below about `js2-mode-last-indented-line'.
10274 (cond
10275 ;; bounce-indenting is disabled during electric-key indent.
10276 ;; It doesn't work well on first line of buffer.
10277 ((and js2-bounce-indent-p
10278 (not (js2-same-line (point-min)))
10279 (not (js2-1-line-comment-continuation-p)))
10280 (js2-bounce-indent indent-col parse-status bounce-backwards))
10281 ;; just indent to the guesser's likely spot
10282 (t (indent-line-to indent-col))))
10283 (when (plusp offset)
10284 (forward-char offset)))))
10285
10286 (defun js2-indent-region (start end)
10287 "Indent the region, but don't use bounce indenting."
10288 (let ((js2-bounce-indent-p nil)
10289 (indent-region-function nil)
10290 (after-change-functions (remq 'js2-mode-edit
10291 after-change-functions)))
10292 (indent-region start end nil) ; nil for byte-compiler
10293 (js2-mode-edit start end (- end start))))
10294
10295 (defvar js2-minor-mode-map
10296 (let ((map (make-sparse-keymap)))
10297 (define-key map (kbd "C-c C-`") #'js2-next-error)
10298 (define-key map [mouse-1] #'js2-mode-show-node)
10299 map)
10300 "Keymap used when `js2-minor-mode' is active.")
10301
10302 ;;;###autoload
10303 (define-minor-mode js2-minor-mode
10304 "Minor mode for running js2 as a background linter.
10305 This allows you to use a different major mode for JavaScript editing,
10306 such as `js-mode', while retaining the asynchronous error/warning
10307 highlighting features of `js2-mode'."
10308 :group 'js2-mode
10309 :lighter " js-lint"
10310 (if js2-minor-mode
10311 (js2-minor-mode-enter)
10312 (js2-minor-mode-exit)))
10313
10314 (defun js2-minor-mode-enter ()
10315 "Initialization for `js2-minor-mode'."
10316 (set (make-local-variable 'max-lisp-eval-depth)
10317 (max max-lisp-eval-depth 3000))
10318 (setq next-error-function #'js2-next-error)
10319 (js2-set-default-externs)
10320 ;; Experiment: make reparse-delay longer for longer files.
10321 (if (plusp js2-dynamic-idle-timer-adjust)
10322 (setq js2-idle-timer-delay
10323 (* js2-idle-timer-delay
10324 (/ (point-max) js2-dynamic-idle-timer-adjust))))
10325 (setq js2-mode-buffer-dirty-p t
10326 js2-mode-parsing nil)
10327 (set (make-local-variable 'js2-highlight-level) 0) ; no syntax highlighting
10328 (add-hook 'after-change-functions #'js2-minor-mode-edit nil t)
10329 (add-hook 'change-major-mode-hook #'js2-minor-mode-exit nil t)
10330 (when js2-include-jslint-globals
10331 (add-hook 'js2-post-parse-callbacks 'js2-apply-jslint-globals nil t))
10332 (run-hooks 'js2-init-hook)
10333 (js2-reparse))
10334
10335 (defun js2-minor-mode-exit ()
10336 "Turn off `js2-minor-mode'."
10337 (setq next-error-function nil)
10338 (remove-hook 'after-change-functions #'js2-mode-edit t)
10339 (remove-hook 'change-major-mode-hook #'js2-minor-mode-exit t)
10340 (when js2-mode-node-overlay
10341 (delete-overlay js2-mode-node-overlay)
10342 (setq js2-mode-node-overlay nil))
10343 (js2-remove-overlays)
10344 (remove-hook 'js2-post-parse-callbacks 'js2-apply-jslint-globals t)
10345 (setq js2-mode-ast nil))
10346
10347 (defvar js2-source-buffer nil "Linked source buffer for diagnostics view")
10348 (make-variable-buffer-local 'js2-source-buffer)
10349
10350 (defun* js2-display-error-list ()
10351 "Display a navigable buffer listing parse errors/warnings."
10352 (interactive)
10353 (unless (js2-have-errors-p)
10354 (message "No errors")
10355 (return-from js2-display-error-list))
10356 (labels ((annotate-list
10357 (lst type)
10358 "Add diagnostic TYPE and line number to errs list"
10359 (mapcar (lambda (err)
10360 (list err type (line-number-at-pos (nth 1 err))))
10361 lst)))
10362 (let* ((srcbuf (current-buffer))
10363 (errbuf (get-buffer-create "*js-lint*"))
10364 (errors (annotate-list
10365 (when js2-mode-ast (js2-ast-root-errors js2-mode-ast))
10366 'js2-error)) ; must be a valid face name
10367 (warnings (annotate-list
10368 (when js2-mode-ast (js2-ast-root-warnings js2-mode-ast))
10369 'js2-warning)) ; must be a valid face name
10370 (all-errs (sort (append errors warnings)
10371 (lambda (e1 e2) (< (cadar e1) (cadar e2))))))
10372 (with-current-buffer errbuf
10373 (let ((inhibit-read-only t))
10374 (erase-buffer)
10375 (dolist (err all-errs)
10376 (destructuring-bind ((msg-key beg _end &rest) type line) err
10377 (insert-text-button
10378 (format "line %d: %s" line (js2-get-msg msg-key))
10379 'face type
10380 'follow-link "\C-m"
10381 'action 'js2-error-buffer-jump
10382 'js2-msg (js2-get-msg msg-key)
10383 'js2-pos beg)
10384 (insert "\n"))))
10385 (js2-error-buffer-mode)
10386 (setq js2-source-buffer srcbuf)
10387 (pop-to-buffer errbuf)
10388 (goto-char (point-min))
10389 (unless (eobp)
10390 (js2-error-buffer-view))))))
10391
10392 (defvar js2-error-buffer-mode-map
10393 (let ((map (make-sparse-keymap)))
10394 (define-key map "n" #'js2-error-buffer-next)
10395 (define-key map "p" #'js2-error-buffer-prev)
10396 (define-key map (kbd "RET") #'js2-error-buffer-jump)
10397 (define-key map "o" #'js2-error-buffer-view)
10398 (define-key map "q" #'js2-error-buffer-quit)
10399 map)
10400 "Keymap used for js2 diagnostics buffers.")
10401
10402 (defun js2-error-buffer-mode ()
10403 "Major mode for js2 diagnostics buffers.
10404 Selecting an error will jump it to the corresponding source-buffer error.
10405 \\{js2-error-buffer-mode-map}"
10406 (interactive)
10407 (setq major-mode 'js2-error-buffer-mode
10408 mode-name "JS Lint Diagnostics")
10409 (use-local-map js2-error-buffer-mode-map)
10410 (setq truncate-lines t)
10411 (set-buffer-modified-p nil)
10412 (setq buffer-read-only t)
10413 (run-hooks 'js2-error-buffer-mode-hook))
10414
10415 (defun js2-error-buffer-next ()
10416 "Move to next error and view it."
10417 (interactive)
10418 (when (zerop (forward-line 1))
10419 (js2-error-buffer-view)))
10420
10421 (defun js2-error-buffer-prev ()
10422 "Move to previous error and view it."
10423 (interactive)
10424 (when (zerop (forward-line -1))
10425 (js2-error-buffer-view)))
10426
10427 (defun js2-error-buffer-quit ()
10428 "Kill the current buffer."
10429 (interactive)
10430 (kill-buffer))
10431
10432 (defun js2-error-buffer-jump (&rest ignored)
10433 "Jump cursor to current error in source buffer."
10434 (interactive)
10435 (when (js2-error-buffer-view)
10436 (pop-to-buffer js2-source-buffer)))
10437
10438 (defun js2-error-buffer-view ()
10439 "Scroll source buffer to show error at current line."
10440 (interactive)
10441 (cond
10442 ((not (eq major-mode 'js2-error-buffer-mode))
10443 (message "Not in a js2 errors buffer"))
10444 ((not (buffer-live-p js2-source-buffer))
10445 (message "Source buffer has been killed"))
10446 ((not (wholenump (get-text-property (point) 'js2-pos)))
10447 (message "There does not seem to be an error here"))
10448 (t
10449 (let ((pos (get-text-property (point) 'js2-pos))
10450 (msg (get-text-property (point) 'js2-msg)))
10451 (save-selected-window
10452 (pop-to-buffer js2-source-buffer)
10453 (goto-char pos)
10454 (message msg))))))
10455
10456 ;;;###autoload
10457 (define-derived-mode js2-mode prog-mode "Javascript-IDE"
10458 ;; FIXME: Should derive from js-mode.
10459 "Major mode for editing JavaScript code."
10460 ;; Used by comment-region; don't change it.
10461 (set (make-local-variable 'comment-start) "//")
10462 (set (make-local-variable 'comment-end) "")
10463 (set (make-local-variable 'comment-start-skip) js2-comment-start-skip)
10464 (set (make-local-variable 'max-lisp-eval-depth)
10465 (max max-lisp-eval-depth 3000))
10466 (set (make-local-variable 'indent-line-function) #'js2-indent-line)
10467 (set (make-local-variable 'indent-region-function) #'js2-indent-region)
10468 (set (make-local-variable 'fill-paragraph-function) #'c-fill-paragraph)
10469 (set (make-local-variable 'comment-line-break-function) #'js2-line-break)
10470 (set (make-local-variable 'beginning-of-defun-function) #'js2-beginning-of-defun)
10471 (set (make-local-variable 'end-of-defun-function) #'js2-end-of-defun)
10472 ;; We un-confuse `parse-partial-sexp' by setting syntax-table properties
10473 ;; for characters inside regexp literals.
10474 (set (make-local-variable 'parse-sexp-lookup-properties) t)
10475 ;; this is necessary to make `show-paren-function' work properly
10476 (set (make-local-variable 'parse-sexp-ignore-comments) t)
10477 ;; needed for M-x rgrep, among other things
10478 (put 'js2-mode 'find-tag-default-function #'js2-mode-find-tag)
10479
10480 (set (make-local-variable 'electric-indent-chars)
10481 (append "{}()[]:;,*." electric-indent-chars))
10482 (set (make-local-variable 'electric-layout-rules)
10483 '((?\; . after) (?\{ . after) (?\} . before)))
10484
10485 ;; some variables needed by cc-engine for paragraph-fill, etc.
10486 (setq c-comment-prefix-regexp js2-comment-prefix-regexp
10487 c-comment-start-regexp "/[*/]\\|\\s|"
10488 c-line-comment-starter "//"
10489 c-paragraph-start js2-paragraph-start
10490 c-paragraph-separate "$"
10491 c-syntactic-ws-start js2-syntactic-ws-start
10492 c-syntactic-ws-end js2-syntactic-ws-end
10493 c-syntactic-eol js2-syntactic-eol)
10494
10495 (let ((c-buffer-is-cc-mode t))
10496 ;; Copied from `js-mode'. Also see Bug#6071.
10497 (make-local-variable 'paragraph-start)
10498 (make-local-variable 'paragraph-separate)
10499 (make-local-variable 'paragraph-ignore-fill-prefix)
10500 (make-local-variable 'adaptive-fill-mode)
10501 (make-local-variable 'adaptive-fill-regexp)
10502 (c-setup-paragraph-variables))
10503
10504 (setq font-lock-defaults '(nil t))
10505
10506 ;; Experiment: make reparse-delay longer for longer files.
10507 (when (plusp js2-dynamic-idle-timer-adjust)
10508 (setq js2-idle-timer-delay
10509 (* js2-idle-timer-delay
10510 (/ (point-max) js2-dynamic-idle-timer-adjust))))
10511
10512 (add-hook 'change-major-mode-hook #'js2-mode-exit nil t)
10513 (add-hook 'after-change-functions #'js2-mode-edit nil t)
10514 (setq imenu-create-index-function #'js2-mode-create-imenu-index)
10515 (setq next-error-function #'js2-next-error)
10516 (imenu-add-to-menubar (concat "IM-" mode-name))
10517 (add-to-invisibility-spec '(js2-outline . t))
10518 (set (make-local-variable 'line-move-ignore-invisible) t)
10519 (set (make-local-variable 'forward-sexp-function) #'js2-mode-forward-sexp)
10520
10521 (setq js2-mode-functions-hidden nil
10522 js2-mode-comments-hidden nil
10523 js2-mode-buffer-dirty-p t
10524 js2-mode-parsing nil)
10525
10526 (js2-set-default-externs)
10527
10528 (when js2-include-jslint-globals
10529 (add-hook 'js2-post-parse-callbacks 'js2-apply-jslint-globals nil t))
10530
10531 (run-hooks 'js2-init-hook)
10532
10533 (js2-reparse))
10534
10535 (defun js2-mode-exit ()
10536 "Exit `js2-mode' and clean up."
10537 (interactive)
10538 (when js2-mode-node-overlay
10539 (delete-overlay js2-mode-node-overlay)
10540 (setq js2-mode-node-overlay nil))
10541 (js2-remove-overlays)
10542 (setq js2-mode-ast nil)
10543 (remove-hook 'change-major-mode-hook #'js2-mode-exit t)
10544 (remove-from-invisibility-spec '(js2-outline . t))
10545 (js2-mode-show-all)
10546 (with-silent-modifications
10547 (js2-clear-face (point-min) (point-max))))
10548
10549 (defun js2-mode-reset-timer ()
10550 "Cancel any existing parse timer and schedule a new one."
10551 (if js2-mode-parse-timer
10552 (cancel-timer js2-mode-parse-timer))
10553 (setq js2-mode-parsing nil)
10554 (let ((timer (timer-create)))
10555 (setq js2-mode-parse-timer timer)
10556 (timer-set-function timer 'js2-mode-idle-reparse (list (current-buffer)))
10557 (timer-set-idle-time timer js2-idle-timer-delay)
10558 ;; http://debbugs.gnu.org/cgi/bugreport.cgi?bug=12326
10559 (timer-activate-when-idle timer nil)))
10560
10561 (defun js2-mode-idle-reparse (buffer)
10562 "Run `js2-reparse' if BUFFER is the current buffer, or schedule
10563 it to be reparsed when the buffer is selected."
10564 (cond ((eq buffer (current-buffer))
10565 (js2-reparse))
10566 ((buffer-live-p buffer)
10567 ;; reparse when the buffer is selected again
10568 (with-current-buffer buffer
10569 (add-hook 'window-configuration-change-hook
10570 #'js2-mode-idle-reparse-inner
10571 nil t)))))
10572
10573 (defun js2-mode-idle-reparse-inner ()
10574 (remove-hook 'window-configuration-change-hook
10575 #'js2-mode-idle-reparse-inner
10576 t)
10577 (js2-reparse))
10578
10579 (defun js2-mode-edit (_beg _end _len)
10580 "Schedule a new parse after buffer is edited.
10581 Buffer edit spans from BEG to END and is of length LEN."
10582 (setq js2-mode-buffer-dirty-p t)
10583 (js2-mode-hide-overlay)
10584 (js2-mode-reset-timer))
10585
10586 (defun js2-minor-mode-edit (_beg _end _len)
10587 "Callback for buffer edits in `js2-mode'.
10588 Schedules a new parse after buffer is edited.
10589 Buffer edit spans from BEG to END and is of length LEN."
10590 (setq js2-mode-buffer-dirty-p t)
10591 (js2-mode-hide-overlay)
10592 (js2-mode-reset-timer))
10593
10594 (defun js2-reparse (&optional force)
10595 "Re-parse current buffer after user finishes some data entry.
10596 If we get any user input while parsing, including cursor motion,
10597 we discard the parse and reschedule it. If FORCE is nil, then the
10598 buffer will only rebuild its `js2-mode-ast' if the buffer is dirty."
10599 (let (time
10600 interrupted-p
10601 (js2-compiler-strict-mode js2-mode-show-strict-warnings))
10602 (unless js2-mode-parsing
10603 (setq js2-mode-parsing t)
10604 (unwind-protect
10605 (when (or js2-mode-buffer-dirty-p force)
10606 (js2-remove-overlays)
10607 (with-silent-modifications
10608 (setq js2-mode-buffer-dirty-p nil
10609 js2-mode-fontifications nil
10610 js2-mode-deferred-properties nil)
10611 (if js2-mode-verbose-parse-p
10612 (message "parsing..."))
10613 (setq time
10614 (js2-time
10615 (setq interrupted-p
10616 (catch 'interrupted
10617 (js2-parse)
10618 ;; if parsing is interrupted, comments and regex
10619 ;; literals stay ignored by `parse-partial-sexp'
10620 (remove-text-properties (point-min) (point-max)
10621 '(syntax-table))
10622 (js2-mode-apply-deferred-properties)
10623 (js2-mode-remove-suppressed-warnings)
10624 (js2-mode-show-warnings)
10625 (js2-mode-show-errors)
10626 (if (>= js2-highlight-level 1)
10627 (js2-highlight-jsdoc js2-mode-ast))
10628 nil))))
10629 (if interrupted-p
10630 (progn
10631 ;; unfinished parse => try again
10632 (setq js2-mode-buffer-dirty-p t)
10633 (js2-mode-reset-timer))
10634 (if js2-mode-verbose-parse-p
10635 (message "Parse time: %s" time)))))
10636 (setq js2-mode-parsing nil)
10637 (unless interrupted-p
10638 (setq js2-mode-parse-timer nil))))))
10639
10640 (defun js2-mode-show-node (event)
10641 "Debugging aid: highlight selected AST node on mouse click."
10642 (interactive "e")
10643 (mouse-set-point event)
10644 (setq deactivate-mark t)
10645 (when js2-mode-show-overlay
10646 (let ((node (js2-node-at-point))
10647 beg end)
10648 (if (null node)
10649 (message "No node found at location %s" (point))
10650 (setq beg (js2-node-abs-pos node)
10651 end (+ beg (js2-node-len node)))
10652 (if js2-mode-node-overlay
10653 (move-overlay js2-mode-node-overlay beg end)
10654 (setq js2-mode-node-overlay (make-overlay beg end))
10655 (overlay-put js2-mode-node-overlay 'font-lock-face 'highlight))
10656 (with-silent-modifications
10657 (put-text-property beg end 'point-left #'js2-mode-hide-overlay))
10658 (message "%s, parent: %s"
10659 (js2-node-short-name node)
10660 (if (js2-node-parent node)
10661 (js2-node-short-name (js2-node-parent node))
10662 "nil"))))))
10663
10664 (defun js2-mode-hide-overlay (&optional _p1 p2)
10665 "Remove the debugging overlay when the point moves.
10666 P1 and P2 are the old and new values of point, respectively."
10667 (when js2-mode-node-overlay
10668 (let ((beg (overlay-start js2-mode-node-overlay))
10669 (end (overlay-end js2-mode-node-overlay)))
10670 ;; Sometimes we're called spuriously.
10671 (unless (and p2
10672 (>= p2 beg)
10673 (<= p2 end))
10674 (with-silent-modifications
10675 (remove-text-properties beg end '(point-left nil)))
10676 (delete-overlay js2-mode-node-overlay)
10677 (setq js2-mode-node-overlay nil)))))
10678
10679 (defun js2-mode-reset ()
10680 "Debugging helper: reset everything."
10681 (interactive)
10682 (js2-mode-exit)
10683 (js2-mode))
10684
10685 (defun js2-mode-show-warn-or-err (e face)
10686 "Highlight a warning or error E with FACE.
10687 E is a list of ((MSG-KEY MSG-ARG) BEG LEN OVERRIDE-FACE).
10688 The last element is optional. When present, use instead of FACE."
10689 (let* ((key (first e))
10690 (beg (second e))
10691 (end (+ beg (third e)))
10692 ;; Don't inadvertently go out of bounds.
10693 (beg (max (point-min) (min beg (point-max))))
10694 (end (max (point-min) (min end (point-max))))
10695 (js2-highlight-level 3) ; so js2-set-face is sure to fire
10696 (ovl (make-overlay beg end)))
10697 (overlay-put ovl 'font-lock-face (or (fourth e) face))
10698 (overlay-put ovl 'js2-error t)
10699 (put-text-property beg end 'help-echo (js2-get-msg key))
10700 (put-text-property beg end 'point-entered #'js2-echo-error)))
10701
10702 (defun js2-remove-overlays ()
10703 "Remove overlays from buffer that have a `js2-error' property."
10704 (let ((beg (point-min))
10705 (end (point-max)))
10706 (save-excursion
10707 (dolist (o (overlays-in beg end))
10708 (when (overlay-get o 'js2-error)
10709 (delete-overlay o))))))
10710
10711 (defun js2-error-at-point (&optional pos)
10712 "Return non-nil if there's an error overlay at POS.
10713 Defaults to point."
10714 (loop with pos = (or pos (point))
10715 for o in (overlays-at pos)
10716 thereis (overlay-get o 'js2-error)))
10717
10718 (defun js2-mode-apply-deferred-properties ()
10719 "Apply fontifications and other text properties recorded during parsing."
10720 (when (plusp js2-highlight-level)
10721 ;; We defer clearing faces as long as possible to eliminate flashing.
10722 (js2-clear-face (point-min) (point-max))
10723 ;; Have to reverse the recorded fontifications list so that errors
10724 ;; and warnings overwrite the normal fontifications.
10725 (dolist (f (nreverse js2-mode-fontifications))
10726 (put-text-property (first f) (second f) 'font-lock-face (third f)))
10727 (setq js2-mode-fontifications nil))
10728 (dolist (p js2-mode-deferred-properties)
10729 (apply #'put-text-property p))
10730 (setq js2-mode-deferred-properties nil))
10731
10732 (defun js2-mode-show-errors ()
10733 "Highlight syntax errors."
10734 (when js2-mode-show-parse-errors
10735 (dolist (e (js2-ast-root-errors js2-mode-ast))
10736 (js2-mode-show-warn-or-err e 'js2-error))))
10737
10738 (defun js2-mode-remove-suppressed-warnings ()
10739 "Take suppressed warnings out of the AST warnings list.
10740 This ensures that the counts and `next-error' are correct."
10741 (setf (js2-ast-root-warnings js2-mode-ast)
10742 (js2-delete-if
10743 (lambda (e)
10744 (let ((key (caar e)))
10745 (or
10746 (and (not js2-strict-trailing-comma-warning)
10747 (string-match "trailing\\.comma" key))
10748 (and (not js2-strict-cond-assign-warning)
10749 (string= key "msg.equal.as.assign"))
10750 (and js2-missing-semi-one-line-override
10751 (string= key "msg.missing.semi")
10752 (let* ((beg (second e))
10753 (node (js2-node-at-point beg))
10754 (fn (js2-mode-find-parent-fn node))
10755 (body (and fn (js2-function-node-body fn)))
10756 (lc (and body (js2-node-abs-pos body)))
10757 (rc (and lc (+ lc (js2-node-len body)))))
10758 (and fn
10759 (or (null body)
10760 (save-excursion
10761 (goto-char beg)
10762 (and (js2-same-line lc)
10763 (js2-same-line rc))))))))))
10764 (js2-ast-root-warnings js2-mode-ast))))
10765
10766 (defun js2-mode-show-warnings ()
10767 "Highlight strict-mode warnings."
10768 (when js2-mode-show-strict-warnings
10769 (dolist (e (js2-ast-root-warnings js2-mode-ast))
10770 (js2-mode-show-warn-or-err e 'js2-warning))))
10771
10772 (defun js2-echo-error (_old-point new-point)
10773 "Called by point-motion hooks."
10774 (let ((msg (get-text-property new-point 'help-echo)))
10775 (when (and (stringp msg)
10776 (not (active-minibuffer-window))
10777 (not (current-message)))
10778 (message msg))))
10779
10780 (defalias 'js2-echo-help #'js2-echo-error)
10781
10782 (defun js2-line-break (&optional _soft)
10783 "Break line at point and indent, continuing comment if within one.
10784 If inside a string, and `js2-concat-multiline-strings' is not
10785 nil, turn it into concatenation."
10786 (interactive)
10787 (let ((parse-status (syntax-ppss)))
10788 (cond
10789 ;; Check if we're inside a string.
10790 ((nth 3 parse-status)
10791 (if js2-concat-multiline-strings
10792 (js2-mode-split-string parse-status)
10793 (insert "\n")))
10794 ;; Check if inside a block comment.
10795 ((nth 4 parse-status)
10796 (js2-mode-extend-comment (nth 8 parse-status)))
10797 (t
10798 (newline-and-indent)))))
10799
10800 (defun js2-mode-split-string (parse-status)
10801 "Turn a newline in mid-string into a string concatenation.
10802 PARSE-STATUS is as documented in `parse-partial-sexp'."
10803 (let* ((quote-char (nth 3 parse-status))
10804 (at-eol (eq js2-concat-multiline-strings 'eol)))
10805 (insert quote-char)
10806 (insert (if at-eol " +\n" "\n"))
10807 (unless at-eol
10808 (insert "+ "))
10809 (js2-indent-line)
10810 (insert quote-char)
10811 (when (eolp)
10812 (insert quote-char)
10813 (backward-char 1))))
10814
10815 (defun js2-mode-extend-comment (start-pos)
10816 "Indent the line and, when inside a comment block, add comment prefix."
10817 (let (star single col first-line needs-close)
10818 (save-excursion
10819 (back-to-indentation)
10820 (when (< (point) start-pos)
10821 (goto-char start-pos))
10822 (cond
10823 ((looking-at "\\*[^/]")
10824 (setq star t
10825 col (current-column)))
10826 ((looking-at "/\\*")
10827 (setq star t
10828 first-line t
10829 col (1+ (current-column))))
10830 ((looking-at "//")
10831 (setq single t
10832 col (current-column)))))
10833 ;; Heuristic for whether we need to close the comment:
10834 ;; if we've got a parse error here, assume it's an unterminated
10835 ;; comment.
10836 (setq needs-close
10837 (or
10838 (eq (get-text-property (1- (point)) 'point-entered)
10839 'js2-echo-error)
10840 ;; The heuristic above doesn't work well when we're
10841 ;; creating a comment and there's another one downstream,
10842 ;; as our parser thinks this one ends at the end of the
10843 ;; next one. (You can have a /* inside a js block comment.)
10844 ;; So just close it if the next non-ws char isn't a *.
10845 (and first-line
10846 (eolp)
10847 (save-excursion
10848 (skip-chars-forward " \t\r\n")
10849 (not (eq (char-after) ?*))))))
10850 (delete-horizontal-space)
10851 (insert "\n")
10852 (cond
10853 (star
10854 (indent-to col)
10855 (insert "* ")
10856 (if (and first-line needs-close)
10857 (save-excursion
10858 (insert "\n")
10859 (indent-to col)
10860 (insert "*/"))))
10861 ((and single
10862 (save-excursion
10863 (and (zerop (forward-line 1))
10864 (looking-at "\\s-*//"))))
10865 (indent-to col)
10866 (insert "// ")))
10867 ;; Don't need to extend the comment after all.
10868 (js2-indent-line)))
10869
10870 (defun js2-beginning-of-line ()
10871 "Toggle point between bol and first non-whitespace char in line.
10872 Also moves past comment delimiters when inside comments."
10873 (interactive)
10874 (let (node)
10875 (cond
10876 ((bolp)
10877 (back-to-indentation))
10878 ((looking-at "//")
10879 (skip-chars-forward "/ \t"))
10880 ((and (eq (char-after) ?*)
10881 (setq node (js2-comment-at-point))
10882 (memq (js2-comment-node-format node) '(jsdoc block))
10883 (save-excursion
10884 (skip-chars-backward " \t")
10885 (bolp)))
10886 (skip-chars-forward "\* \t"))
10887 (t
10888 (goto-char (point-at-bol))))))
10889
10890 (defun js2-end-of-line ()
10891 "Toggle point between eol and last non-whitespace char in line."
10892 (interactive)
10893 (if (eolp)
10894 (skip-chars-backward " \t")
10895 (goto-char (point-at-eol))))
10896
10897 (defun js2-mode-wait-for-parse (callback)
10898 "Invoke CALLBACK when parsing is finished.
10899 If parsing is already finished, calls CALLBACK immediately."
10900 (if (not js2-mode-buffer-dirty-p)
10901 (funcall callback)
10902 (push callback js2-mode-pending-parse-callbacks)
10903 (add-hook 'js2-parse-finished-hook #'js2-mode-parse-finished)))
10904
10905 (defun js2-mode-parse-finished ()
10906 "Invoke callbacks in `js2-mode-pending-parse-callbacks'."
10907 ;; We can't let errors propagate up, since it prevents the
10908 ;; `js2-parse' method from completing normally and returning
10909 ;; the ast, which makes things mysteriously not work right.
10910 (unwind-protect
10911 (dolist (cb js2-mode-pending-parse-callbacks)
10912 (condition-case err
10913 (funcall cb)
10914 (error (message "%s" err))))
10915 (setq js2-mode-pending-parse-callbacks nil)))
10916
10917 (defun js2-mode-flag-region (from to flag)
10918 "Hide or show text from FROM to TO, according to FLAG.
10919 If FLAG is nil then text is shown, while if FLAG is t the text is hidden.
10920 Returns the created overlay if FLAG is non-nil."
10921 (remove-overlays from to 'invisible 'js2-outline)
10922 (when flag
10923 (let ((o (make-overlay from to)))
10924 (overlay-put o 'invisible 'js2-outline)
10925 (overlay-put o 'isearch-open-invisible
10926 'js2-isearch-open-invisible)
10927 o)))
10928
10929 ;; Function to be set as an outline-isearch-open-invisible' property
10930 ;; to the overlay that makes the outline invisible (see
10931 ;; `js2-mode-flag-region').
10932 (defun js2-isearch-open-invisible (_overlay)
10933 ;; We rely on the fact that isearch places point on the matched text.
10934 (js2-mode-show-element))
10935
10936 (defun js2-mode-invisible-overlay-bounds (&optional pos)
10937 "Return cons cell of bounds of folding overlay at POS.
10938 Returns nil if not found."
10939 (let ((overlays (overlays-at (or pos (point))))
10940 o)
10941 (while (and overlays
10942 (not o))
10943 (if (overlay-get (car overlays) 'invisible)
10944 (setq o (car overlays))
10945 (setq overlays (cdr overlays))))
10946 (if o
10947 (cons (overlay-start o) (overlay-end o)))))
10948
10949 (defun js2-mode-function-at-point (&optional pos)
10950 "Return the innermost function node enclosing current point.
10951 Returns nil if point is not in a function."
10952 (let ((node (js2-node-at-point pos)))
10953 (while (and node (not (js2-function-node-p node)))
10954 (setq node (js2-node-parent node)))
10955 (if (js2-function-node-p node)
10956 node)))
10957
10958 (defun js2-mode-toggle-element ()
10959 "Hide or show the foldable element at the point."
10960 (interactive)
10961 (let (comment fn pos)
10962 (save-excursion
10963 (cond
10964 ;; /* ... */ comment?
10965 ((js2-block-comment-p (setq comment (js2-comment-at-point)))
10966 (if (js2-mode-invisible-overlay-bounds
10967 (setq pos (+ 3 (js2-node-abs-pos comment))))
10968 (progn
10969 (goto-char pos)
10970 (js2-mode-show-element))
10971 (js2-mode-hide-element)))
10972 ;; //-comment?
10973 ((save-excursion
10974 (back-to-indentation)
10975 (looking-at js2-mode-//-comment-re))
10976 (js2-mode-toggle-//-comment))
10977 ;; function?
10978 ((setq fn (js2-mode-function-at-point))
10979 (setq pos (and (js2-function-node-body fn)
10980 (js2-node-abs-pos (js2-function-node-body fn))))
10981 (goto-char (1+ pos))
10982 (if (js2-mode-invisible-overlay-bounds)
10983 (js2-mode-show-element)
10984 (js2-mode-hide-element)))
10985 (t
10986 (message "Nothing at point to hide or show"))))))
10987
10988 (defun js2-mode-hide-element ()
10989 "Fold/hide contents of a block, showing ellipses.
10990 Show the hidden text with \\[js2-mode-show-element]."
10991 (interactive)
10992 (if js2-mode-buffer-dirty-p
10993 (js2-mode-wait-for-parse #'js2-mode-hide-element))
10994 (let (node body beg end)
10995 (cond
10996 ((js2-mode-invisible-overlay-bounds)
10997 (message "already hidden"))
10998 (t
10999 (setq node (js2-node-at-point))
11000 (cond
11001 ((js2-block-comment-p node)
11002 (js2-mode-hide-comment node))
11003 (t
11004 (while (and node (not (js2-function-node-p node)))
11005 (setq node (js2-node-parent node)))
11006 (if (and node
11007 (setq body (js2-function-node-body node)))
11008 (progn
11009 (setq beg (js2-node-abs-pos body)
11010 end (+ beg (js2-node-len body)))
11011 (js2-mode-flag-region (1+ beg) (1- end) 'hide))
11012 (message "No collapsable element found at point"))))))))
11013
11014 (defun js2-mode-show-element ()
11015 "Show the hidden element at current point."
11016 (interactive)
11017 (let ((bounds (js2-mode-invisible-overlay-bounds)))
11018 (if bounds
11019 (js2-mode-flag-region (car bounds) (cdr bounds) nil)
11020 (message "Nothing to un-hide"))))
11021
11022 (defun js2-mode-show-all ()
11023 "Show all of the text in the buffer."
11024 (interactive)
11025 (js2-mode-flag-region (point-min) (point-max) nil))
11026
11027 (defun js2-mode-toggle-hide-functions ()
11028 (interactive)
11029 (if js2-mode-functions-hidden
11030 (js2-mode-show-functions)
11031 (js2-mode-hide-functions)))
11032
11033 (defun js2-mode-hide-functions ()
11034 "Hides all non-nested function bodies in the buffer.
11035 Use \\[js2-mode-show-all] to reveal them, or \\[js2-mode-show-element]
11036 to open an individual entry."
11037 (interactive)
11038 (if js2-mode-buffer-dirty-p
11039 (js2-mode-wait-for-parse #'js2-mode-hide-functions))
11040 (if (null js2-mode-ast)
11041 (message "Oops - parsing failed")
11042 (setq js2-mode-functions-hidden t)
11043 (js2-visit-ast js2-mode-ast #'js2-mode-function-hider)))
11044
11045 (defun js2-mode-function-hider (n endp)
11046 (when (not endp)
11047 (let ((tt (js2-node-type n))
11048 body beg end)
11049 (cond
11050 ((and (= tt js2-FUNCTION)
11051 (setq body (js2-function-node-body n)))
11052 (setq beg (js2-node-abs-pos body)
11053 end (+ beg (js2-node-len body)))
11054 (js2-mode-flag-region (1+ beg) (1- end) 'hide)
11055 nil) ; don't process children of function
11056 (t
11057 t))))) ; keep processing other AST nodes
11058
11059 (defun js2-mode-show-functions ()
11060 "Un-hide any folded function bodies in the buffer."
11061 (interactive)
11062 (setq js2-mode-functions-hidden nil)
11063 (save-excursion
11064 (goto-char (point-min))
11065 (while (/= (goto-char (next-overlay-change (point)))
11066 (point-max))
11067 (dolist (o (overlays-at (point)))
11068 (when (and (overlay-get o 'invisible)
11069 (not (overlay-get o 'comment)))
11070 (js2-mode-flag-region (overlay-start o) (overlay-end o) nil))))))
11071
11072 (defun js2-mode-hide-comment (n)
11073 (let* ((head (if (eq (js2-comment-node-format n) 'jsdoc)
11074 3 ; /**
11075 2)) ; /*
11076 (beg (+ (js2-node-abs-pos n) head))
11077 (end (- (+ beg (js2-node-len n)) head 2))
11078 (o (js2-mode-flag-region beg end 'hide)))
11079 (overlay-put o 'comment t)))
11080
11081 (defun js2-mode-toggle-hide-comments ()
11082 "Folds all block comments in the buffer.
11083 Use \\[js2-mode-show-all] to reveal them, or \\[js2-mode-show-element]
11084 to open an individual entry."
11085 (interactive)
11086 (if js2-mode-comments-hidden
11087 (js2-mode-show-comments)
11088 (js2-mode-hide-comments)))
11089
11090 (defun js2-mode-hide-comments ()
11091 (interactive)
11092 (if js2-mode-buffer-dirty-p
11093 (js2-mode-wait-for-parse #'js2-mode-hide-comments))
11094 (if (null js2-mode-ast)
11095 (message "Oops - parsing failed")
11096 (setq js2-mode-comments-hidden t)
11097 (dolist (n (js2-ast-root-comments js2-mode-ast))
11098 (when (js2-block-comment-p n)
11099 (js2-mode-hide-comment n)))
11100 (js2-mode-hide-//-comments)))
11101
11102 (defun js2-mode-extend-//-comment (direction)
11103 "Find start or end of a block of similar //-comment lines.
11104 DIRECTION is -1 to look back, 1 to look forward.
11105 INDENT is the indentation level to match.
11106 Returns the end-of-line position of the furthest adjacent
11107 //-comment line with the same indentation as the current line.
11108 If there is no such matching line, returns current end of line."
11109 (let ((pos (point-at-eol))
11110 (indent (current-indentation)))
11111 (save-excursion
11112 (while (and (zerop (forward-line direction))
11113 (looking-at js2-mode-//-comment-re)
11114 (eq indent (length (match-string 1))))
11115 (setq pos (point-at-eol))
11116 pos))))
11117
11118 (defun js2-mode-hide-//-comments ()
11119 "Fold adjacent 1-line comments, showing only snippet of first one."
11120 (let (beg end)
11121 (save-excursion
11122 (goto-char (point-min))
11123 (while (re-search-forward js2-mode-//-comment-re nil t)
11124 (setq beg (point)
11125 end (js2-mode-extend-//-comment 1))
11126 (unless (eq beg end)
11127 (overlay-put (js2-mode-flag-region beg end 'hide)
11128 'comment t))
11129 (goto-char end)
11130 (forward-char 1)))))
11131
11132 (defun js2-mode-toggle-//-comment ()
11133 "Fold or un-fold any multi-line //-comment at point.
11134 Caller should have determined that this line starts with a //-comment."
11135 (let* ((beg (point-at-eol))
11136 (end beg))
11137 (save-excursion
11138 (goto-char end)
11139 (if (js2-mode-invisible-overlay-bounds)
11140 (js2-mode-show-element)
11141 ;; else hide the comment
11142 (setq beg (js2-mode-extend-//-comment -1)
11143 end (js2-mode-extend-//-comment 1))
11144 (unless (eq beg end)
11145 (overlay-put (js2-mode-flag-region beg end 'hide)
11146 'comment t))))))
11147
11148 (defun js2-mode-show-comments ()
11149 "Un-hide any hidden comments, leaving other hidden elements alone."
11150 (interactive)
11151 (setq js2-mode-comments-hidden nil)
11152 (save-excursion
11153 (goto-char (point-min))
11154 (while (/= (goto-char (next-overlay-change (point)))
11155 (point-max))
11156 (dolist (o (overlays-at (point)))
11157 (when (overlay-get o 'comment)
11158 (js2-mode-flag-region (overlay-start o) (overlay-end o) nil))))))
11159
11160 (defun js2-mode-display-warnings-and-errors ()
11161 "Turn on display of warnings and errors."
11162 (interactive)
11163 (setq js2-mode-show-parse-errors t
11164 js2-mode-show-strict-warnings t)
11165 (js2-reparse 'force))
11166
11167 (defun js2-mode-hide-warnings-and-errors ()
11168 "Turn off display of warnings and errors."
11169 (interactive)
11170 (setq js2-mode-show-parse-errors nil
11171 js2-mode-show-strict-warnings nil)
11172 (js2-reparse 'force))
11173
11174 (defun js2-mode-toggle-warnings-and-errors ()
11175 "Toggle the display of warnings and errors.
11176 Some users don't like having warnings/errors reported while they type."
11177 (interactive)
11178 (setq js2-mode-show-parse-errors (not js2-mode-show-parse-errors)
11179 js2-mode-show-strict-warnings (not js2-mode-show-strict-warnings))
11180 (if (called-interactively-p 'any)
11181 (message "warnings and errors %s"
11182 (if js2-mode-show-parse-errors
11183 "enabled"
11184 "disabled")))
11185 (js2-reparse 'force))
11186
11187 (defun js2-mode-customize ()
11188 (interactive)
11189 (customize-group 'js2-mode))
11190
11191 (defun js2-mode-forward-sexp (&optional arg)
11192 "Move forward across one statement or balanced expression.
11193 With ARG, do it that many times. Negative arg -N means
11194 move backward across N balanced expressions."
11195 (interactive "p")
11196 (setq arg (or arg 1))
11197 (save-restriction
11198 (widen) ;; `blink-matching-open' calls `narrow-to-region'
11199 (js2-reparse)
11200 (let (forward-sexp-function
11201 node (start (point)) pos lp rp child)
11202 (cond
11203 ;; backward-sexp
11204 ;; could probably make this better for some cases:
11205 ;; - if in statement block (e.g. function body), go to parent
11206 ;; - infix exprs like (foo in bar) - maybe go to beginning
11207 ;; of infix expr if in the right-side expression?
11208 ((and arg (minusp arg))
11209 (dotimes (_ (- arg))
11210 (js2-backward-sws)
11211 (forward-char -1) ; Enter the node we backed up to.
11212 (when (setq node (js2-node-at-point (point) t))
11213 (setq pos (js2-node-abs-pos node))
11214 (let ((parens (js2-mode-forward-sexp-parens node pos)))
11215 (setq lp (car parens)
11216 rp (cdr parens)))
11217 (when (and lp (> start lp))
11218 (if (and rp (<= start rp))
11219 ;; Between parens, check if there's a child node we can jump.
11220 (when (setq child (js2-node-closest-child node (point) lp t))
11221 (setq pos (js2-node-abs-pos child)))
11222 ;; Before both parens.
11223 (setq pos lp)))
11224 (let ((state (parse-partial-sexp start pos)))
11225 (goto-char (if (not (zerop (car state)))
11226 ;; Stumble at the unbalanced paren if < 0, or
11227 ;; jump a bit further if > 0.
11228 (scan-sexps start -1)
11229 pos))))
11230 (unless pos (goto-char (point-min)))))
11231 (t
11232 ;; forward-sexp
11233 (dotimes (_ arg)
11234 (js2-forward-sws)
11235 (when (setq node (js2-node-at-point (point) t))
11236 (setq pos (js2-node-abs-pos node))
11237 (let ((parens (js2-mode-forward-sexp-parens node pos)))
11238 (setq lp (car parens)
11239 rp (cdr parens)))
11240 (or
11241 (when (and rp (<= start rp))
11242 (if (> start lp)
11243 (when (setq child (js2-node-closest-child node (point) rp))
11244 (setq pos (js2-node-abs-end child)))
11245 (setq pos (1+ rp))))
11246 ;; No parens or child nodes, looks for the end of the curren node.
11247 (incf pos (js2-node-len
11248 (if (js2-expr-stmt-node-p (js2-node-parent node))
11249 ;; Stop after the semicolon.
11250 (js2-node-parent node)
11251 node))))
11252 (let ((state (save-excursion (parse-partial-sexp start pos))))
11253 (goto-char (if (not (zerop (car state)))
11254 (scan-sexps start 1)
11255 pos))))
11256 (unless pos (goto-char (point-max)))))))))
11257
11258 (defun js2-mode-forward-sexp-parens (node abs-pos)
11259 "Return a cons cell with positions of main parens in NODE."
11260 (cond
11261 ((or (js2-array-node-p node)
11262 (js2-object-node-p node)
11263 (js2-comp-node-p node)
11264 (memq (aref node 0) '(cl-struct-js2-block-node cl-struct-js2-scope)))
11265 (cons abs-pos (+ abs-pos (js2-node-len node) -1)))
11266 ((js2-paren-expr-node-p node)
11267 (let ((lp (js2-node-lp node))
11268 (rp (js2-node-rp node)))
11269 (cons (when lp (+ abs-pos lp))
11270 (when rp (+ abs-pos rp)))))))
11271
11272 (defun js2-node-closest-child (parent point limit &optional before)
11273 (let* ((parent-pos (js2-node-abs-pos parent))
11274 (rpoint (- point parent-pos))
11275 (rlimit (- limit parent-pos))
11276 (min (min rpoint rlimit))
11277 (max (max rpoint rlimit))
11278 found)
11279 (catch 'done
11280 (js2-visit-ast
11281 parent
11282 (lambda (node _end-p)
11283 (if (eq node parent)
11284 t
11285 (let ((pos (js2-node-pos node)) ;; Both relative values.
11286 (end (+ (js2-node-pos node) (js2-node-len node))))
11287 (when (and (>= pos min) (<= end max)
11288 (if before (< pos rpoint) (> end rpoint)))
11289 (setq found node))
11290 (when (> end rpoint)
11291 (throw 'done nil)))
11292 nil))))
11293 found))
11294
11295 (defun js2-errors ()
11296 "Return a list of errors found."
11297 (and js2-mode-ast
11298 (js2-ast-root-errors js2-mode-ast)))
11299
11300 (defun js2-warnings ()
11301 "Return a list of warnings found."
11302 (and js2-mode-ast
11303 (js2-ast-root-warnings js2-mode-ast)))
11304
11305 (defun js2-have-errors-p ()
11306 "Return non-nil if any parse errors or warnings were found."
11307 (or (js2-errors) (js2-warnings)))
11308
11309 (defun js2-errors-and-warnings ()
11310 "Return a copy of the concatenated errors and warnings lists.
11311 They are appended: first the errors, then the warnings.
11312 Entries are of the form (MSG BEG END)."
11313 (when js2-mode-ast
11314 (append (js2-ast-root-errors js2-mode-ast)
11315 (copy-sequence (js2-ast-root-warnings js2-mode-ast)))))
11316
11317 (defun js2-next-error (&optional arg reset)
11318 "Move to next parse error.
11319 Typically invoked via \\[next-error].
11320 ARG is the number of errors, forward or backward, to move.
11321 RESET means start over from the beginning."
11322 (interactive "p")
11323 (if (not (or (js2-errors) (js2-warnings)))
11324 (message "No errors")
11325 (when reset
11326 (goto-char (point-min)))
11327 (let* ((errs (js2-errors-and-warnings))
11328 (continue t)
11329 (start (point))
11330 (count (or arg 1))
11331 (backward (minusp count))
11332 (sorter (if backward '> '<))
11333 (stopper (if backward '< '>))
11334 (count (abs count))
11335 all-errs err)
11336 ;; Sort by start position.
11337 (setq errs (sort errs (lambda (e1 e2)
11338 (funcall sorter (second e1) (second e2))))
11339 all-errs errs)
11340 ;; Find nth error with pos > start.
11341 (while (and errs continue)
11342 (when (funcall stopper (cadar errs) start)
11343 (setq err (car errs))
11344 (if (zerop (decf count))
11345 (setq continue nil)))
11346 (setq errs (cdr errs)))
11347 ;; Clear for `js2-echo-error'.
11348 (message nil)
11349 (if err
11350 (goto-char (second err))
11351 ;; Wrap around to first error.
11352 (goto-char (second (car all-errs)))
11353 ;; If we were already on it, echo msg again.
11354 (if (= (point) start)
11355 (js2-echo-error (point) (point)))))))
11356
11357 (defun js2-down-mouse-3 ()
11358 "Make right-click move the point to the click location.
11359 This makes right-click context menu operations a bit more intuitive.
11360 The point will not move if the region is active, however, to avoid
11361 destroying the region selection."
11362 (interactive)
11363 (when (and js2-move-point-on-right-click
11364 (not mark-active))
11365 (let ((e last-input-event))
11366 (ignore-errors
11367 (goto-char (cadadr e))))))
11368
11369 (defun js2-mode-create-imenu-index ()
11370 "Return an alist for `imenu--index-alist'."
11371 ;; This is built up in `js2-parse-record-imenu' during parsing.
11372 (when js2-mode-ast
11373 ;; if we have an ast but no recorder, they're requesting a rescan
11374 (unless js2-imenu-recorder
11375 (js2-reparse 'force))
11376 (prog1
11377 (js2-build-imenu-index)
11378 (setq js2-imenu-recorder nil
11379 js2-imenu-function-map nil))))
11380
11381 (defun js2-mode-find-tag ()
11382 "Replacement for `find-tag-default'.
11383 `find-tag-default' returns a ridiculous answer inside comments."
11384 (let (beg end)
11385 (js2-with-underscore-as-word-syntax
11386 (save-excursion
11387 (if (and (not (looking-at "[[:alnum:]_$]"))
11388 (looking-back "[[:alnum:]_$]"))
11389 (setq beg (progn (forward-word -1) (point))
11390 end (progn (forward-word 1) (point)))
11391 (setq beg (progn (forward-word 1) (point))
11392 end (progn (forward-word -1) (point))))
11393 (replace-regexp-in-string
11394 "[\"']" ""
11395 (buffer-substring-no-properties beg end))))))
11396
11397 (defun js2-mode-forward-sibling ()
11398 "Move to the end of the sibling following point in parent.
11399 Returns non-nil if successful, or nil if there was no following sibling."
11400 (let* ((node (js2-node-at-point))
11401 (parent (js2-mode-find-enclosing-fn node))
11402 sib)
11403 (when (setq sib (js2-node-find-child-after (point) parent))
11404 (goto-char (+ (js2-node-abs-pos sib)
11405 (js2-node-len sib))))))
11406
11407 (defun js2-mode-backward-sibling ()
11408 "Move to the beginning of the sibling node preceding point in parent.
11409 Parent is defined as the enclosing script or function."
11410 (let* ((node (js2-node-at-point))
11411 (parent (js2-mode-find-enclosing-fn node))
11412 sib)
11413 (when (setq sib (js2-node-find-child-before (point) parent))
11414 (goto-char (js2-node-abs-pos sib)))))
11415
11416 (defun js2-beginning-of-defun (&optional arg)
11417 "Go to line on which current function starts, and return t on success.
11418 If we're not in a function or already at the beginning of one, go
11419 to beginning of previous script-level element.
11420 With ARG N, do that N times. If N is negative, move forward."
11421 (setq arg (or arg 1))
11422 (if (plusp arg)
11423 (let ((parent (js2-node-parent-script-or-fn (js2-node-at-point))))
11424 (when (cond
11425 ((js2-function-node-p parent)
11426 (goto-char (js2-node-abs-pos parent)))
11427 (t
11428 (js2-mode-backward-sibling)))
11429 (if (> arg 1)
11430 (js2-beginning-of-defun (1- arg))
11431 t)))
11432 (when (js2-end-of-defun)
11433 (js2-beginning-of-defun (if (>= arg -1) 1 (1+ arg))))))
11434
11435 (defun js2-end-of-defun ()
11436 "Go to the char after the last position of the current function
11437 or script-level element."
11438 (let* ((node (js2-node-at-point))
11439 (parent (or (and (js2-function-node-p node) node)
11440 (js2-node-parent-script-or-fn node)))
11441 script)
11442 (unless (js2-function-node-p parent)
11443 ;; Use current script-level node, or, if none, the next one.
11444 (setq script (or parent node)
11445 parent (js2-node-find-child-before (point) script))
11446 (when (or (null parent)
11447 (>= (point) (+ (js2-node-abs-pos parent)
11448 (js2-node-len parent))))
11449 (setq parent (js2-node-find-child-after (point) script))))
11450 (when parent
11451 (goto-char (+ (js2-node-abs-pos parent)
11452 (js2-node-len parent))))))
11453
11454 (defun js2-mark-defun (&optional allow-extend)
11455 "Put mark at end of this function, point at beginning.
11456 The function marked is the one that contains point.
11457
11458 Interactively, if this command is repeated,
11459 or (in Transient Mark mode) if the mark is active,
11460 it marks the next defun after the ones already marked."
11461 (interactive "p")
11462 (let (extended)
11463 (when (and allow-extend
11464 (or (and (eq last-command this-command) (mark t))
11465 (and transient-mark-mode mark-active)))
11466 (let ((sib (save-excursion
11467 (goto-char (mark))
11468 (if (js2-mode-forward-sibling)
11469 (point)))))
11470 (if sib
11471 (progn
11472 (set-mark sib)
11473 (setq extended t))
11474 ;; no more siblings - try extending to enclosing node
11475 (goto-char (mark t)))))
11476 (when (not extended)
11477 (let ((node (js2-node-at-point (point) t)) ; skip comments
11478 ast fn stmt parent beg end)
11479 (when (js2-ast-root-p node)
11480 (setq ast node
11481 node (or (js2-node-find-child-after (point) node)
11482 (js2-node-find-child-before (point) node))))
11483 ;; only mark whole buffer if we can't find any children
11484 (if (null node)
11485 (setq node ast))
11486 (if (js2-function-node-p node)
11487 (setq parent node)
11488 (setq fn (js2-mode-find-enclosing-fn node)
11489 stmt (if (or (null fn)
11490 (js2-ast-root-p fn))
11491 (js2-mode-find-first-stmt node))
11492 parent (or stmt fn)))
11493 (setq beg (js2-node-abs-pos parent)
11494 end (+ beg (js2-node-len parent)))
11495 (push-mark beg)
11496 (goto-char end)
11497 (exchange-point-and-mark)))))
11498
11499 (defun js2-narrow-to-defun ()
11500 "Narrow to the function enclosing point."
11501 (interactive)
11502 (let* ((node (js2-node-at-point (point) t)) ; skip comments
11503 (fn (if (js2-script-node-p node)
11504 node
11505 (js2-mode-find-enclosing-fn node)))
11506 (beg (js2-node-abs-pos fn)))
11507 (unless (js2-ast-root-p fn)
11508 (narrow-to-region beg (+ beg (js2-node-len fn))))))
11509
11510 (provide 'js2-mode)
11511
11512 ;;; js2-mode.el ends here