]> code.delx.au - gnu-emacs-elpa/blob - js2-mode.el
js2-class-node: Inherit from js2-object-node
[gnu-emacs-elpa] / js2-mode.el
1 ;;; js2-mode.el --- Improved JavaScript editing mode
2
3 ;; Copyright (C) 2009, 2011-2015 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: 20150909
11 ;; Keywords: languages, javascript
12 ;; Package-Requires: ((emacs "24.1") (cl-lib "0.5"))
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 ;; Support for JSX is available via the derived mode `js2-jsx-mode'. If you
64 ;; also want JSX support, use that mode instead:
65
66 ;; (add-to-list 'auto-mode-alist '("\\.jsx?\\'" . js2-jsx-mode))
67 ;; (add-to-list 'interpreter-mode-alist '("node" . js2-jsx-mode))
68
69 ;; To customize how it works:
70 ;; M-x customize-group RET js2-mode RET
71
72 ;; Notes:
73
74 ;; This mode includes a port of Mozilla Rhino's scanner, parser and
75 ;; symbol table. Ideally it should stay in sync with Rhino, keeping
76 ;; `js2-mode' current as the EcmaScript language standard evolves.
77
78 ;; Unlike cc-engine based language modes, js2-mode's line-indentation is not
79 ;; customizable. It is a surprising amount of work to support customizable
80 ;; indentation. The current compromise is that the tab key lets you cycle among
81 ;; various likely indentation points, similar to the behavior of python-mode.
82
83 ;; This mode does not yet work with "multi-mode" modes such as `mmm-mode'
84 ;; and `mumamo', although it could be made to do so with some effort.
85 ;; This means that `js2-mode' is currently only useful for editing JavaScript
86 ;; files, and not for editing JavaScript within <script> tags or templates.
87
88 ;; The project page on GitHub is used for development and issue tracking.
89 ;; The original homepage at Google Code has outdated information and is mostly
90 ;; unmaintained.
91
92 ;;; Code:
93
94 (require 'cl-lib)
95 (require 'imenu)
96 (require 'js)
97 (require 'etags)
98
99 (eval-and-compile
100 (if (version< emacs-version "25.0")
101 (require 'js2-old-indent)
102 (defvaralias 'js2-basic-offset 'js-indent-level nil)
103 (defalias 'js2-proper-indentation 'js--proper-indentation)
104 (defalias 'js2-jsx-indent-line 'js-jsx-indent-line)
105 (defalias 'js2-indent-line 'js-indent-line)
106 (defalias 'js2-re-search-forward 'js--re-search-forward)))
107
108 ;;; Externs (variables presumed to be defined by the host system)
109
110 (defvar js2-ecma-262-externs
111 (mapcar 'symbol-name
112 '(Array Boolean Date Error EvalError Function Infinity JSON
113 Math NaN Number Object RangeError ReferenceError RegExp
114 String SyntaxError TypeError URIError
115 decodeURI decodeURIComponent encodeURI
116 encodeURIComponent escape eval isFinite isNaN
117 parseFloat parseInt undefined unescape))
118 "Ecma-262 externs. Included in `js2-externs' by default.")
119
120 (defvar js2-browser-externs
121 (mapcar 'symbol-name
122 '(;; DOM level 1
123 Attr CDATASection CharacterData Comment DOMException
124 DOMImplementation Document DocumentFragment
125 DocumentType Element Entity EntityReference
126 ExceptionCode NamedNodeMap Node NodeList Notation
127 ProcessingInstruction Text
128
129 ;; DOM level 2
130 HTMLAnchorElement HTMLAppletElement HTMLAreaElement
131 HTMLBRElement HTMLBaseElement HTMLBaseFontElement
132 HTMLBodyElement HTMLButtonElement HTMLCollection
133 HTMLDListElement HTMLDirectoryElement HTMLDivElement
134 HTMLDocument HTMLElement HTMLFieldSetElement
135 HTMLFontElement HTMLFormElement HTMLFrameElement
136 HTMLFrameSetElement HTMLHRElement HTMLHeadElement
137 HTMLHeadingElement HTMLHtmlElement HTMLIFrameElement
138 HTMLImageElement HTMLInputElement HTMLIsIndexElement
139 HTMLLIElement HTMLLabelElement HTMLLegendElement
140 HTMLLinkElement HTMLMapElement HTMLMenuElement
141 HTMLMetaElement HTMLModElement HTMLOListElement
142 HTMLObjectElement HTMLOptGroupElement
143 HTMLOptionElement HTMLOptionsCollection
144 HTMLParagraphElement HTMLParamElement HTMLPreElement
145 HTMLQuoteElement HTMLScriptElement HTMLSelectElement
146 HTMLStyleElement HTMLTableCaptionElement
147 HTMLTableCellElement HTMLTableColElement
148 HTMLTableElement HTMLTableRowElement
149 HTMLTableSectionElement HTMLTextAreaElement
150 HTMLTitleElement HTMLUListElement
151
152 ;; DOM level 3
153 DOMConfiguration DOMError DOMException
154 DOMImplementationList DOMImplementationSource
155 DOMLocator DOMStringList NameList TypeInfo
156 UserDataHandler
157
158 ;; Window
159 window alert confirm document java navigator prompt screen
160 self top requestAnimationFrame cancelAnimationFrame
161
162 ;; W3C CSS
163 CSSCharsetRule CSSFontFace CSSFontFaceRule
164 CSSImportRule CSSMediaRule CSSPageRule
165 CSSPrimitiveValue CSSProperties CSSRule CSSRuleList
166 CSSStyleDeclaration CSSStyleRule CSSStyleSheet
167 CSSValue CSSValueList Counter DOMImplementationCSS
168 DocumentCSS DocumentStyle ElementCSSInlineStyle
169 LinkStyle MediaList RGBColor Rect StyleSheet
170 StyleSheetList ViewCSS
171
172 ;; W3C Event
173 EventListener EventTarget Event DocumentEvent UIEvent
174 MouseEvent MutationEvent KeyboardEvent
175
176 ;; W3C Range
177 DocumentRange Range RangeException
178
179 ;; W3C XML
180 XPathResult XMLHttpRequest
181
182 ;; console object. Provided by at least Chrome and Firefox.
183 console))
184 "Browser externs.
185 You can cause these to be included or excluded with the custom
186 variable `js2-include-browser-externs'.")
187
188 (defvar js2-rhino-externs
189 (mapcar 'symbol-name
190 '(Packages importClass importPackage com org java
191 ;; Global object (shell) externs.
192 defineClass deserialize doctest gc help load
193 loadClass print quit readFile readUrl runCommand seal
194 serialize spawn sync toint32 version))
195 "Mozilla Rhino externs.
196 Set `js2-include-rhino-externs' to t to include them.")
197
198 (defvar js2-node-externs
199 (mapcar 'symbol-name
200 '(__dirname __filename Buffer clearInterval clearTimeout require
201 console exports global module process setInterval setTimeout
202 querystring setImmediate clearImmediate))
203 "Node.js externs.
204 Set `js2-include-node-externs' to t to include them.")
205
206 (defvar js2-typed-array-externs
207 (mapcar 'symbol-name
208 '(ArrayBuffer Uint8ClampedArray DataView
209 Int8Array Uint8Array Int16Array Uint16Array Int32Array Uint32Array
210 Float32Array Float64Array))
211 "Khronos typed array externs. Available in most modern browsers and
212 in node.js >= 0.6. If `js2-include-node-externs' or `js2-include-browser-externs'
213 are enabled, these will also be included.")
214
215 (defvar js2-harmony-externs
216 (mapcar 'symbol-name
217 '(Map Promise Proxy Reflect Set Symbol WeakMap WeakSet))
218 "ES6 externs. If `js2-include-browser-externs' is enabled and
219 `js2-language-version' is sufficiently high, these will be included.")
220
221 ;;; Variables
222
223 (defun js2-mark-safe-local (name pred)
224 "Make the variable NAME buffer-local and mark it as safe file-local
225 variable with predicate PRED."
226 (make-variable-buffer-local name)
227 (put name 'safe-local-variable pred))
228
229 (defcustom js2-highlight-level 2
230 "Amount of syntax highlighting to perform.
231 0 or a negative value means none.
232 1 adds basic syntax highlighting.
233 2 adds highlighting of some Ecma built-in properties.
234 3 adds highlighting of many Ecma built-in functions."
235 :group 'js2-mode
236 :type '(choice (const :tag "None" 0)
237 (const :tag "Basic" 1)
238 (const :tag "Include Properties" 2)
239 (const :tag "Include Functions" 3)))
240
241 (defvar js2-mode-dev-mode-p nil
242 "Non-nil if running in development mode. Normally nil.")
243
244 (defgroup js2-mode nil
245 "An improved JavaScript mode."
246 :group 'languages)
247
248 (defcustom js2-idle-timer-delay 0.2
249 "Delay in secs before re-parsing after user makes changes.
250 Multiplied by `js2-dynamic-idle-timer-adjust', which see."
251 :type 'number
252 :group 'js2-mode)
253 (make-variable-buffer-local 'js2-idle-timer-delay)
254
255 (defcustom js2-dynamic-idle-timer-adjust 0
256 "Positive to adjust `js2-idle-timer-delay' based on file size.
257 The idea is that for short files, parsing is faster so we can be
258 more responsive to user edits without interfering with editing.
259 The buffer length in characters (typically bytes) is divided by
260 this value and used to multiply `js2-idle-timer-delay' for the
261 buffer. For example, a 21k file and 10k adjust yields 21k/10k
262 == 2, so js2-idle-timer-delay is multiplied by 2.
263 If `js2-dynamic-idle-timer-adjust' is 0 or negative,
264 `js2-idle-timer-delay' is not dependent on the file size."
265 :type 'number
266 :group 'js2-mode)
267
268 (defcustom js2-concat-multiline-strings t
269 "When non-nil, `js2-line-break' in mid-string will make it a
270 string concatenation. When `eol', the '+' will be inserted at the
271 end of the line, otherwise, at the beginning of the next line."
272 :type '(choice (const t) (const eol) (const nil))
273 :group 'js2-mode)
274
275 (defcustom js2-mode-show-parse-errors t
276 "True to highlight parse errors."
277 :type 'boolean
278 :group 'js2-mode)
279
280 (defcustom js2-mode-show-strict-warnings t
281 "Non-nil to emit Ecma strict-mode warnings.
282 Some of the warnings can be individually disabled by other flags,
283 even if this flag is non-nil."
284 :type 'boolean
285 :group 'js2-mode)
286
287 (defcustom js2-strict-trailing-comma-warning t
288 "Non-nil to warn about trailing commas in array literals.
289 Ecma-262-5.1 allows them, but older versions of IE raise an error."
290 :type 'boolean
291 :group 'js2-mode)
292
293 (defcustom js2-strict-missing-semi-warning t
294 "Non-nil to warn about semicolon auto-insertion after statement.
295 Technically this is legal per Ecma-262, but some style guides disallow
296 depending on it."
297 :type 'boolean
298 :group 'js2-mode)
299
300 (defcustom js2-missing-semi-one-line-override nil
301 "Non-nil to permit missing semicolons in one-line functions.
302 In one-liner functions such as `function identity(x) {return x}'
303 people often omit the semicolon for a cleaner look. If you are
304 such a person, you can suppress the missing-semicolon warning
305 by setting this variable to t."
306 :type 'boolean
307 :group 'js2-mode)
308
309 (defcustom js2-strict-inconsistent-return-warning t
310 "Non-nil to warn about mixing returns with value-returns.
311 It's perfectly legal to have a `return' and a `return foo' in the
312 same function, but it's often an indicator of a bug, and it also
313 interferes with type inference (in systems that support it.)"
314 :type 'boolean
315 :group 'js2-mode)
316
317 (defcustom js2-strict-cond-assign-warning t
318 "Non-nil to warn about expressions like if (a = b).
319 This often should have been '==' instead of '='. If the warning
320 is enabled, you can suppress it on a per-expression basis by
321 parenthesizing the expression, e.g. if ((a = b)) ..."
322 :type 'boolean
323 :group 'js2-mode)
324
325 (defcustom js2-strict-var-redeclaration-warning t
326 "Non-nil to warn about redeclaring variables in a script or function."
327 :type 'boolean
328 :group 'js2-mode)
329
330 (defcustom js2-strict-var-hides-function-arg-warning t
331 "Non-nil to warn about a var decl hiding a function argument."
332 :type 'boolean
333 :group 'js2-mode)
334
335 (defcustom js2-skip-preprocessor-directives nil
336 "Non-nil to treat lines beginning with # as comments.
337 Useful for viewing Mozilla JavaScript source code."
338 :type 'boolean
339 :group 'js2-mode)
340
341 (defcustom js2-language-version 200
342 "Configures what JavaScript language version to recognize.
343 Currently versions 150, 160, 170, 180 and 200 are supported,
344 corresponding to JavaScript 1.5, 1.6, 1.7, 1.8 and 2.0 (Harmony),
345 respectively. In a nutshell, 1.6 adds E4X support, 1.7 adds let,
346 yield, and Array comprehensions, and 1.8 adds function closures."
347 :type 'integer
348 :group 'js2-mode)
349
350 (defcustom js2-instanceof-has-side-effects nil
351 "If non-nil, treats the instanceof operator as having side effects.
352 This is useful for xulrunner apps."
353 :type 'boolean
354 :group 'js2-mode)
355
356 (defcustom js2-move-point-on-right-click t
357 "Non-nil to move insertion point when you right-click.
358 This makes right-click context menu behavior a bit more intuitive,
359 since menu operations generally apply to the point. The exception
360 is if there is a region selection, in which case the point does -not-
361 move, so cut/copy/paste can work properly.
362
363 Note that IntelliJ moves the point, and Eclipse leaves it alone,
364 so this behavior is customizable."
365 :group 'js2-mode
366 :type 'boolean)
367
368 (defcustom js2-allow-rhino-new-expr-initializer t
369 "Non-nil to support a Rhino's experimental syntactic construct.
370
371 Rhino supports the ability to follow a `new' expression with an object
372 literal, which is used to set additional properties on the new object
373 after calling its constructor. Syntax:
374
375 new <expr> [ ( arglist ) ] [initializer]
376
377 Hence, this expression:
378
379 new Object {a: 1, b: 2}
380
381 results in an Object with properties a=1 and b=2. This syntax is
382 apparently not configurable in Rhino - it's currently always enabled,
383 as of Rhino version 1.7R2."
384 :type 'boolean
385 :group 'js2-mode)
386
387 (defcustom js2-allow-member-expr-as-function-name nil
388 "Non-nil to support experimental Rhino syntax for function names.
389
390 Rhino supports an experimental syntax configured via the Rhino Context
391 setting `allowMemberExprAsFunctionName'. The experimental syntax is:
392
393 function <member-expr> ( [ arg-list ] ) { <body> }
394
395 Where member-expr is a non-parenthesized 'member expression', which
396 is anything at the grammar level of a new-expression or lower, meaning
397 any expression that does not involve infix or unary operators.
398
399 When <member-expr> is not a simple identifier, then it is syntactic
400 sugar for assigning the anonymous function to the <member-expr>. Hence,
401 this code:
402
403 function a.b().c[2] (x, y) { ... }
404
405 is rewritten as:
406
407 a.b().c[2] = function(x, y) {...}
408
409 which doesn't seem particularly useful, but Rhino permits it."
410 :type 'boolean
411 :group 'js2-mode)
412
413 ;; scanner variables
414
415 (defmacro js2-deflocal (name value &optional comment)
416 "Define a buffer-local variable NAME with VALUE and COMMENT."
417 (declare (debug defvar) (doc-string 3))
418 `(progn
419 (defvar ,name ,value ,comment)
420 (make-variable-buffer-local ',name)))
421
422 (defvar js2-EOF_CHAR -1
423 "Represents end of stream. Distinct from js2-EOF token type.")
424
425 ;; I originally used symbols to represent tokens, but Rhino uses
426 ;; ints and then sets various flag bits in them, so ints it is.
427 ;; The upshot is that we need a `js2-' prefix in front of each name.
428 (defvar js2-ERROR -1)
429 (defvar js2-EOF 0)
430 (defvar js2-EOL 1)
431 (defvar js2-ENTERWITH 2) ; begin interpreter bytecodes
432 (defvar js2-LEAVEWITH 3)
433 (defvar js2-RETURN 4)
434 (defvar js2-GOTO 5)
435 (defvar js2-IFEQ 6)
436 (defvar js2-IFNE 7)
437 (defvar js2-SETNAME 8)
438 (defvar js2-BITOR 9)
439 (defvar js2-BITXOR 10)
440 (defvar js2-BITAND 11)
441 (defvar js2-EQ 12)
442 (defvar js2-NE 13)
443 (defvar js2-LT 14)
444 (defvar js2-LE 15)
445 (defvar js2-GT 16)
446 (defvar js2-GE 17)
447 (defvar js2-LSH 18)
448 (defvar js2-RSH 19)
449 (defvar js2-URSH 20)
450 (defvar js2-ADD 21) ; infix plus
451 (defvar js2-SUB 22) ; infix minus
452 (defvar js2-MUL 23)
453 (defvar js2-DIV 24)
454 (defvar js2-MOD 25)
455 (defvar js2-NOT 26)
456 (defvar js2-BITNOT 27)
457 (defvar js2-POS 28) ; unary plus
458 (defvar js2-NEG 29) ; unary minus
459 (defvar js2-NEW 30)
460 (defvar js2-DELPROP 31)
461 (defvar js2-TYPEOF 32)
462 (defvar js2-GETPROP 33)
463 (defvar js2-GETPROPNOWARN 34)
464 (defvar js2-SETPROP 35)
465 (defvar js2-GETELEM 36)
466 (defvar js2-SETELEM 37)
467 (defvar js2-CALL 38)
468 (defvar js2-NAME 39) ; an identifier
469 (defvar js2-NUMBER 40)
470 (defvar js2-STRING 41)
471 (defvar js2-NULL 42)
472 (defvar js2-THIS 43)
473 (defvar js2-FALSE 44)
474 (defvar js2-TRUE 45)
475 (defvar js2-SHEQ 46) ; shallow equality (===)
476 (defvar js2-SHNE 47) ; shallow inequality (!==)
477 (defvar js2-REGEXP 48)
478 (defvar js2-BINDNAME 49)
479 (defvar js2-THROW 50)
480 (defvar js2-RETHROW 51) ; rethrow caught exception: catch (e if ) uses it
481 (defvar js2-IN 52)
482 (defvar js2-INSTANCEOF 53)
483 (defvar js2-LOCAL_LOAD 54)
484 (defvar js2-GETVAR 55)
485 (defvar js2-SETVAR 56)
486 (defvar js2-CATCH_SCOPE 57)
487 (defvar js2-ENUM_INIT_KEYS 58) ; FIXME: what are these?
488 (defvar js2-ENUM_INIT_VALUES 59)
489 (defvar js2-ENUM_INIT_ARRAY 60)
490 (defvar js2-ENUM_NEXT 61)
491 (defvar js2-ENUM_ID 62)
492 (defvar js2-THISFN 63)
493 (defvar js2-RETURN_RESULT 64) ; to return previously stored return result
494 (defvar js2-ARRAYLIT 65) ; array literal
495 (defvar js2-OBJECTLIT 66) ; object literal
496 (defvar js2-GET_REF 67) ; *reference
497 (defvar js2-SET_REF 68) ; *reference = something
498 (defvar js2-DEL_REF 69) ; delete reference
499 (defvar js2-REF_CALL 70) ; f(args) = something or f(args)++
500 (defvar js2-REF_SPECIAL 71) ; reference for special properties like __proto
501 (defvar js2-YIELD 72) ; JS 1.7 yield pseudo keyword
502
503 ;; XML support
504 (defvar js2-DEFAULTNAMESPACE 73)
505 (defvar js2-ESCXMLATTR 74)
506 (defvar js2-ESCXMLTEXT 75)
507 (defvar js2-REF_MEMBER 76) ; Reference for x.@y, x..y etc.
508 (defvar js2-REF_NS_MEMBER 77) ; Reference for x.ns::y, x..ns::y etc.
509 (defvar js2-REF_NAME 78) ; Reference for @y, @[y] etc.
510 (defvar js2-REF_NS_NAME 79) ; Reference for ns::y, @ns::y@[y] etc.
511
512 (defvar js2-first-bytecode js2-ENTERWITH)
513 (defvar js2-last-bytecode js2-REF_NS_NAME)
514
515 (defvar js2-TRY 80)
516 (defvar js2-SEMI 81) ; semicolon
517 (defvar js2-LB 82) ; left and right brackets
518 (defvar js2-RB 83)
519 (defvar js2-LC 84) ; left and right curly-braces
520 (defvar js2-RC 85)
521 (defvar js2-LP 86) ; left and right parens
522 (defvar js2-RP 87)
523 (defvar js2-COMMA 88) ; comma operator
524
525 (defvar js2-ASSIGN 89) ; simple assignment (=)
526 (defvar js2-ASSIGN_BITOR 90) ; |=
527 (defvar js2-ASSIGN_BITXOR 91) ; ^=
528 (defvar js2-ASSIGN_BITAND 92) ; &=
529 (defvar js2-ASSIGN_LSH 93) ; <<=
530 (defvar js2-ASSIGN_RSH 94) ; >>=
531 (defvar js2-ASSIGN_URSH 95) ; >>>=
532 (defvar js2-ASSIGN_ADD 96) ; +=
533 (defvar js2-ASSIGN_SUB 97) ; -=
534 (defvar js2-ASSIGN_MUL 98) ; *=
535 (defvar js2-ASSIGN_DIV 99) ; /=
536 (defvar js2-ASSIGN_MOD 100) ; %=
537
538 (defvar js2-first-assign js2-ASSIGN)
539 (defvar js2-last-assign js2-ASSIGN_MOD)
540
541 (defvar js2-HOOK 101) ; conditional (?:)
542 (defvar js2-COLON 102)
543 (defvar js2-OR 103) ; logical or (||)
544 (defvar js2-AND 104) ; logical and (&&)
545 (defvar js2-INC 105) ; increment/decrement (++ --)
546 (defvar js2-DEC 106)
547 (defvar js2-DOT 107) ; member operator (.)
548 (defvar js2-FUNCTION 108) ; function keyword
549 (defvar js2-EXPORT 109) ; export keyword
550 (defvar js2-IMPORT 110) ; import keyword
551 (defvar js2-IF 111) ; if keyword
552 (defvar js2-ELSE 112) ; else keyword
553 (defvar js2-SWITCH 113) ; switch keyword
554 (defvar js2-CASE 114) ; case keyword
555 (defvar js2-DEFAULT 115) ; default keyword
556 (defvar js2-WHILE 116) ; while keyword
557 (defvar js2-DO 117) ; do keyword
558 (defvar js2-FOR 118) ; for keyword
559 (defvar js2-BREAK 119) ; break keyword
560 (defvar js2-CONTINUE 120) ; continue keyword
561 (defvar js2-VAR 121) ; var keyword
562 (defvar js2-WITH 122) ; with keyword
563 (defvar js2-CATCH 123) ; catch keyword
564 (defvar js2-FINALLY 124) ; finally keyword
565 (defvar js2-VOID 125) ; void keyword
566 (defvar js2-RESERVED 126) ; reserved keywords
567
568 (defvar js2-EMPTY 127)
569
570 ;; Types used for the parse tree - never returned by scanner.
571
572 (defvar js2-BLOCK 128) ; statement block
573 (defvar js2-LABEL 129) ; label
574 (defvar js2-TARGET 130)
575 (defvar js2-LOOP 131)
576 (defvar js2-EXPR_VOID 132) ; expression statement in functions
577 (defvar js2-EXPR_RESULT 133) ; expression statement in scripts
578 (defvar js2-JSR 134)
579 (defvar js2-SCRIPT 135) ; top-level node for entire script
580 (defvar js2-TYPEOFNAME 136) ; for typeof(simple-name)
581 (defvar js2-USE_STACK 137)
582 (defvar js2-SETPROP_OP 138) ; x.y op= something
583 (defvar js2-SETELEM_OP 139) ; x[y] op= something
584 (defvar js2-LOCAL_BLOCK 140)
585 (defvar js2-SET_REF_OP 141) ; *reference op= something
586
587 ;; For XML support:
588 (defvar js2-DOTDOT 142) ; member operator (..)
589 (defvar js2-COLONCOLON 143) ; namespace::name
590 (defvar js2-XML 144) ; XML type
591 (defvar js2-DOTQUERY 145) ; .() -- e.g., x.emps.emp.(name == "terry")
592 (defvar js2-XMLATTR 146) ; @
593 (defvar js2-XMLEND 147)
594
595 ;; Optimizer-only tokens
596 (defvar js2-TO_OBJECT 148)
597 (defvar js2-TO_DOUBLE 149)
598
599 (defvar js2-GET 150) ; JS 1.5 get pseudo keyword
600 (defvar js2-SET 151) ; JS 1.5 set pseudo keyword
601 (defvar js2-LET 152) ; JS 1.7 let pseudo keyword
602 (defvar js2-CONST 153)
603 (defvar js2-SETCONST 154)
604 (defvar js2-SETCONSTVAR 155)
605 (defvar js2-ARRAYCOMP 156)
606 (defvar js2-LETEXPR 157)
607 (defvar js2-WITHEXPR 158)
608 (defvar js2-DEBUGGER 159)
609
610 (defvar js2-COMMENT 160)
611 (defvar js2-TRIPLEDOT 161) ; for rest parameter
612 (defvar js2-ARROW 162) ; function arrow (=>)
613 (defvar js2-CLASS 163)
614 (defvar js2-EXTENDS 164)
615 (defvar js2-SUPER 165)
616 (defvar js2-TEMPLATE_HEAD 166) ; part of template literal before substitution
617 (defvar js2-NO_SUBS_TEMPLATE 167) ; template literal without substitutions
618 (defvar js2-TAGGED_TEMPLATE 168) ; tagged template literal
619
620 (defvar js2-AWAIT 169) ; await (pseudo keyword)
621
622 (defconst js2-num-tokens (1+ js2-AWAIT))
623
624 (defconst js2-debug-print-trees nil)
625
626 ;; Rhino accepts any string or stream as input. Emacs character
627 ;; processing works best in buffers, so we'll assume the input is a
628 ;; buffer. JavaScript strings can be copied into temp buffers before
629 ;; scanning them.
630
631 ;; Buffer-local variables yield much cleaner code than using `defstruct'.
632 ;; They're the Emacs equivalent of instance variables, more or less.
633
634 (js2-deflocal js2-ts-dirty-line nil
635 "Token stream buffer-local variable.
636 Indicates stuff other than whitespace since start of line.")
637
638 (js2-deflocal js2-ts-hit-eof nil
639 "Token stream buffer-local variable.")
640
641 ;; FIXME: Unused.
642 (js2-deflocal js2-ts-line-start 0
643 "Token stream buffer-local variable.")
644
645 (js2-deflocal js2-ts-lineno 1
646 "Token stream buffer-local variable.")
647
648 ;; FIXME: Unused.
649 (js2-deflocal js2-ts-line-end-char -1
650 "Token stream buffer-local variable.")
651
652 (js2-deflocal js2-ts-cursor 1 ; emacs buffers are 1-indexed
653 "Token stream buffer-local variable.
654 Current scan position.")
655
656 ;; FIXME: Unused.
657 (js2-deflocal js2-ts-is-xml-attribute nil
658 "Token stream buffer-local variable.")
659
660 (js2-deflocal js2-ts-xml-is-tag-content nil
661 "Token stream buffer-local variable.")
662
663 (js2-deflocal js2-ts-xml-open-tags-count 0
664 "Token stream buffer-local variable.")
665
666 (js2-deflocal js2-ts-string-buffer nil
667 "Token stream buffer-local variable.
668 List of chars built up while scanning various tokens.")
669
670 (cl-defstruct (js2-token
671 (:constructor nil)
672 (:constructor make-js2-token (beg)))
673 "Value returned from the token stream."
674 (type js2-EOF)
675 (beg 1)
676 (end -1)
677 (string "")
678 number
679 number-base
680 number-legacy-octal-p
681 regexp-flags
682 comment-type
683 follows-eol-p)
684
685 ;; Have to call `js2-init-scanner' to initialize the values.
686 (js2-deflocal js2-ti-tokens nil)
687 (js2-deflocal js2-ti-tokens-cursor nil)
688 (js2-deflocal js2-ti-lookahead nil)
689
690 (cl-defstruct (js2-ts-state
691 (:constructor make-js2-ts-state (&key (lineno js2-ts-lineno)
692 (cursor js2-ts-cursor)
693 (tokens (copy-sequence js2-ti-tokens))
694 (tokens-cursor js2-ti-tokens-cursor)
695 (lookahead js2-ti-lookahead))))
696 lineno
697 cursor
698 tokens
699 tokens-cursor
700 lookahead)
701
702 ;;; Parser variables
703
704 (js2-deflocal js2-parsed-errors nil
705 "List of errors produced during scanning/parsing.")
706
707 (js2-deflocal js2-parsed-warnings nil
708 "List of warnings produced during scanning/parsing.")
709
710 (js2-deflocal js2-recover-from-parse-errors t
711 "Non-nil to continue parsing after a syntax error.
712
713 In recovery mode, the AST will be built in full, and any error
714 nodes will be flagged with appropriate error information. If
715 this flag is nil, a syntax error will result in an error being
716 signaled.
717
718 The variable is automatically buffer-local, because different
719 modes that use the parser will need different settings.")
720
721 (js2-deflocal js2-parse-hook nil
722 "List of callbacks for receiving parsing progress.")
723
724 (defvar js2-parse-finished-hook nil
725 "List of callbacks to notify when parsing finishes.
726 Not called if parsing was interrupted.")
727
728 (js2-deflocal js2-is-eval-code nil
729 "True if we're evaluating code in a string.
730 If non-nil, the tokenizer will record the token text, and the AST nodes
731 will record their source text. Off by default for IDE modes, since the
732 text is available in the buffer.")
733
734 (defvar js2-parse-ide-mode t
735 "Non-nil if the parser is being used for `js2-mode'.
736 If non-nil, the parser will set text properties for fontification
737 and the syntax table. The value should be nil when using the
738 parser as a frontend to an interpreter or byte compiler.")
739
740 ;;; Parser instance variables (buffer-local vars for js2-parse)
741
742 (defconst js2-ti-after-eol (lsh 1 16)
743 "Flag: first token of the source line.")
744
745 ;; Inline Rhino's CompilerEnvirons vars as buffer-locals.
746
747 (js2-deflocal js2-compiler-generate-debug-info t)
748 (js2-deflocal js2-compiler-use-dynamic-scope nil)
749 (js2-deflocal js2-compiler-reserved-keywords-as-identifier nil)
750 (js2-deflocal js2-compiler-xml-available t)
751 (js2-deflocal js2-compiler-optimization-level 0)
752 (js2-deflocal js2-compiler-generating-source t)
753 (js2-deflocal js2-compiler-strict-mode nil)
754 (js2-deflocal js2-compiler-report-warning-as-error nil)
755 (js2-deflocal js2-compiler-generate-observer-count nil)
756 (js2-deflocal js2-compiler-activation-names nil)
757
758 ;; SKIP: sourceURI
759
760 ;; There's a compileFunction method in Context.java - may need it.
761 (js2-deflocal js2-called-by-compile-function nil
762 "True if `js2-parse' was called by `js2-compile-function'.
763 Will only be used when we finish implementing the interpreter.")
764
765 ;; SKIP: ts (we just call `js2-init-scanner' and use its vars)
766
767 ;; SKIP: node factory - we're going to just call functions directly,
768 ;; and eventually go to a unified AST format.
769
770 (js2-deflocal js2-nesting-of-function 0)
771
772 (js2-deflocal js2-recorded-identifiers nil
773 "Tracks identifiers found during parsing.")
774
775 (js2-deflocal js2-is-in-destructuring nil
776 "True while parsing destructuring expression.")
777
778 (js2-deflocal js2-in-use-strict-directive nil
779 "True while inside a script or function under strict mode.")
780
781 (defcustom js2-global-externs nil
782 "A list of any extern names you'd like to consider always declared.
783 This list is global and is used by all `js2-mode' files.
784 You can create buffer-local externs list using `js2-additional-externs'.
785
786 There is also a buffer-local variable `js2-default-externs',
787 which is initialized by default to include the Ecma-262 externs
788 and the standard browser externs. The three lists are all
789 checked during highlighting."
790 :type 'list
791 :group 'js2-mode)
792
793 (js2-deflocal js2-default-externs nil
794 "Default external declarations.
795
796 These are currently only used for highlighting undeclared variables,
797 which only worries about top-level (unqualified) references.
798 As js2-mode's processing improves, we will flesh out this list.
799
800 The initial value is set to `js2-ecma-262-externs', unless some
801 of the `js2-include-?-externs' variables are set to t, in which
802 case the browser, Rhino and/or Node.js externs are also included.
803
804 See `js2-additional-externs' for more information.")
805
806 (defcustom js2-include-browser-externs t
807 "Non-nil to include browser externs in the master externs list.
808 If you work on JavaScript files that are not intended for browsers,
809 such as Mozilla Rhino server-side JavaScript, set this to nil.
810 See `js2-additional-externs' for more information about externs."
811 :type 'boolean
812 :group 'js2-mode)
813
814 (defcustom js2-include-rhino-externs nil
815 "Non-nil to include Mozilla Rhino externs in the master externs list.
816 See `js2-additional-externs' for more information about externs."
817 :type 'boolean
818 :group 'js2-mode)
819
820 (defcustom js2-include-node-externs nil
821 "Non-nil to include Node.js externs in the master externs list.
822 See `js2-additional-externs' for more information about externs."
823 :type 'boolean
824 :group 'js2-mode)
825
826 (js2-deflocal js2-additional-externs nil
827 "A buffer-local list of additional external declarations.
828 It is used to decide whether variables are considered undeclared
829 for purposes of highlighting.
830
831 Each entry is a Lisp string. The string should be the fully qualified
832 name of an external entity. All externs should be added to this list,
833 so that as js2-mode's processing improves it can take advantage of them.
834
835 You may want to declare your externs in three ways.
836 First, you can add externs that are valid for all your JavaScript files.
837 You should probably do this by adding them to `js2-global-externs', which
838 is a global list used for all js2-mode files.
839
840 Next, you can add a function to `js2-init-hook' that adds additional
841 externs appropriate for the specific file, perhaps based on its path.
842 These should go in `js2-additional-externs', which is buffer-local.
843
844 Third, you can use JSLint's global declaration, as long as
845 `js2-include-jslint-globals' is non-nil, which see.
846
847 Finally, you can add a function to `js2-post-parse-callbacks',
848 which is called after parsing completes, and `js2-mode-ast' is bound to
849 the root of the parse tree. At this stage you can set up an AST
850 node visitor using `js2-visit-ast' and examine the parse tree
851 for specific import patterns that may imply the existence of
852 other externs, possibly tied to your build system. These should also
853 be added to `js2-additional-externs'.
854
855 Your post-parse callback may of course also use the simpler and
856 faster (but perhaps less robust) approach of simply scanning the
857 buffer text for your imports, using regular expressions.")
858
859 ;; SKIP: decompiler
860 ;; SKIP: encoded-source
861
862 ;;; The following variables are per-function and should be saved/restored
863 ;;; during function parsing...
864
865 (js2-deflocal js2-current-script-or-fn nil)
866 (js2-deflocal js2-current-scope nil)
867 (js2-deflocal js2-nesting-of-with 0)
868 (js2-deflocal js2-label-set nil
869 "An alist mapping label names to nodes.")
870
871 (js2-deflocal js2-loop-set nil)
872 (js2-deflocal js2-loop-and-switch-set nil)
873 (js2-deflocal js2-has-return-value nil)
874 (js2-deflocal js2-end-flags 0)
875
876 ;;; ...end of per function variables
877
878 ;; These flags enumerate the possible ways a statement/function can
879 ;; terminate. These flags are used by endCheck() and by the Parser to
880 ;; detect inconsistent return usage.
881 ;;
882 ;; END_UNREACHED is reserved for code paths that are assumed to always be
883 ;; able to execute (example: throw, continue)
884 ;;
885 ;; END_DROPS_OFF indicates if the statement can transfer control to the
886 ;; next one. Statement such as return dont. A compound statement may have
887 ;; some branch that drops off control to the next statement.
888 ;;
889 ;; END_RETURNS indicates that the statement can return (without arguments)
890 ;; END_RETURNS_VALUE indicates that the statement can return a value.
891 ;;
892 ;; A compound statement such as
893 ;; if (condition) {
894 ;; return value;
895 ;; }
896 ;; Will be detected as (END_DROPS_OFF | END_RETURN_VALUE) by endCheck()
897
898 (defconst js2-end-unreached #x0)
899 (defconst js2-end-drops-off #x1)
900 (defconst js2-end-returns #x2)
901 (defconst js2-end-returns-value #x4)
902
903 ;; Rhino awkwardly passes a statementLabel parameter to the
904 ;; statementHelper() function, the main statement parser, which
905 ;; is then used by quite a few of the sub-parsers. We just make
906 ;; it a buffer-local variable and make sure it's cleaned up properly.
907 (js2-deflocal js2-labeled-stmt nil) ; type `js2-labeled-stmt-node'
908
909 ;; Similarly, Rhino passes an inForInit boolean through about half
910 ;; the expression parsers. We use a dynamically-scoped variable,
911 ;; which makes it easier to funcall the parsers individually without
912 ;; worrying about whether they take the parameter or not.
913 (js2-deflocal js2-in-for-init nil)
914 (js2-deflocal js2-temp-name-counter 0)
915 (js2-deflocal js2-parse-stmt-count 0)
916
917 (defsubst js2-get-next-temp-name ()
918 (format "$%d" (cl-incf js2-temp-name-counter)))
919
920 (defvar js2-parse-interruptable-p t
921 "Set this to nil to force parse to continue until finished.
922 This will mostly be useful for interpreters.")
923
924 (defvar js2-statements-per-pause 50
925 "Pause after this many statements to check for user input.
926 If user input is pending, stop the parse and discard the tree.
927 This makes for a smoother user experience for large files.
928 You may have to wait a second or two before the highlighting
929 and error-reporting appear, but you can always type ahead if
930 you wish. This appears to be more or less how Eclipse, IntelliJ
931 and other editors work.")
932
933 (js2-deflocal js2-record-comments t
934 "Instructs the scanner to record comments in `js2-scanned-comments'.")
935
936 (js2-deflocal js2-scanned-comments nil
937 "List of all comments from the current parse.")
938
939 (defcustom js2-mode-indent-inhibit-undo nil
940 "Non-nil to disable collection of Undo information when indenting lines.
941 Some users have requested this behavior. It's nil by default because
942 other Emacs modes don't work this way."
943 :type 'boolean
944 :group 'js2-mode)
945
946 (defcustom js2-mode-indent-ignore-first-tab nil
947 "If non-nil, ignore first TAB keypress if we look indented properly.
948 It's fairly common for users to navigate to an already-indented line
949 and press TAB for reassurance that it's been indented. For this class
950 of users, we want the first TAB press on a line to be ignored if the
951 line is already indented to one of the precomputed alternatives.
952
953 This behavior is only partly implemented. If you TAB-indent a line,
954 navigate to another line, and then navigate back, it fails to clear
955 the last-indented variable, so it thinks you've already hit TAB once,
956 and performs the indent. A full solution would involve getting on the
957 point-motion hooks for the entire buffer. If we come across another
958 use cases that requires watching point motion, I'll consider doing it.
959
960 If you set this variable to nil, then the TAB key will always change
961 the indentation of the current line, if more than one alternative
962 indentation spot exists."
963 :type 'boolean
964 :group 'js2-mode)
965
966 (defvar js2-indent-hook nil
967 "A hook for user-defined indentation rules.
968
969 Functions on this hook should expect two arguments: (LIST INDEX)
970 The LIST argument is the list of computed indentation points for
971 the current line. INDEX is the list index of the indentation point
972 that `js2-bounce-indent' plans to use. If INDEX is nil, then the
973 indent function is not going to change the current line indentation.
974
975 If a hook function on this list returns a non-nil value, then
976 `js2-bounce-indent' assumes the hook function has performed its own
977 indentation, and will do nothing. If all hook functions on the list
978 return nil, then `js2-bounce-indent' will use its computed indentation
979 and reindent the line.
980
981 When hook functions on this hook list are called, the variable
982 `js2-mode-ast' may or may not be set, depending on whether the
983 parse tree is available. If the variable is nil, you can pass a
984 callback to `js2-mode-wait-for-parse', and your callback will be
985 called after the new parse tree is built. This can take some time
986 in large files.")
987
988 (defface js2-warning
989 `((((class color) (background light))
990 (:underline "orange"))
991 (((class color) (background dark))
992 (:underline "orange"))
993 (t (:underline t)))
994 "Face for JavaScript warnings."
995 :group 'js2-mode)
996
997 (defface js2-error
998 `((((class color) (background light))
999 (:foreground "red"))
1000 (((class color) (background dark))
1001 (:foreground "red"))
1002 (t (:foreground "red")))
1003 "Face for JavaScript errors."
1004 :group 'js2-mode)
1005
1006 (defface js2-jsdoc-tag
1007 '((t :foreground "SlateGray"))
1008 "Face used to highlight @whatever tags in jsdoc comments."
1009 :group 'js2-mode)
1010
1011 (defface js2-jsdoc-type
1012 '((t :foreground "SteelBlue"))
1013 "Face used to highlight {FooBar} types in jsdoc comments."
1014 :group 'js2-mode)
1015
1016 (defface js2-jsdoc-value
1017 '((t :foreground "PeachPuff3"))
1018 "Face used to highlight tag values in jsdoc comments."
1019 :group 'js2-mode)
1020
1021 (defface js2-function-param
1022 '((t :foreground "SeaGreen"))
1023 "Face used to highlight function parameters in javascript."
1024 :group 'js2-mode)
1025
1026 (defface js2-function-call
1027 '((t :inherit default))
1028 "Face used to highlight function name in calls."
1029 :group 'js2-mode)
1030
1031 (defface js2-object-property
1032 '((t :inherit default))
1033 "Face used to highlight named property in object literal."
1034 :group 'js2-mode)
1035
1036 (defface js2-instance-member
1037 '((t :foreground "DarkOrchid"))
1038 "Face used to highlight instance variables in javascript.
1039 Not currently used."
1040 :group 'js2-mode)
1041
1042 (defface js2-private-member
1043 '((t :foreground "PeachPuff3"))
1044 "Face used to highlight calls to private methods in javascript.
1045 Not currently used."
1046 :group 'js2-mode)
1047
1048 (defface js2-private-function-call
1049 '((t :foreground "goldenrod"))
1050 "Face used to highlight calls to private functions in javascript.
1051 Not currently used."
1052 :group 'js2-mode)
1053
1054 (defface js2-jsdoc-html-tag-name
1055 '((((class color) (min-colors 88) (background light))
1056 (:foreground "rosybrown"))
1057 (((class color) (min-colors 8) (background dark))
1058 (:foreground "yellow"))
1059 (((class color) (min-colors 8) (background light))
1060 (:foreground "magenta")))
1061 "Face used to highlight jsdoc html tag names"
1062 :group 'js2-mode)
1063
1064 (defface js2-jsdoc-html-tag-delimiter
1065 '((((class color) (min-colors 88) (background light))
1066 (:foreground "dark khaki"))
1067 (((class color) (min-colors 8) (background dark))
1068 (:foreground "green"))
1069 (((class color) (min-colors 8) (background light))
1070 (:foreground "green")))
1071 "Face used to highlight brackets in jsdoc html tags."
1072 :group 'js2-mode)
1073
1074 (defface js2-external-variable
1075 '((t :foreground "orange"))
1076 "Face used to highlight undeclared variable identifiers.")
1077
1078 (defcustom js2-init-hook nil
1079 "List of functions to be called after `js2-mode' or
1080 `js2-minor-mode' has initialized all variables, before parsing
1081 the buffer for the first time."
1082 :type 'hook
1083 :group 'js2-mode
1084 :version "20130608")
1085
1086 (defcustom js2-post-parse-callbacks nil
1087 "List of callback functions invoked after parsing finishes.
1088 Currently, the main use for this function is to add synthetic
1089 declarations to `js2-recorded-identifiers', which see."
1090 :type 'hook
1091 :group 'js2-mode)
1092
1093 (defcustom js2-build-imenu-callbacks nil
1094 "List of functions called during Imenu index generation.
1095 It's a good place to add additional entries to it, using
1096 `js2-record-imenu-entry'."
1097 :type 'hook
1098 :group 'js2-mode)
1099
1100 (defcustom js2-highlight-external-variables t
1101 "Non-nil to highlight undeclared variable identifiers.
1102 An undeclared variable is any variable not declared with var or let
1103 in the current scope or any lexically enclosing scope. If you use
1104 such a variable, then you are either expecting it to originate from
1105 another file, or you've got a potential bug."
1106 :type 'boolean
1107 :group 'js2-mode)
1108
1109 (defcustom js2-warn-about-unused-function-arguments nil
1110 "Non-nil to treat function arguments like declared-but-unused variables."
1111 :type 'booleanp
1112 :group 'js2-mode)
1113
1114 (defcustom js2-include-jslint-globals t
1115 "Non-nil to include the identifiers from JSLint global
1116 declaration (see http://www.jslint.com/lint.html#global) in the
1117 buffer-local externs list. See `js2-additional-externs' for more
1118 information."
1119 :type 'boolean
1120 :group 'js2-mode)
1121
1122 (defvar js2-mode-map
1123 (let ((map (make-sparse-keymap)))
1124 (define-key map [mouse-1] #'js2-mode-show-node)
1125 (define-key map (kbd "M-j") #'js2-line-break)
1126 (define-key map (kbd "C-c C-e") #'js2-mode-hide-element)
1127 (define-key map (kbd "C-c C-s") #'js2-mode-show-element)
1128 (define-key map (kbd "C-c C-a") #'js2-mode-show-all)
1129 (define-key map (kbd "C-c C-f") #'js2-mode-toggle-hide-functions)
1130 (define-key map (kbd "C-c C-t") #'js2-mode-toggle-hide-comments)
1131 (define-key map (kbd "C-c C-o") #'js2-mode-toggle-element)
1132 (define-key map (kbd "C-c C-w") #'js2-mode-toggle-warnings-and-errors)
1133 (define-key map [down-mouse-3] #'js2-down-mouse-3)
1134 (define-key map [remap js-find-symbol] #'js2-jump-to-definition)
1135
1136 (define-key map [menu-bar javascript]
1137 (cons "JavaScript" (make-sparse-keymap "JavaScript")))
1138
1139 (define-key map [menu-bar javascript customize-js2-mode]
1140 '(menu-item "Customize js2-mode" js2-mode-customize
1141 :help "Customize the behavior of this mode"))
1142
1143 (define-key map [menu-bar javascript js2-force-refresh]
1144 '(menu-item "Force buffer refresh" js2-mode-reset
1145 :help "Re-parse the buffer from scratch"))
1146
1147 (define-key map [menu-bar javascript separator-2]
1148 '("--"))
1149
1150 (define-key map [menu-bar javascript next-error]
1151 '(menu-item "Next warning or error" next-error
1152 :enabled (and js2-mode-ast
1153 (or (js2-ast-root-errors js2-mode-ast)
1154 (js2-ast-root-warnings js2-mode-ast)))
1155 :help "Move to next warning or error"))
1156
1157 (define-key map [menu-bar javascript display-errors]
1158 '(menu-item "Show errors and warnings" js2-mode-display-warnings-and-errors
1159 :visible (not js2-mode-show-parse-errors)
1160 :help "Turn on display of warnings and errors"))
1161
1162 (define-key map [menu-bar javascript hide-errors]
1163 '(menu-item "Hide errors and warnings" js2-mode-hide-warnings-and-errors
1164 :visible js2-mode-show-parse-errors
1165 :help "Turn off display of warnings and errors"))
1166
1167 (define-key map [menu-bar javascript separator-1]
1168 '("--"))
1169
1170 (define-key map [menu-bar javascript js2-toggle-function]
1171 '(menu-item "Show/collapse element" js2-mode-toggle-element
1172 :help "Hide or show function body or comment"))
1173
1174 (define-key map [menu-bar javascript show-comments]
1175 '(menu-item "Show block comments" js2-mode-toggle-hide-comments
1176 :visible js2-mode-comments-hidden
1177 :help "Expand all hidden block comments"))
1178
1179 (define-key map [menu-bar javascript hide-comments]
1180 '(menu-item "Hide block comments" js2-mode-toggle-hide-comments
1181 :visible (not js2-mode-comments-hidden)
1182 :help "Show block comments as /*...*/"))
1183
1184 (define-key map [menu-bar javascript show-all-functions]
1185 '(menu-item "Show function bodies" js2-mode-toggle-hide-functions
1186 :visible js2-mode-functions-hidden
1187 :help "Expand all hidden function bodies"))
1188
1189 (define-key map [menu-bar javascript hide-all-functions]
1190 '(menu-item "Hide function bodies" js2-mode-toggle-hide-functions
1191 :visible (not js2-mode-functions-hidden)
1192 :help "Show {...} for all top-level function bodies"))
1193
1194 map)
1195 "Keymap used in `js2-mode' buffers.")
1196
1197 (defcustom js2-bounce-indent-p nil
1198 "Non-nil to bind `js2-indent-bounce' and `js2-indent-bounce-backward'.
1199 They will augment the default indent-line behavior with cycling
1200 among several computed alternatives. See the function
1201 `js2-bounce-indent' for details. The above commands will be
1202 bound to TAB and backtab."
1203 :type 'boolean
1204 :group 'js2-mode
1205 :set (lambda (sym value)
1206 (set-default sym value)
1207 (let ((map js2-mode-map))
1208 (if (not value)
1209 (progn
1210 (define-key map "\t" nil)
1211 (define-key map (kbd "<backtab>") nil))
1212 (define-key map "\t" #'js2-indent-bounce)
1213 (define-key map (kbd "<backtab>") #'js2-indent-bounce-backward)))))
1214
1215 (defconst js2-mode-identifier-re "[[:alpha:]_$][[:alnum:]_$]*")
1216
1217 (defvar js2-mode-//-comment-re "^\\(\\s-*\\)//.+"
1218 "Matches a //-comment line. Must be first non-whitespace on line.
1219 First match-group is the leading whitespace.")
1220
1221 (defvar js2-mode-hook nil)
1222
1223 (js2-deflocal js2-mode-ast nil "Private variable.")
1224 (js2-deflocal js2-mode-parse-timer nil "Private variable.")
1225 (js2-deflocal js2-mode-buffer-dirty-p nil "Private variable.")
1226 (js2-deflocal js2-mode-parsing nil "Private variable.")
1227 (js2-deflocal js2-mode-node-overlay nil)
1228
1229 (defvar js2-mode-show-overlay js2-mode-dev-mode-p
1230 "Debug: Non-nil to highlight AST nodes on mouse-down.")
1231
1232 (js2-deflocal js2-mode-fontifications nil "Private variable")
1233 (js2-deflocal js2-mode-deferred-properties nil "Private variable")
1234 (js2-deflocal js2-imenu-recorder nil "Private variable")
1235 (js2-deflocal js2-imenu-function-map nil "Private variable")
1236
1237 (defvar js2-mode-verbose-parse-p js2-mode-dev-mode-p
1238 "Non-nil to emit status messages during parsing.")
1239
1240 (defvar js2-mode-functions-hidden nil "Private variable.")
1241 (defvar js2-mode-comments-hidden nil "Private variable.")
1242
1243 (defvar js2-mode-syntax-table
1244 (let ((table (make-syntax-table)))
1245 (c-populate-syntax-table table)
1246 (modify-syntax-entry ?` "\"" table)
1247 table)
1248 "Syntax table used in `js2-mode' buffers.")
1249
1250 (defvar js2-mode-abbrev-table nil
1251 "Abbrev table in use in `js2-mode' buffers.")
1252 (define-abbrev-table 'js2-mode-abbrev-table ())
1253
1254 (defvar js2-mode-pending-parse-callbacks nil
1255 "List of functions waiting to be notified that parse is finished.")
1256
1257 (defvar js2-mode-last-indented-line -1)
1258
1259 ;;; Localizable error and warning messages
1260
1261 ;; Messages are copied from Rhino's Messages.properties.
1262 ;; Many of the Java-specific messages have been elided.
1263 ;; Add any js2-specific ones at the end, so we can keep
1264 ;; this file synced with changes to Rhino's.
1265
1266 (defvar js2-message-table
1267 (make-hash-table :test 'equal :size 250)
1268 "Contains localized messages for `js2-mode'.")
1269
1270 ;; TODO(stevey): construct this table at compile-time.
1271 (defmacro js2-msg (key &rest strings)
1272 `(puthash ,key (concat ,@strings)
1273 js2-message-table))
1274
1275 (defun js2-get-msg (msg-key)
1276 "Look up a localized message.
1277 MSG-KEY is a list of (MSG ARGS). If the message takes parameters,
1278 the correct number of ARGS must be provided."
1279 (let* ((key (if (listp msg-key) (car msg-key) msg-key))
1280 (args (if (listp msg-key) (cdr msg-key)))
1281 (msg (gethash key js2-message-table)))
1282 (if msg
1283 (apply #'format msg args)
1284 key))) ; default to showing the key
1285
1286 (js2-msg "msg.dup.parms"
1287 "Duplicate parameter name '%s'.")
1288
1289 (js2-msg "msg.too.big.jump"
1290 "Program too complex: jump offset too big.")
1291
1292 (js2-msg "msg.too.big.index"
1293 "Program too complex: internal index exceeds 64K limit.")
1294
1295 (js2-msg "msg.while.compiling.fn"
1296 "Encountered code generation error while compiling function '%s': %s")
1297
1298 (js2-msg "msg.while.compiling.script"
1299 "Encountered code generation error while compiling script: %s")
1300
1301 ;; Context
1302 (js2-msg "msg.ctor.not.found"
1303 "Constructor for '%s' not found.")
1304
1305 (js2-msg "msg.not.ctor"
1306 "'%s' is not a constructor.")
1307
1308 ;; FunctionObject
1309 (js2-msg "msg.varargs.ctor"
1310 "Method or constructor '%s' must be static "
1311 "with the signature (Context cx, Object[] args, "
1312 "Function ctorObj, boolean inNewExpr) "
1313 "to define a variable arguments constructor.")
1314
1315 (js2-msg "msg.varargs.fun"
1316 "Method '%s' must be static with the signature "
1317 "(Context cx, Scriptable thisObj, Object[] args, Function funObj) "
1318 "to define a variable arguments function.")
1319
1320 (js2-msg "msg.incompat.call"
1321 "Method '%s' called on incompatible object.")
1322
1323 (js2-msg "msg.bad.parms"
1324 "Unsupported parameter type '%s' in method '%s'.")
1325
1326 (js2-msg "msg.bad.method.return"
1327 "Unsupported return type '%s' in method '%s'.")
1328
1329 (js2-msg "msg.bad.ctor.return"
1330 "Construction of objects of type '%s' is not supported.")
1331
1332 (js2-msg "msg.no.overload"
1333 "Method '%s' occurs multiple times in class '%s'.")
1334
1335 (js2-msg "msg.method.not.found"
1336 "Method '%s' not found in '%s'.")
1337
1338 ;; IRFactory
1339
1340 (js2-msg "msg.bad.for.in.lhs"
1341 "Invalid left-hand side of for..in loop.")
1342
1343 (js2-msg "msg.mult.index"
1344 "Only one variable allowed in for..in loop.")
1345
1346 (js2-msg "msg.bad.for.in.destruct"
1347 "Left hand side of for..in loop must be an array of "
1348 "length 2 to accept key/value pair.")
1349
1350 (js2-msg "msg.cant.convert"
1351 "Can't convert to type '%s'.")
1352
1353 (js2-msg "msg.bad.assign.left"
1354 "Invalid assignment left-hand side.")
1355
1356 (js2-msg "msg.bad.decr"
1357 "Invalid decrement operand.")
1358
1359 (js2-msg "msg.bad.incr"
1360 "Invalid increment operand.")
1361
1362 (js2-msg "msg.bad.yield"
1363 "yield must be in a function.")
1364
1365 (js2-msg "msg.yield.parenthesized"
1366 "yield expression must be parenthesized.")
1367
1368 (js2-msg "msg.bad.await"
1369 "await must be in async functions.")
1370
1371 ;; NativeGlobal
1372 (js2-msg "msg.cant.call.indirect"
1373 "Function '%s' must be called directly, and not by way of a "
1374 "function of another name.")
1375
1376 (js2-msg "msg.eval.nonstring"
1377 "Calling eval() with anything other than a primitive "
1378 "string value will simply return the value. "
1379 "Is this what you intended?")
1380
1381 (js2-msg "msg.eval.nonstring.strict"
1382 "Calling eval() with anything other than a primitive "
1383 "string value is not allowed in strict mode.")
1384
1385 (js2-msg "msg.bad.destruct.op"
1386 "Invalid destructuring assignment operator")
1387
1388 ;; NativeCall
1389 (js2-msg "msg.only.from.new"
1390 "'%s' may only be invoked from a `new' expression.")
1391
1392 (js2-msg "msg.deprec.ctor"
1393 "The '%s' constructor is deprecated.")
1394
1395 ;; NativeFunction
1396 (js2-msg "msg.no.function.ref.found"
1397 "no source found to decompile function reference %s")
1398
1399 (js2-msg "msg.arg.isnt.array"
1400 "second argument to Function.prototype.apply must be an array")
1401
1402 ;; NativeGlobal
1403 (js2-msg "msg.bad.esc.mask"
1404 "invalid string escape mask")
1405
1406 ;; NativeRegExp
1407 (js2-msg "msg.bad.quant"
1408 "Invalid quantifier %s")
1409
1410 (js2-msg "msg.overlarge.backref"
1411 "Overly large back reference %s")
1412
1413 (js2-msg "msg.overlarge.min"
1414 "Overly large minimum %s")
1415
1416 (js2-msg "msg.overlarge.max"
1417 "Overly large maximum %s")
1418
1419 (js2-msg "msg.zero.quant"
1420 "Zero quantifier %s")
1421
1422 (js2-msg "msg.max.lt.min"
1423 "Maximum %s less than minimum")
1424
1425 (js2-msg "msg.unterm.quant"
1426 "Unterminated quantifier %s")
1427
1428 (js2-msg "msg.unterm.paren"
1429 "Unterminated parenthetical %s")
1430
1431 (js2-msg "msg.unterm.class"
1432 "Unterminated character class %s")
1433
1434 (js2-msg "msg.bad.range"
1435 "Invalid range in character class.")
1436
1437 (js2-msg "msg.trail.backslash"
1438 "Trailing \\ in regular expression.")
1439
1440 (js2-msg "msg.re.unmatched.right.paren"
1441 "unmatched ) in regular expression.")
1442
1443 (js2-msg "msg.no.regexp"
1444 "Regular expressions are not available.")
1445
1446 (js2-msg "msg.bad.backref"
1447 "back-reference exceeds number of capturing parentheses.")
1448
1449 (js2-msg "msg.bad.regexp.compile"
1450 "Only one argument may be specified if the first "
1451 "argument to RegExp.prototype.compile is a RegExp object.")
1452
1453 ;; Parser
1454 (js2-msg "msg.got.syntax.errors"
1455 "Compilation produced %s syntax errors.")
1456
1457 (js2-msg "msg.var.redecl"
1458 "TypeError: redeclaration of var %s.")
1459
1460 (js2-msg "msg.const.redecl"
1461 "TypeError: redeclaration of const %s.")
1462
1463 (js2-msg "msg.let.redecl"
1464 "TypeError: redeclaration of variable %s.")
1465
1466 (js2-msg "msg.parm.redecl"
1467 "TypeError: redeclaration of formal parameter %s.")
1468
1469 (js2-msg "msg.fn.redecl"
1470 "TypeError: redeclaration of function %s.")
1471
1472 (js2-msg "msg.let.decl.not.in.block"
1473 "SyntaxError: let declaration not directly within block")
1474
1475 (js2-msg "msg.mod.import.decl.at.top.level"
1476 "SyntaxError: import declarations may only appear at the top level")
1477
1478 (js2-msg "msg.mod.as.after.reserved.word"
1479 "SyntaxError: missing keyword 'as' after reserved word %s")
1480
1481 (js2-msg "msg.mod.rc.after.import.spec.list"
1482 "SyntaxError: missing '}' after module specifier list")
1483
1484 (js2-msg "msg.mod.from.after.import.spec.set"
1485 "SyntaxError: missing keyword 'from' after import specifier set")
1486
1487 (js2-msg "msg.mod.declaration.after.import"
1488 "SyntaxError: missing declaration after 'import' keyword")
1489
1490 (js2-msg "msg.mod.spec.after.from"
1491 "SyntaxError: missing module specifier after 'from' keyword")
1492
1493 (js2-msg "msg.mod.export.decl.at.top.level"
1494 "SyntaxError: export declarations may only appear at top level")
1495
1496 (js2-msg "msg.mod.rc.after.export.spec.list"
1497 "SyntaxError: missing '}' after export specifier list")
1498
1499 ;; NodeTransformer
1500 (js2-msg "msg.dup.label"
1501 "duplicated label")
1502
1503 (js2-msg "msg.undef.label"
1504 "undefined label")
1505
1506 (js2-msg "msg.bad.break"
1507 "unlabelled break must be inside loop or switch")
1508
1509 (js2-msg "msg.continue.outside"
1510 "continue must be inside loop")
1511
1512 (js2-msg "msg.continue.nonloop"
1513 "continue can only use labels of iteration statements")
1514
1515 (js2-msg "msg.bad.throw.eol"
1516 "Line terminator is not allowed between the throw "
1517 "keyword and throw expression.")
1518
1519 (js2-msg "msg.unnamed.function.stmt" ; added by js2-mode
1520 "function statement requires a name")
1521
1522 (js2-msg "msg.no.paren.parms"
1523 "missing ( before function parameters.")
1524
1525 (js2-msg "msg.no.parm"
1526 "missing formal parameter")
1527
1528 (js2-msg "msg.no.paren.after.parms"
1529 "missing ) after formal parameters")
1530
1531 (js2-msg "msg.no.default.after.default.param" ; added by js2-mode
1532 "parameter without default follows parameter with default")
1533
1534 (js2-msg "msg.param.after.rest" ; added by js2-mode
1535 "parameter after rest parameter")
1536
1537 (js2-msg "msg.bad.arrow.args" ; added by js2-mode
1538 "invalid arrow-function arguments (parentheses around the arrow-function may help)")
1539
1540 (js2-msg "msg.no.brace.body"
1541 "missing '{' before function body")
1542
1543 (js2-msg "msg.no.brace.after.body"
1544 "missing } after function body")
1545
1546 (js2-msg "msg.no.paren.cond"
1547 "missing ( before condition")
1548
1549 (js2-msg "msg.no.paren.after.cond"
1550 "missing ) after condition")
1551
1552 (js2-msg "msg.no.semi.stmt"
1553 "missing ; before statement")
1554
1555 (js2-msg "msg.missing.semi"
1556 "missing ; after statement")
1557
1558 (js2-msg "msg.no.name.after.dot"
1559 "missing name after . operator")
1560
1561 (js2-msg "msg.no.name.after.coloncolon"
1562 "missing name after :: operator")
1563
1564 (js2-msg "msg.no.name.after.dotdot"
1565 "missing name after .. operator")
1566
1567 (js2-msg "msg.no.name.after.xmlAttr"
1568 "missing name after .@")
1569
1570 (js2-msg "msg.no.bracket.index"
1571 "missing ] in index expression")
1572
1573 (js2-msg "msg.no.paren.switch"
1574 "missing ( before switch expression")
1575
1576 (js2-msg "msg.no.paren.after.switch"
1577 "missing ) after switch expression")
1578
1579 (js2-msg "msg.no.brace.switch"
1580 "missing '{' before switch body")
1581
1582 (js2-msg "msg.bad.switch"
1583 "invalid switch statement")
1584
1585 (js2-msg "msg.no.colon.case"
1586 "missing : after case expression")
1587
1588 (js2-msg "msg.double.switch.default"
1589 "double default label in the switch statement")
1590
1591 (js2-msg "msg.no.while.do"
1592 "missing while after do-loop body")
1593
1594 (js2-msg "msg.no.paren.for"
1595 "missing ( after for")
1596
1597 (js2-msg "msg.no.semi.for"
1598 "missing ; after for-loop initializer")
1599
1600 (js2-msg "msg.no.semi.for.cond"
1601 "missing ; after for-loop condition")
1602
1603 (js2-msg "msg.in.after.for.name"
1604 "missing in or of after for")
1605
1606 (js2-msg "msg.no.paren.for.ctrl"
1607 "missing ) after for-loop control")
1608
1609 (js2-msg "msg.no.paren.with"
1610 "missing ( before with-statement object")
1611
1612 (js2-msg "msg.no.paren.after.with"
1613 "missing ) after with-statement object")
1614
1615 (js2-msg "msg.no.with.strict"
1616 "with statements not allowed in strict mode")
1617
1618 (js2-msg "msg.no.paren.after.let"
1619 "missing ( after let")
1620
1621 (js2-msg "msg.no.paren.let"
1622 "missing ) after variable list")
1623
1624 (js2-msg "msg.no.curly.let"
1625 "missing } after let statement")
1626
1627 (js2-msg "msg.bad.return"
1628 "invalid return")
1629
1630 (js2-msg "msg.no.brace.block"
1631 "missing } in compound statement")
1632
1633 (js2-msg "msg.bad.label"
1634 "invalid label")
1635
1636 (js2-msg "msg.bad.var"
1637 "missing variable name")
1638
1639 (js2-msg "msg.bad.var.init"
1640 "invalid variable initialization")
1641
1642 (js2-msg "msg.no.colon.cond"
1643 "missing : in conditional expression")
1644
1645 (js2-msg "msg.no.paren.arg"
1646 "missing ) after argument list")
1647
1648 (js2-msg "msg.no.bracket.arg"
1649 "missing ] after element list")
1650
1651 (js2-msg "msg.bad.prop"
1652 "invalid property id")
1653
1654 (js2-msg "msg.no.colon.prop"
1655 "missing : after property id")
1656
1657 (js2-msg "msg.no.brace.prop"
1658 "missing } after property list")
1659
1660 (js2-msg "msg.no.paren"
1661 "missing ) in parenthetical")
1662
1663 (js2-msg "msg.reserved.id"
1664 "'%s' is a reserved identifier")
1665
1666 (js2-msg "msg.no.paren.catch"
1667 "missing ( before catch-block condition")
1668
1669 (js2-msg "msg.bad.catchcond"
1670 "invalid catch block condition")
1671
1672 (js2-msg "msg.catch.unreachable"
1673 "any catch clauses following an unqualified catch are unreachable")
1674
1675 (js2-msg "msg.no.brace.try"
1676 "missing '{' before try block")
1677
1678 (js2-msg "msg.no.brace.catchblock"
1679 "missing '{' before catch-block body")
1680
1681 (js2-msg "msg.try.no.catchfinally"
1682 "'try' without 'catch' or 'finally'")
1683
1684 (js2-msg "msg.no.return.value"
1685 "function %s does not always return a value")
1686
1687 (js2-msg "msg.anon.no.return.value"
1688 "anonymous function does not always return a value")
1689
1690 (js2-msg "msg.return.inconsistent"
1691 "return statement is inconsistent with previous usage")
1692
1693 (js2-msg "msg.generator.returns"
1694 "TypeError: legacy generator function '%s' returns a value")
1695
1696 (js2-msg "msg.anon.generator.returns"
1697 "TypeError: anonymous legacy generator function returns a value")
1698
1699 (js2-msg "msg.syntax"
1700 "syntax error")
1701
1702 (js2-msg "msg.unexpected.eof"
1703 "Unexpected end of file")
1704
1705 (js2-msg "msg.XML.bad.form"
1706 "illegally formed XML syntax")
1707
1708 (js2-msg "msg.XML.not.available"
1709 "XML runtime not available")
1710
1711 (js2-msg "msg.too.deep.parser.recursion"
1712 "Too deep recursion while parsing")
1713
1714 (js2-msg "msg.no.side.effects"
1715 "Code has no side effects")
1716
1717 (js2-msg "msg.extra.trailing.comma"
1718 "Trailing comma is not supported in some browsers")
1719
1720 (js2-msg "msg.array.trailing.comma"
1721 "Trailing comma yields different behavior across browsers")
1722
1723 (js2-msg "msg.equal.as.assign"
1724 (concat "Test for equality (==) mistyped as assignment (=)?"
1725 " (parenthesize to suppress warning)"))
1726
1727 (js2-msg "msg.var.hides.arg"
1728 "Variable %s hides argument")
1729
1730 (js2-msg "msg.destruct.assign.no.init"
1731 "Missing = in destructuring declaration")
1732
1733 (js2-msg "msg.init.no.destruct"
1734 "Binding initializer not in destructuring assignment")
1735
1736 (js2-msg "msg.no.octal.strict"
1737 "Octal numbers prohibited in strict mode.")
1738
1739 (js2-msg "msg.dup.obj.lit.prop.strict"
1740 "Property '%s' already defined in this object literal.")
1741
1742 (js2-msg "msg.dup.param.strict"
1743 "Parameter '%s' already declared in this function.")
1744
1745 (js2-msg "msg.bad.id.strict"
1746 "'%s' is not a valid identifier for this use in strict mode.")
1747
1748 ;; ScriptRuntime
1749 (js2-msg "msg.no.properties"
1750 "%s has no properties.")
1751
1752 (js2-msg "msg.invalid.iterator"
1753 "Invalid iterator value")
1754
1755 (js2-msg "msg.iterator.primitive"
1756 "__iterator__ returned a primitive value")
1757
1758 (js2-msg "msg.assn.create.strict"
1759 "Assignment to undeclared variable %s")
1760
1761 (js2-msg "msg.undeclared.variable" ; added by js2-mode
1762 "Undeclared variable or function '%s'")
1763
1764 (js2-msg "msg.unused.variable" ; added by js2-mode
1765 "Unused variable or function '%s'")
1766
1767 (js2-msg "msg.uninitialized.variable" ; added by js2-mode
1768 "Variable '%s' referenced but never initialized")
1769
1770 (js2-msg "msg.ref.undefined.prop"
1771 "Reference to undefined property '%s'")
1772
1773 (js2-msg "msg.prop.not.found"
1774 "Property %s not found.")
1775
1776 (js2-msg "msg.invalid.type"
1777 "Invalid JavaScript value of type %s")
1778
1779 (js2-msg "msg.primitive.expected"
1780 "Primitive type expected (had %s instead)")
1781
1782 (js2-msg "msg.namespace.expected"
1783 "Namespace object expected to left of :: (found %s instead)")
1784
1785 (js2-msg "msg.null.to.object"
1786 "Cannot convert null to an object.")
1787
1788 (js2-msg "msg.undef.to.object"
1789 "Cannot convert undefined to an object.")
1790
1791 (js2-msg "msg.cyclic.value"
1792 "Cyclic %s value not allowed.")
1793
1794 (js2-msg "msg.is.not.defined"
1795 "'%s' is not defined.")
1796
1797 (js2-msg "msg.undef.prop.read"
1798 "Cannot read property '%s' from %s")
1799
1800 (js2-msg "msg.undef.prop.write"
1801 "Cannot set property '%s' of %s to '%s'")
1802
1803 (js2-msg "msg.undef.prop.delete"
1804 "Cannot delete property '%s' of %s")
1805
1806 (js2-msg "msg.undef.method.call"
1807 "Cannot call method '%s' of %s")
1808
1809 (js2-msg "msg.undef.with"
1810 "Cannot apply 'with' to %s")
1811
1812 (js2-msg "msg.isnt.function"
1813 "%s is not a function, it is %s.")
1814
1815 (js2-msg "msg.isnt.function.in"
1816 "Cannot call property %s in object %s. "
1817 "It is not a function, it is '%s'.")
1818
1819 (js2-msg "msg.function.not.found"
1820 "Cannot find function %s.")
1821
1822 (js2-msg "msg.function.not.found.in"
1823 "Cannot find function %s in object %s.")
1824
1825 (js2-msg "msg.isnt.xml.object"
1826 "%s is not an xml object.")
1827
1828 (js2-msg "msg.no.ref.to.get"
1829 "%s is not a reference to read reference value.")
1830
1831 (js2-msg "msg.no.ref.to.set"
1832 "%s is not a reference to set reference value to %s.")
1833
1834 (js2-msg "msg.no.ref.from.function"
1835 "Function %s can not be used as the left-hand "
1836 "side of assignment or as an operand of ++ or -- operator.")
1837
1838 (js2-msg "msg.bad.default.value"
1839 "Object's getDefaultValue() method returned an object.")
1840
1841 (js2-msg "msg.instanceof.not.object"
1842 "Can't use instanceof on a non-object.")
1843
1844 (js2-msg "msg.instanceof.bad.prototype"
1845 "'prototype' property of %s is not an object.")
1846
1847 (js2-msg "msg.bad.radix"
1848 "illegal radix %s.")
1849
1850 ;; ScriptableObject
1851 (js2-msg "msg.default.value"
1852 "Cannot find default value for object.")
1853
1854 (js2-msg "msg.zero.arg.ctor"
1855 "Cannot load class '%s' which has no zero-parameter constructor.")
1856
1857 (js2-msg "msg.ctor.multiple.parms"
1858 "Can't define constructor or class %s since more than "
1859 "one constructor has multiple parameters.")
1860
1861 (js2-msg "msg.extend.scriptable"
1862 "%s must extend ScriptableObject in order to define property %s.")
1863
1864 (js2-msg "msg.bad.getter.parms"
1865 "In order to define a property, getter %s must have zero "
1866 "parameters or a single ScriptableObject parameter.")
1867
1868 (js2-msg "msg.obj.getter.parms"
1869 "Expected static or delegated getter %s to take "
1870 "a ScriptableObject parameter.")
1871
1872 (js2-msg "msg.getter.static"
1873 "Getter and setter must both be static or neither be static.")
1874
1875 (js2-msg "msg.setter.return"
1876 "Setter must have void return type: %s")
1877
1878 (js2-msg "msg.setter2.parms"
1879 "Two-parameter setter must take a ScriptableObject as "
1880 "its first parameter.")
1881
1882 (js2-msg "msg.setter1.parms"
1883 "Expected single parameter setter for %s")
1884
1885 (js2-msg "msg.setter2.expected"
1886 "Expected static or delegated setter %s to take two parameters.")
1887
1888 (js2-msg "msg.setter.parms"
1889 "Expected either one or two parameters for setter.")
1890
1891 (js2-msg "msg.setter.bad.type"
1892 "Unsupported parameter type '%s' in setter '%s'.")
1893
1894 (js2-msg "msg.add.sealed"
1895 "Cannot add a property to a sealed object: %s.")
1896
1897 (js2-msg "msg.remove.sealed"
1898 "Cannot remove a property from a sealed object: %s.")
1899
1900 (js2-msg "msg.modify.sealed"
1901 "Cannot modify a property of a sealed object: %s.")
1902
1903 (js2-msg "msg.modify.readonly"
1904 "Cannot modify readonly property: %s.")
1905
1906 ;; TokenStream
1907 (js2-msg "msg.missing.exponent"
1908 "missing exponent")
1909
1910 (js2-msg "msg.caught.nfe"
1911 "number format error")
1912
1913 (js2-msg "msg.unterminated.string.lit"
1914 "unterminated string literal")
1915
1916 (js2-msg "msg.unterminated.comment"
1917 "unterminated comment")
1918
1919 (js2-msg "msg.unterminated.re.lit"
1920 "unterminated regular expression literal")
1921
1922 (js2-msg "msg.invalid.re.flag"
1923 "invalid flag after regular expression")
1924
1925 (js2-msg "msg.no.re.input.for"
1926 "no input for %s")
1927
1928 (js2-msg "msg.illegal.character"
1929 "illegal character")
1930
1931 (js2-msg "msg.invalid.escape"
1932 "invalid Unicode escape sequence")
1933
1934 (js2-msg "msg.bad.namespace"
1935 "not a valid default namespace statement. "
1936 "Syntax is: default xml namespace = EXPRESSION;")
1937
1938 ;; TokensStream warnings
1939 (js2-msg "msg.bad.octal.literal"
1940 "illegal octal literal digit %s; "
1941 "interpreting it as a decimal digit")
1942
1943 (js2-msg "msg.missing.hex.digits"
1944 "missing hexadecimal digits after '0x'")
1945
1946 (js2-msg "msg.missing.binary.digits"
1947 "missing binary digits after '0b'")
1948
1949 (js2-msg "msg.missing.octal.digits"
1950 "missing octal digits after '0o'")
1951
1952 (js2-msg "msg.script.is.not.constructor"
1953 "Script objects are not constructors.")
1954
1955 ;; Arrays
1956 (js2-msg "msg.arraylength.bad"
1957 "Inappropriate array length.")
1958
1959 ;; Arrays
1960 (js2-msg "msg.arraylength.too.big"
1961 "Array length %s exceeds supported capacity limit.")
1962
1963 ;; URI
1964 (js2-msg "msg.bad.uri"
1965 "Malformed URI sequence.")
1966
1967 ;; Number
1968 (js2-msg "msg.bad.precision"
1969 "Precision %s out of range.")
1970
1971 ;; NativeGenerator
1972 (js2-msg "msg.send.newborn"
1973 "Attempt to send value to newborn generator")
1974
1975 (js2-msg "msg.already.exec.gen"
1976 "Already executing generator")
1977
1978 (js2-msg "msg.StopIteration.invalid"
1979 "StopIteration may not be changed to an arbitrary object.")
1980
1981 ;; Interpreter
1982 (js2-msg "msg.yield.closing"
1983 "Yield from closing generator")
1984
1985 ;; Classes
1986 (js2-msg "msg.unnamed.class.stmt" ; added by js2-mode
1987 "class statement requires a name")
1988
1989 (js2-msg "msg.class.unexpected.comma" ; added by js2-mode
1990 "unexpected ',' between class properties")
1991
1992 (js2-msg "msg.unexpected.static" ; added by js2-mode
1993 "unexpected 'static'")
1994
1995 (js2-msg "msg.missing.extends" ; added by js2-mode
1996 "name is required after extends")
1997
1998 (js2-msg "msg.no.brace.class" ; added by js2-mode
1999 "missing '{' before class body")
2000
2001 (js2-msg "msg.missing.computed.rb" ; added by js2-mode
2002 "missing ']' after computed property expression")
2003
2004 ;;; Tokens Buffer
2005
2006 (defconst js2-ti-max-lookahead 2)
2007 (defconst js2-ti-ntokens (1+ js2-ti-max-lookahead))
2008
2009 (defun js2-new-token (offset)
2010 (let ((token (make-js2-token (+ offset js2-ts-cursor))))
2011 (setq js2-ti-tokens-cursor (mod (1+ js2-ti-tokens-cursor) js2-ti-ntokens))
2012 (aset js2-ti-tokens js2-ti-tokens-cursor token)
2013 token))
2014
2015 (defsubst js2-current-token ()
2016 (aref js2-ti-tokens js2-ti-tokens-cursor))
2017
2018 (defsubst js2-current-token-string ()
2019 (js2-token-string (js2-current-token)))
2020
2021 (defsubst js2-current-token-type ()
2022 (js2-token-type (js2-current-token)))
2023
2024 (defsubst js2-current-token-beg ()
2025 (js2-token-beg (js2-current-token)))
2026
2027 (defsubst js2-current-token-end ()
2028 (js2-token-end (js2-current-token)))
2029
2030 (defun js2-current-token-len ()
2031 (let ((token (js2-current-token)))
2032 (- (js2-token-end token)
2033 (js2-token-beg token))))
2034
2035 (defun js2-ts-seek (state)
2036 (setq js2-ts-lineno (js2-ts-state-lineno state)
2037 js2-ts-cursor (js2-ts-state-cursor state)
2038 js2-ti-tokens (js2-ts-state-tokens state)
2039 js2-ti-tokens-cursor (js2-ts-state-tokens-cursor state)
2040 js2-ti-lookahead (js2-ts-state-lookahead state)))
2041
2042 ;;; Utilities
2043
2044 (defun js2-delete-if (predicate list)
2045 "Remove all items satisfying PREDICATE in LIST."
2046 (cl-loop for item in list
2047 if (not (funcall predicate item))
2048 collect item))
2049
2050 (defun js2-position (element list)
2051 "Find 0-indexed position of ELEMENT in LIST comparing with `eq'.
2052 Returns nil if element is not found in the list."
2053 (let ((count 0)
2054 found)
2055 (while (and list (not found))
2056 (if (eq element (car list))
2057 (setq found t)
2058 (setq count (1+ count)
2059 list (cdr list))))
2060 (if found count)))
2061
2062 (defun js2-find-if (predicate list)
2063 "Find first item satisfying PREDICATE in LIST."
2064 (let (result)
2065 (while (and list (not result))
2066 (if (funcall predicate (car list))
2067 (setq result (car list)))
2068 (setq list (cdr list)))
2069 result))
2070
2071 (defmacro js2-time (form)
2072 "Evaluate FORM, discard result, and return elapsed time in sec."
2073 (declare (debug t))
2074 (let ((beg (make-symbol "--js2-time-beg--")))
2075 `(let ((,beg (current-time)))
2076 ,form
2077 (/ (truncate (* (- (float-time (current-time))
2078 (float-time ,beg))
2079 10000))
2080 10000.0))))
2081
2082 (defsubst js2-same-line (pos)
2083 "Return t if POS is on the same line as current point."
2084 (and (>= pos (point-at-bol))
2085 (<= pos (point-at-eol))))
2086
2087 (defun js2-code-bug ()
2088 "Signal an error when we encounter an unexpected code path."
2089 (error "failed assertion"))
2090
2091 (defsubst js2-record-text-property (beg end prop value)
2092 "Record a text property to set when parsing finishes."
2093 (push (list beg end prop value) js2-mode-deferred-properties))
2094
2095 ;; I'd like to associate errors with nodes, but for now the
2096 ;; easiest thing to do is get the context info from the last token.
2097 (defun js2-record-parse-error (msg &optional arg pos len)
2098 (push (list (list msg arg)
2099 (or pos (js2-current-token-beg))
2100 (or len (js2-current-token-len)))
2101 js2-parsed-errors))
2102
2103 (defun js2-report-error (msg &optional msg-arg pos len)
2104 "Signal a syntax error or record a parse error."
2105 (if js2-recover-from-parse-errors
2106 (js2-record-parse-error msg msg-arg pos len)
2107 (signal 'js2-syntax-error
2108 (list msg
2109 js2-ts-lineno
2110 (save-excursion
2111 (goto-char js2-ts-cursor)
2112 (current-column))
2113 js2-ts-hit-eof))))
2114
2115 (defun js2-report-warning (msg &optional msg-arg pos len face)
2116 (if js2-compiler-report-warning-as-error
2117 (js2-report-error msg msg-arg pos len)
2118 (push (list (list msg msg-arg)
2119 (or pos (js2-current-token-beg))
2120 (or len (js2-current-token-len))
2121 face)
2122 js2-parsed-warnings)))
2123
2124 (defun js2-add-strict-warning (msg-id &optional msg-arg beg end)
2125 (if js2-compiler-strict-mode
2126 (js2-report-warning msg-id msg-arg beg
2127 (and beg end (- end beg)))))
2128
2129 (put 'js2-syntax-error 'error-conditions
2130 '(error syntax-error js2-syntax-error))
2131 (put 'js2-syntax-error 'error-message "Syntax error")
2132
2133 (put 'js2-parse-error 'error-conditions
2134 '(error parse-error js2-parse-error))
2135 (put 'js2-parse-error 'error-message "Parse error")
2136
2137 (defmacro js2-clear-flag (flags flag)
2138 `(setq ,flags (logand ,flags (lognot ,flag))))
2139
2140 (defmacro js2-set-flag (flags flag)
2141 "Logical-or FLAG into FLAGS."
2142 `(setq ,flags (logior ,flags ,flag)))
2143
2144 (defsubst js2-flag-set-p (flags flag)
2145 (/= 0 (logand flags flag)))
2146
2147 (defsubst js2-flag-not-set-p (flags flag)
2148 (zerop (logand flags flag)))
2149
2150 ;;; AST struct and function definitions
2151
2152 ;; flags for ast node property 'member-type (used for e4x operators)
2153 (defvar js2-property-flag #x1 "Property access: element is valid name.")
2154 (defvar js2-attribute-flag #x2 "x.@y or x..@y.")
2155 (defvar js2-descendants-flag #x4 "x..y or x..@i.")
2156
2157 (defsubst js2-relpos (pos anchor)
2158 "Convert POS to be relative to ANCHOR.
2159 If POS is nil, returns nil."
2160 (and pos (- pos anchor)))
2161
2162 (defun js2-make-pad (indent)
2163 (if (zerop indent)
2164 ""
2165 (make-string (* indent js2-basic-offset) ? )))
2166
2167 (defun js2-visit-ast (node callback)
2168 "Visit every node in ast NODE with visitor CALLBACK.
2169
2170 CALLBACK is a function that takes two arguments: (NODE END-P). It is
2171 called twice: once to visit the node, and again after all the node's
2172 children have been processed. The END-P argument is nil on the first
2173 call and non-nil on the second call. The return value of the callback
2174 affects the traversal: if non-nil, the children of NODE are processed.
2175 If the callback returns nil, or if the node has no children, then the
2176 callback is called immediately with a non-nil END-P argument.
2177
2178 The node traversal is approximately lexical-order, although there
2179 are currently no guarantees around this."
2180 (when node
2181 (let ((vfunc (get (aref node 0) 'js2-visitor)))
2182 ;; visit the node
2183 (when (funcall callback node nil)
2184 ;; visit the kids
2185 (cond
2186 ((eq vfunc 'js2-visit-none)
2187 nil) ; don't even bother calling it
2188 ;; Each AST node type has to define a `js2-visitor' function
2189 ;; that takes a node and a callback, and calls `js2-visit-ast'
2190 ;; on each child of the node.
2191 (vfunc
2192 (funcall vfunc node callback))
2193 (t
2194 (error "%s does not define a visitor-traversal function"
2195 (aref node 0)))))
2196 ;; call the end-visit
2197 (funcall callback node t))))
2198
2199 (cl-defstruct (js2-node
2200 (:constructor nil)) ; abstract
2201 "Base AST node type."
2202 (type -1) ; token type
2203 (pos -1) ; start position of this AST node in parsed input
2204 (len 1) ; num characters spanned by the node
2205 props ; optional node property list (an alist)
2206 parent) ; link to parent node; null for root
2207
2208 (defsubst js2-node-get-prop (node prop &optional default)
2209 (or (cadr (assoc prop (js2-node-props node))) default))
2210
2211 (defsubst js2-node-set-prop (node prop value)
2212 (setf (js2-node-props node)
2213 (cons (list prop value) (js2-node-props node))))
2214
2215 (defun js2-fixup-starts (n nodes)
2216 "Adjust the start positions of NODES to be relative to N.
2217 Any node in the list may be nil, for convenience."
2218 (dolist (node nodes)
2219 (when node
2220 (setf (js2-node-pos node) (- (js2-node-pos node)
2221 (js2-node-pos n))))))
2222
2223 (defun js2-node-add-children (parent &rest nodes)
2224 "Set parent node of NODES to PARENT, and return PARENT.
2225 Does nothing if we're not recording parent links.
2226 If any given node in NODES is nil, doesn't record that link."
2227 (js2-fixup-starts parent nodes)
2228 (dolist (node nodes)
2229 (and node
2230 (setf (js2-node-parent node) parent))))
2231
2232 ;; Non-recursive since it's called a frightening number of times.
2233 (defun js2-node-abs-pos (n)
2234 (let ((pos (js2-node-pos n)))
2235 (while (setq n (js2-node-parent n))
2236 (setq pos (+ pos (js2-node-pos n))))
2237 pos))
2238
2239 (defsubst js2-node-abs-end (n)
2240 "Return absolute buffer position of end of N."
2241 (+ (js2-node-abs-pos n) (js2-node-len n)))
2242
2243 ;; It's important to make sure block nodes have a Lisp list for the
2244 ;; child nodes, to limit printing recursion depth in an AST that
2245 ;; otherwise consists of defstruct vectors. Emacs will crash printing
2246 ;; a sufficiently large vector tree.
2247
2248 (cl-defstruct (js2-block-node
2249 (:include js2-node)
2250 (:constructor nil)
2251 (:constructor make-js2-block-node (&key (type js2-BLOCK)
2252 (pos (js2-current-token-beg))
2253 len
2254 props
2255 kids)))
2256 "A block of statements."
2257 kids) ; a Lisp list of the child statement nodes
2258
2259 (put 'cl-struct-js2-block-node 'js2-visitor 'js2-visit-block)
2260 (put 'cl-struct-js2-block-node 'js2-printer 'js2-print-block)
2261
2262 (defun js2-visit-block (ast callback)
2263 "Visit the `js2-block-node' children of AST."
2264 (dolist (kid (js2-block-node-kids ast))
2265 (js2-visit-ast kid callback)))
2266
2267 (defun js2-print-block (n i)
2268 (let ((pad (js2-make-pad i)))
2269 (insert pad "{\n")
2270 (dolist (kid (js2-block-node-kids n))
2271 (js2-print-ast kid (1+ i)))
2272 (insert pad "}")))
2273
2274 (cl-defstruct (js2-scope
2275 (:include js2-block-node)
2276 (:constructor nil)
2277 (:constructor make-js2-scope (&key (type js2-BLOCK)
2278 (pos (js2-current-token-beg))
2279 len
2280 kids)))
2281 ;; The symbol-table is a LinkedHashMap<String,Symbol> in Rhino.
2282 ;; I don't have one of those handy, so I'll use an alist for now.
2283 ;; It's as fast as an emacs hashtable for up to about 50 elements,
2284 ;; and is much lighter-weight to construct (both CPU and mem).
2285 ;; The keys are interned strings (symbols) for faster lookup.
2286 ;; Should switch to hybrid alist/hashtable eventually.
2287 symbol-table ; an alist of (symbol . js2-symbol)
2288 parent-scope ; a `js2-scope'
2289 top) ; top-level `js2-scope' (script/function)
2290
2291 (put 'cl-struct-js2-scope 'js2-visitor 'js2-visit-block)
2292 (put 'cl-struct-js2-scope 'js2-printer 'js2-print-none)
2293
2294 (defun js2-node-get-enclosing-scope (node)
2295 "Return the innermost `js2-scope' node surrounding NODE.
2296 Returns nil if there is no enclosing scope node."
2297 (while (and (setq node (js2-node-parent node))
2298 (not (js2-scope-p node))))
2299 node)
2300
2301 (defun js2-get-defining-scope (scope name &optional point)
2302 "Search up scope chain from SCOPE looking for NAME, a string or symbol.
2303 Returns `js2-scope' in which NAME is defined, or nil if not found.
2304
2305 If POINT is non-nil, and if the found declaration type is
2306 `js2-LET', also check that the declaration node is before POINT."
2307 (let ((sym (if (symbolp name)
2308 name
2309 (intern name)))
2310 result
2311 (continue t))
2312 (while (and scope continue)
2313 (if (or
2314 (let ((entry (cdr (assq sym (js2-scope-symbol-table scope)))))
2315 (and entry
2316 (or (not point)
2317 (not (eq js2-LET (js2-symbol-decl-type entry)))
2318 (>= point
2319 (js2-node-abs-pos (js2-symbol-ast-node entry))))))
2320 (and (eq sym 'arguments)
2321 (js2-function-node-p scope)))
2322 (setq continue nil
2323 result scope)
2324 (setq scope (js2-scope-parent-scope scope))))
2325 result))
2326
2327 (defun js2-scope-get-symbol (scope name)
2328 "Return symbol table entry for NAME in SCOPE.
2329 NAME can be a string or symbol. Returns a `js2-symbol' or nil if not found."
2330 (and (js2-scope-symbol-table scope)
2331 (cdr (assq (if (symbolp name)
2332 name
2333 (intern name))
2334 (js2-scope-symbol-table scope)))))
2335
2336 (defun js2-scope-put-symbol (scope name symbol)
2337 "Enter SYMBOL into symbol-table for SCOPE under NAME.
2338 NAME can be a Lisp symbol or string. SYMBOL is a `js2-symbol'."
2339 (let* ((table (js2-scope-symbol-table scope))
2340 (sym (if (symbolp name) name (intern name)))
2341 (entry (assq sym table)))
2342 (if entry
2343 (setcdr entry symbol)
2344 (push (cons sym symbol)
2345 (js2-scope-symbol-table scope)))))
2346
2347 (cl-defstruct (js2-symbol
2348 (:constructor nil)
2349 (:constructor make-js2-symbol (decl-type name &optional ast-node)))
2350 "A symbol table entry."
2351 ;; One of js2-FUNCTION, js2-LP (for parameters), js2-VAR,
2352 ;; js2-LET, or js2-CONST
2353 decl-type
2354 name ; string
2355 ast-node) ; a `js2-node'
2356
2357 (cl-defstruct (js2-error-node
2358 (:include js2-node)
2359 (:constructor nil) ; silence emacs21 byte-compiler
2360 (:constructor make-js2-error-node (&key (type js2-ERROR)
2361 (pos (js2-current-token-beg))
2362 len)))
2363 "AST node representing a parse error.")
2364
2365 (put 'cl-struct-js2-error-node 'js2-visitor 'js2-visit-none)
2366 (put 'cl-struct-js2-error-node 'js2-printer 'js2-print-none)
2367
2368 (cl-defstruct (js2-script-node
2369 (:include js2-scope)
2370 (:constructor nil)
2371 (:constructor make-js2-script-node (&key (type js2-SCRIPT)
2372 (pos (js2-current-token-beg))
2373 len
2374 ;; FIXME: What are those?
2375 var-decls
2376 fun-decls)))
2377 functions ; Lisp list of nested functions
2378 regexps ; Lisp list of (string . flags)
2379 symbols ; alist (every symbol gets unique index)
2380 (param-count 0)
2381 var-names ; vector of string names
2382 consts ; bool-vector matching var-decls
2383 (temp-number 0)) ; for generating temp variables
2384
2385 (put 'cl-struct-js2-script-node 'js2-visitor 'js2-visit-block)
2386 (put 'cl-struct-js2-script-node 'js2-printer 'js2-print-script)
2387
2388 (defun js2-print-script (node indent)
2389 (dolist (kid (js2-block-node-kids node))
2390 (js2-print-ast kid indent)))
2391
2392 (cl-defstruct (js2-ast-root
2393 (:include js2-script-node)
2394 (:constructor nil)
2395 (:constructor make-js2-ast-root (&key (type js2-SCRIPT)
2396 (pos (js2-current-token-beg))
2397 len
2398 buffer)))
2399 "The root node of a js2 AST."
2400 buffer ; the source buffer from which the code was parsed
2401 comments ; a Lisp list of comments, ordered by start position
2402 errors ; a Lisp list of errors found during parsing
2403 warnings ; a Lisp list of warnings found during parsing
2404 node-count) ; number of nodes in the tree, including the root
2405
2406 (put 'cl-struct-js2-ast-root 'js2-visitor 'js2-visit-ast-root)
2407 (put 'cl-struct-js2-ast-root 'js2-printer 'js2-print-script)
2408
2409 (defun js2-visit-ast-root (ast callback)
2410 (dolist (kid (js2-ast-root-kids ast))
2411 (js2-visit-ast kid callback))
2412 (dolist (comment (js2-ast-root-comments ast))
2413 (js2-visit-ast comment callback)))
2414
2415 (cl-defstruct (js2-comment-node
2416 (:include js2-node)
2417 (:constructor nil)
2418 (:constructor make-js2-comment-node (&key (type js2-COMMENT)
2419 (pos (js2-current-token-beg))
2420 len
2421 format)))
2422 format) ; 'line, 'block, 'jsdoc or 'html
2423
2424 (put 'cl-struct-js2-comment-node 'js2-visitor 'js2-visit-none)
2425 (put 'cl-struct-js2-comment-node 'js2-printer 'js2-print-comment)
2426
2427 (defun js2-print-comment (n i)
2428 ;; We really ought to link end-of-line comments to their nodes.
2429 ;; Or maybe we could add a new comment type, 'endline.
2430 (insert (js2-make-pad i)
2431 (js2-node-string n)))
2432
2433 (cl-defstruct (js2-expr-stmt-node
2434 (:include js2-node)
2435 (:constructor nil)
2436 (:constructor make-js2-expr-stmt-node (&key (type js2-EXPR_VOID)
2437 (pos js2-ts-cursor)
2438 len
2439 expr)))
2440 "An expression statement."
2441 expr)
2442
2443 (defsubst js2-expr-stmt-node-set-has-result (node)
2444 "Change NODE type to `js2-EXPR_RESULT'. Used for code generation."
2445 (setf (js2-node-type node) js2-EXPR_RESULT))
2446
2447 (put 'cl-struct-js2-expr-stmt-node 'js2-visitor 'js2-visit-expr-stmt-node)
2448 (put 'cl-struct-js2-expr-stmt-node 'js2-printer 'js2-print-expr-stmt-node)
2449
2450 (defun js2-visit-expr-stmt-node (n v)
2451 (js2-visit-ast (js2-expr-stmt-node-expr n) v))
2452
2453 (defun js2-print-expr-stmt-node (n indent)
2454 (js2-print-ast (js2-expr-stmt-node-expr n) indent)
2455 (insert ";\n"))
2456
2457 (cl-defstruct (js2-loop-node
2458 (:include js2-scope)
2459 (:constructor nil))
2460 "Abstract supertype of loop nodes."
2461 body ; a `js2-block-node'
2462 lp ; position of left-paren, nil if omitted
2463 rp) ; position of right-paren, nil if omitted
2464
2465 (cl-defstruct (js2-do-node
2466 (:include js2-loop-node)
2467 (:constructor nil)
2468 (:constructor make-js2-do-node (&key (type js2-DO)
2469 (pos (js2-current-token-beg))
2470 len
2471 body
2472 condition
2473 while-pos
2474 lp
2475 rp)))
2476 "AST node for do-loop."
2477 condition ; while (expression)
2478 while-pos) ; buffer position of 'while' keyword
2479
2480 (put 'cl-struct-js2-do-node 'js2-visitor 'js2-visit-do-node)
2481 (put 'cl-struct-js2-do-node 'js2-printer 'js2-print-do-node)
2482
2483 (defun js2-visit-do-node (n v)
2484 (js2-visit-ast (js2-do-node-body n) v)
2485 (js2-visit-ast (js2-do-node-condition n) v))
2486
2487 (defun js2-print-do-node (n i)
2488 (let ((pad (js2-make-pad i)))
2489 (insert pad "do {\n")
2490 (dolist (kid (js2-block-node-kids (js2-do-node-body n)))
2491 (js2-print-ast kid (1+ i)))
2492 (insert pad "} while (")
2493 (js2-print-ast (js2-do-node-condition n) 0)
2494 (insert ");\n")))
2495
2496 (cl-defstruct (js2-export-node
2497 (:include js2-node)
2498 (:constructor nil)
2499 (:constructor make-js2-export-node (&key (type js2-EXPORT)
2500 (pos (js2-current-token-beg))
2501 len
2502 exports-list
2503 from-clause
2504 declaration
2505 default)))
2506 "AST node for an export statement. There are many things that can be exported,
2507 so many of its properties will be nil.
2508 "
2509 exports-list ; lisp list of js2-export-binding-node to export
2510 from-clause ; js2-from-clause-node for re-exporting symbols from another module
2511 declaration ; js2-var-decl-node (var, let, const) or js2-class-node
2512 default) ; js2-function-node or js2-assign-node
2513
2514 (put 'cl-struct-js2-export-node 'js2-visitor 'js2-visit-export-node)
2515 (put 'cl-struct-js2-export-node 'js2-printer 'js2-print-export-node)
2516
2517 (defun js2-visit-export-node (n v)
2518 (let ((exports-list (js2-export-node-exports-list n))
2519 (from (js2-export-node-from-clause n))
2520 (declaration (js2-export-node-declaration n))
2521 (default (js2-export-node-default n)))
2522 (when exports-list
2523 (dolist (export exports-list)
2524 (js2-visit-ast export v)))
2525 (when from
2526 (js2-visit-ast from v))
2527 (when declaration
2528 (js2-visit-ast declaration v))
2529 (when default
2530 (js2-visit-ast default v))))
2531
2532 (defun js2-print-export-node (n i)
2533 (let ((pad (js2-make-pad i))
2534 (exports-list (js2-export-node-exports-list n))
2535 (from (js2-export-node-from-clause n))
2536 (declaration (js2-export-node-declaration n))
2537 (default (js2-export-node-default n)))
2538 (insert pad "export ")
2539 (cond
2540 (default
2541 (insert "default ")
2542 (js2-print-ast default i))
2543 (declaration
2544 (js2-print-ast declaration i))
2545 ((and exports-list from)
2546 (js2-print-named-imports exports-list)
2547 (insert " ")
2548 (js2-print-from-clause from))
2549 (from
2550 (insert "* ")
2551 (js2-print-from-clause from))
2552 (exports-list
2553 (js2-print-named-imports exports-list)))
2554 (unless (or (and default (not (js2-assign-node-p default)))
2555 (and declaration (or (js2-function-node-p declaration)
2556 (js2-class-node-p declaration))))
2557 (insert ";\n"))))
2558
2559 (cl-defstruct (js2-while-node
2560 (:include js2-loop-node)
2561 (:constructor nil)
2562 (:constructor make-js2-while-node (&key (type js2-WHILE)
2563 (pos (js2-current-token-beg))
2564 len body
2565 condition lp
2566 rp)))
2567 "AST node for while-loop."
2568 condition) ; while-condition
2569
2570 (put 'cl-struct-js2-while-node 'js2-visitor 'js2-visit-while-node)
2571 (put 'cl-struct-js2-while-node 'js2-printer 'js2-print-while-node)
2572
2573 (defun js2-visit-while-node (n v)
2574 (js2-visit-ast (js2-while-node-condition n) v)
2575 (js2-visit-ast (js2-while-node-body n) v))
2576
2577 (defun js2-print-while-node (n i)
2578 (let ((pad (js2-make-pad i)))
2579 (insert pad "while (")
2580 (js2-print-ast (js2-while-node-condition n) 0)
2581 (insert ") {\n")
2582 (js2-print-body (js2-while-node-body n) (1+ i))
2583 (insert pad "}\n")))
2584
2585 (cl-defstruct (js2-for-node
2586 (:include js2-loop-node)
2587 (:constructor nil)
2588 (:constructor make-js2-for-node (&key (type js2-FOR)
2589 (pos js2-ts-cursor)
2590 len body init
2591 condition
2592 update lp rp)))
2593 "AST node for a C-style for-loop."
2594 init ; initialization expression
2595 condition ; loop condition
2596 update) ; update clause
2597
2598 (put 'cl-struct-js2-for-node 'js2-visitor 'js2-visit-for-node)
2599 (put 'cl-struct-js2-for-node 'js2-printer 'js2-print-for-node)
2600
2601 (defun js2-visit-for-node (n v)
2602 (js2-visit-ast (js2-for-node-init n) v)
2603 (js2-visit-ast (js2-for-node-condition n) v)
2604 (js2-visit-ast (js2-for-node-update n) v)
2605 (js2-visit-ast (js2-for-node-body n) v))
2606
2607 (defun js2-print-for-node (n i)
2608 (let ((pad (js2-make-pad i)))
2609 (insert pad "for (")
2610 (js2-print-ast (js2-for-node-init n) 0)
2611 (insert "; ")
2612 (js2-print-ast (js2-for-node-condition n) 0)
2613 (insert "; ")
2614 (js2-print-ast (js2-for-node-update n) 0)
2615 (insert ") {\n")
2616 (js2-print-body (js2-for-node-body n) (1+ i))
2617 (insert pad "}\n")))
2618
2619 (cl-defstruct (js2-for-in-node
2620 (:include js2-loop-node)
2621 (:constructor nil)
2622 (:constructor make-js2-for-in-node (&key (type js2-FOR)
2623 (pos js2-ts-cursor)
2624 len body
2625 iterator
2626 object
2627 in-pos
2628 each-pos
2629 foreach-p forof-p
2630 lp rp)))
2631 "AST node for a for..in loop."
2632 iterator ; [var] foo in ...
2633 object ; object over which we're iterating
2634 in-pos ; buffer position of 'in' keyword
2635 each-pos ; buffer position of 'each' keyword, if foreach-p
2636 foreach-p ; t if it's a for-each loop
2637 forof-p) ; t if it's a for-of loop
2638
2639 (put 'cl-struct-js2-for-in-node 'js2-visitor 'js2-visit-for-in-node)
2640 (put 'cl-struct-js2-for-in-node 'js2-printer 'js2-print-for-in-node)
2641
2642 (defun js2-visit-for-in-node (n v)
2643 (js2-visit-ast (js2-for-in-node-iterator n) v)
2644 (js2-visit-ast (js2-for-in-node-object n) v)
2645 (js2-visit-ast (js2-for-in-node-body n) v))
2646
2647 (defun js2-print-for-in-node (n i)
2648 (let ((pad (js2-make-pad i))
2649 (foreach (js2-for-in-node-foreach-p n))
2650 (forof (js2-for-in-node-forof-p n)))
2651 (insert pad "for ")
2652 (if foreach
2653 (insert "each "))
2654 (insert "(")
2655 (js2-print-ast (js2-for-in-node-iterator n) 0)
2656 (insert (if forof " of " " in "))
2657 (js2-print-ast (js2-for-in-node-object n) 0)
2658 (insert ") {\n")
2659 (js2-print-body (js2-for-in-node-body n) (1+ i))
2660 (insert pad "}\n")))
2661
2662 (cl-defstruct (js2-return-node
2663 (:include js2-node)
2664 (:constructor nil)
2665 (:constructor make-js2-return-node (&key (type js2-RETURN)
2666 (pos js2-ts-cursor)
2667 len
2668 retval)))
2669 "AST node for a return statement."
2670 retval) ; expression to return, or 'undefined
2671
2672 (put 'cl-struct-js2-return-node 'js2-visitor 'js2-visit-return-node)
2673 (put 'cl-struct-js2-return-node 'js2-printer 'js2-print-return-node)
2674
2675 (defun js2-visit-return-node (n v)
2676 (js2-visit-ast (js2-return-node-retval n) v))
2677
2678 (defun js2-print-return-node (n i)
2679 (insert (js2-make-pad i) "return")
2680 (when (js2-return-node-retval n)
2681 (insert " ")
2682 (js2-print-ast (js2-return-node-retval n) 0))
2683 (insert ";\n"))
2684
2685 (cl-defstruct (js2-if-node
2686 (:include js2-node)
2687 (:constructor nil)
2688 (:constructor make-js2-if-node (&key (type js2-IF)
2689 (pos js2-ts-cursor)
2690 len condition
2691 then-part
2692 else-pos
2693 else-part lp
2694 rp)))
2695 "AST node for an if-statement."
2696 condition ; expression
2697 then-part ; statement or block
2698 else-pos ; optional buffer position of 'else' keyword
2699 else-part ; optional statement or block
2700 lp ; position of left-paren, nil if omitted
2701 rp) ; position of right-paren, nil if omitted
2702
2703 (put 'cl-struct-js2-if-node 'js2-visitor 'js2-visit-if-node)
2704 (put 'cl-struct-js2-if-node 'js2-printer 'js2-print-if-node)
2705
2706 (defun js2-visit-if-node (n v)
2707 (js2-visit-ast (js2-if-node-condition n) v)
2708 (js2-visit-ast (js2-if-node-then-part n) v)
2709 (js2-visit-ast (js2-if-node-else-part n) v))
2710
2711 (defun js2-print-if-node (n i)
2712 (let ((pad (js2-make-pad i))
2713 (then-part (js2-if-node-then-part n))
2714 (else-part (js2-if-node-else-part n)))
2715 (insert pad "if (")
2716 (js2-print-ast (js2-if-node-condition n) 0)
2717 (insert ") {\n")
2718 (js2-print-body then-part (1+ i))
2719 (insert pad "}")
2720 (cond
2721 ((not else-part)
2722 (insert "\n"))
2723 ((js2-if-node-p else-part)
2724 (insert " else ")
2725 (js2-print-body else-part i))
2726 (t
2727 (insert " else {\n")
2728 (js2-print-body else-part (1+ i))
2729 (insert pad "}\n")))))
2730
2731 (cl-defstruct (js2-export-binding-node
2732 (:include js2-node)
2733 (:constructor nil)
2734 (:constructor make-js2-export-binding-node (&key (type -1)
2735 pos
2736 len
2737 local-name
2738 extern-name)))
2739 "AST node for an external symbol binding.
2740 It contains a local-name node which is the name of the value in the
2741 current scope, and extern-name which is the name of the value in the
2742 imported or exported scope. By default these are the same, but if the
2743 name is aliased as in {foo as bar}, it would have an extern-name node
2744 containing 'foo' and a local-name node containing 'bar'."
2745 local-name ; js2-name-node with the variable name in this scope
2746 extern-name) ; js2-name-node with the value name in the exporting module
2747
2748 (put 'cl-struct-js2-export-binding-node 'js2-printer 'js2-print-extern-binding)
2749 (put 'cl-struct-js2-export-binding-node 'js2-visitor 'js2-visit-extern-binding)
2750
2751 (defun js2-visit-extern-binding (n v)
2752 "Visit an extern binding node. First visit the local-name, and, if
2753 different, visit the extern-name."
2754 (let ((local-name (js2-export-binding-node-local-name n))
2755 (extern-name (js2-export-binding-node-extern-name n)))
2756 (when local-name
2757 (js2-visit-ast local-name v))
2758 (when (not (equal local-name extern-name))
2759 (js2-visit-ast extern-name v))))
2760
2761 (defun js2-print-extern-binding (n _i)
2762 "Print a representation of a single extern binding. E.g. 'foo' or
2763 'foo as bar'."
2764 (let ((local-name (js2-export-binding-node-local-name n))
2765 (extern-name (js2-export-binding-node-extern-name n)))
2766 (insert (js2-name-node-name extern-name))
2767 (when (not (equal local-name extern-name))
2768 (insert " as ")
2769 (insert (js2-name-node-name local-name)))))
2770
2771
2772 (cl-defstruct (js2-import-node
2773 (:include js2-node)
2774 (:constructor nil)
2775 (:constructor make-js2-import-node (&key (type js2-IMPORT)
2776 (pos (js2-current-token-beg))
2777 len
2778 import
2779 from
2780 module-id)))
2781 "AST node for an import statement. It follows the form
2782
2783 import ModuleSpecifier;
2784 import ImportClause FromClause;"
2785 import ; js2-import-clause-node specifying which names are to imported.
2786 from ; js2-from-clause-node indicating the module from which to import.
2787 module-id) ; module-id of the import. E.g. 'src/mylib'.
2788
2789 (put 'cl-struct-js2-import-node 'js2-printer 'js2-print-import)
2790 (put 'cl-struct-js2-import-node 'js2-visitor 'js2-visit-import)
2791
2792 (defun js2-visit-import (n v)
2793 (let ((import-clause (js2-import-node-import n))
2794 (from-clause (js2-import-node-from n)))
2795 (when import-clause
2796 (js2-visit-ast import-clause v))
2797 (when from-clause
2798 (js2-visit-ast from-clause v))))
2799
2800 (defun js2-print-import (n i)
2801 "Prints a representation of the import node"
2802 (let ((pad (js2-make-pad i))
2803 (import-clause (js2-import-node-import n))
2804 (from-clause (js2-import-node-from n))
2805 (module-id (js2-import-node-module-id n)))
2806 (insert pad "import ")
2807 (if import-clause
2808 (progn
2809 (js2-print-import-clause import-clause)
2810 (insert " ")
2811 (js2-print-from-clause from-clause))
2812 (insert "'")
2813 (insert module-id)
2814 (insert "'"))
2815 (insert ";\n")))
2816
2817 (cl-defstruct (js2-import-clause-node
2818 (:include js2-node)
2819 (:constructor nil)
2820 (:constructor make-js2-import-clause-node (&key (type -1)
2821 pos
2822 len
2823 namespace-import
2824 named-imports
2825 default-binding)))
2826 "AST node corresponding to the import clause of an import statement. This is
2827 the portion of the import that bindings names from the external context to the
2828 local context."
2829 namespace-import ; js2-namespace-import-node. E.g. '* as lib'
2830 named-imports ; lisp list of js2-export-binding-node for all named imports.
2831 default-binding) ; js2-export-binding-node for the default import binding
2832
2833 (put 'cl-struct-js2-import-clause-node 'js2-visitor 'js2-visit-import-clause)
2834 (put 'cl-struct-js2-import-clause-node 'js2-printer 'js2-print-import-clause)
2835
2836 (defun js2-visit-import-clause (n v)
2837 (let ((ns-import (js2-import-clause-node-namespace-import n))
2838 (named-imports (js2-import-clause-node-named-imports n))
2839 (default (js2-import-clause-node-default-binding n)))
2840 (when ns-import
2841 (js2-visit-ast ns-import v))
2842 (when named-imports
2843 (dolist (import named-imports)
2844 (js2-visit-ast import v)))
2845 (when default
2846 (js2-visit-ast default v))))
2847
2848 (defun js2-print-import-clause (n)
2849 (let ((ns-import (js2-import-clause-node-namespace-import n))
2850 (named-imports (js2-import-clause-node-named-imports n))
2851 (default (js2-import-clause-node-default-binding n)))
2852 (cond
2853 ((and default ns-import)
2854 (js2-print-ast default)
2855 (insert ", ")
2856 (js2-print-namespace-import ns-import))
2857 ((and default named-imports)
2858 (js2-print-ast default)
2859 (insert ", ")
2860 (js2-print-named-imports named-imports))
2861 (default
2862 (js2-print-ast default))
2863 (ns-import
2864 (js2-print-namespace-import ns-import))
2865 (named-imports
2866 (js2-print-named-imports named-imports)))))
2867
2868 (defun js2-print-namespace-import (node)
2869 (insert "* as ")
2870 (insert (js2-name-node-name (js2-namespace-import-node-name node))))
2871
2872 (defun js2-print-named-imports (imports)
2873 (insert "{")
2874 (let ((len (length imports))
2875 (n 0))
2876 (while (< n len)
2877 (js2-print-extern-binding (nth n imports) 0)
2878 (unless (= n (- len 1))
2879 (insert ", "))
2880 (setq n (+ n 1))))
2881 (insert "}"))
2882
2883 (cl-defstruct (js2-namespace-import-node
2884 (:include js2-node)
2885 (:constructor nil)
2886 (:constructor make-js2-namespace-import-node (&key (type -1)
2887 pos
2888 len
2889 name)))
2890 "AST node for a complete namespace import.
2891 E.g. the '* as lib' expression in:
2892
2893 import * as lib from 'src/lib'
2894
2895 It contains a single name node referring to the bound name."
2896 name) ; js2-name-node of the bound name.
2897
2898 (defun js2-visit-namespace-import (n v)
2899 (js2-visit-ast (js2-namespace-import-node-name n) v))
2900
2901 (put 'cl-struct-js2-namespace-import-node 'js2-visitor 'js2-visit-namespace-import)
2902 (put 'cl-struct-js2-namespace-import-node 'js2-printer 'js2-print-namespace-import)
2903
2904 (cl-defstruct (js2-from-clause-node
2905 (:include js2-node)
2906 (:constructor nil)
2907 (:constructor make-js2-from-clause-node (&key (type js2-NAME)
2908 pos
2909 len
2910 module-id
2911 metadata-p)))
2912 "AST node for the from clause in an import or export statement.
2913 E.g. from 'my/module'. It can refere to either an external module, or to the
2914 modules metadata itself."
2915 module-id ; string containing the module specifier.
2916 metadata-p) ; true if this clause refers to the module's metadata
2917
2918 (put 'cl-struct-js2-from-clause-node 'js2-visitor 'js2-visit-none)
2919 (put 'cl-struct-js2-from-clause-node 'js2-printer 'js2-print-from-clause)
2920
2921 (defun js2-print-from-clause (n)
2922 (insert "from ")
2923 (if (js2-from-clause-node-metadata-p n)
2924 (insert "this module")
2925 (insert "'")
2926 (insert (js2-from-clause-node-module-id n))
2927 (insert "'")))
2928
2929 (cl-defstruct (js2-try-node
2930 (:include js2-node)
2931 (:constructor nil)
2932 (:constructor make-js2-try-node (&key (type js2-TRY)
2933 (pos js2-ts-cursor)
2934 len
2935 try-block
2936 catch-clauses
2937 finally-block)))
2938 "AST node for a try-statement."
2939 try-block
2940 catch-clauses ; a Lisp list of `js2-catch-node'
2941 finally-block) ; a `js2-finally-node'
2942
2943 (put 'cl-struct-js2-try-node 'js2-visitor 'js2-visit-try-node)
2944 (put 'cl-struct-js2-try-node 'js2-printer 'js2-print-try-node)
2945
2946 (defun js2-visit-try-node (n v)
2947 (js2-visit-ast (js2-try-node-try-block n) v)
2948 (dolist (clause (js2-try-node-catch-clauses n))
2949 (js2-visit-ast clause v))
2950 (js2-visit-ast (js2-try-node-finally-block n) v))
2951
2952 (defun js2-print-try-node (n i)
2953 (let ((pad (js2-make-pad i))
2954 (catches (js2-try-node-catch-clauses n))
2955 (finally (js2-try-node-finally-block n)))
2956 (insert pad "try {\n")
2957 (js2-print-body (js2-try-node-try-block n) (1+ i))
2958 (insert pad "}")
2959 (when catches
2960 (dolist (catch catches)
2961 (js2-print-ast catch i)))
2962 (if finally
2963 (js2-print-ast finally i)
2964 (insert "\n"))))
2965
2966 (cl-defstruct (js2-catch-node
2967 (:include js2-scope)
2968 (:constructor nil)
2969 (:constructor make-js2-catch-node (&key (type js2-CATCH)
2970 (pos js2-ts-cursor)
2971 len
2972 param
2973 guard-kwd
2974 guard-expr
2975 lp rp)))
2976 "AST node for a catch clause."
2977 param ; destructuring form or simple name node
2978 guard-kwd ; relative buffer position of "if" in "catch (x if ...)"
2979 guard-expr ; catch condition, a `js2-node'
2980 lp ; buffer position of left-paren, nil if omitted
2981 rp) ; buffer position of right-paren, nil if omitted
2982
2983 (put 'cl-struct-js2-catch-node 'js2-visitor 'js2-visit-catch-node)
2984 (put 'cl-struct-js2-catch-node 'js2-printer 'js2-print-catch-node)
2985
2986 (defun js2-visit-catch-node (n v)
2987 (js2-visit-ast (js2-catch-node-param n) v)
2988 (when (js2-catch-node-guard-kwd n)
2989 (js2-visit-ast (js2-catch-node-guard-expr n) v))
2990 (js2-visit-block n v))
2991
2992 (defun js2-print-catch-node (n i)
2993 (let ((pad (js2-make-pad i))
2994 (guard-kwd (js2-catch-node-guard-kwd n))
2995 (guard-expr (js2-catch-node-guard-expr n)))
2996 (insert " catch (")
2997 (js2-print-ast (js2-catch-node-param n) 0)
2998 (when guard-kwd
2999 (insert " if ")
3000 (js2-print-ast guard-expr 0))
3001 (insert ") {\n")
3002 (js2-print-body n (1+ i))
3003 (insert pad "}")))
3004
3005 (cl-defstruct (js2-finally-node
3006 (:include js2-node)
3007 (:constructor nil)
3008 (:constructor make-js2-finally-node (&key (type js2-FINALLY)
3009 (pos js2-ts-cursor)
3010 len body)))
3011 "AST node for a finally clause."
3012 body) ; a `js2-node', often but not always a block node
3013
3014 (put 'cl-struct-js2-finally-node 'js2-visitor 'js2-visit-finally-node)
3015 (put 'cl-struct-js2-finally-node 'js2-printer 'js2-print-finally-node)
3016
3017 (defun js2-visit-finally-node (n v)
3018 (js2-visit-ast (js2-finally-node-body n) v))
3019
3020 (defun js2-print-finally-node (n i)
3021 (let ((pad (js2-make-pad i)))
3022 (insert " finally {\n")
3023 (js2-print-body (js2-finally-node-body n) (1+ i))
3024 (insert pad "}\n")))
3025
3026 (cl-defstruct (js2-switch-node
3027 (:include js2-node)
3028 (:constructor nil)
3029 (:constructor make-js2-switch-node (&key (type js2-SWITCH)
3030 (pos js2-ts-cursor)
3031 len
3032 discriminant
3033 cases lp
3034 rp)))
3035 "AST node for a switch statement."
3036 discriminant ; a `js2-node' (switch expression)
3037 cases ; a Lisp list of `js2-case-node'
3038 lp ; position of open-paren for discriminant, nil if omitted
3039 rp) ; position of close-paren for discriminant, nil if omitted
3040
3041 (put 'cl-struct-js2-switch-node 'js2-visitor 'js2-visit-switch-node)
3042 (put 'cl-struct-js2-switch-node 'js2-printer 'js2-print-switch-node)
3043
3044 (defun js2-visit-switch-node (n v)
3045 (js2-visit-ast (js2-switch-node-discriminant n) v)
3046 (dolist (c (js2-switch-node-cases n))
3047 (js2-visit-ast c v)))
3048
3049 (defun js2-print-switch-node (n i)
3050 (let ((pad (js2-make-pad i))
3051 (cases (js2-switch-node-cases n)))
3052 (insert pad "switch (")
3053 (js2-print-ast (js2-switch-node-discriminant n) 0)
3054 (insert ") {\n")
3055 (dolist (case cases)
3056 (js2-print-ast case i))
3057 (insert pad "}\n")))
3058
3059 (cl-defstruct (js2-case-node
3060 (:include js2-block-node)
3061 (:constructor nil)
3062 (:constructor make-js2-case-node (&key (type js2-CASE)
3063 (pos js2-ts-cursor)
3064 len kids expr)))
3065 "AST node for a case clause of a switch statement."
3066 expr) ; the case expression (nil for default)
3067
3068 (put 'cl-struct-js2-case-node 'js2-visitor 'js2-visit-case-node)
3069 (put 'cl-struct-js2-case-node 'js2-printer 'js2-print-case-node)
3070
3071 (defun js2-visit-case-node (n v)
3072 (js2-visit-ast (js2-case-node-expr n) v)
3073 (js2-visit-block n v))
3074
3075 (defun js2-print-case-node (n i)
3076 (let ((pad (js2-make-pad i))
3077 (expr (js2-case-node-expr n)))
3078 (insert pad)
3079 (if (null expr)
3080 (insert "default:\n")
3081 (insert "case ")
3082 (js2-print-ast expr 0)
3083 (insert ":\n"))
3084 (dolist (kid (js2-case-node-kids n))
3085 (js2-print-ast kid (1+ i)))))
3086
3087 (cl-defstruct (js2-throw-node
3088 (:include js2-node)
3089 (:constructor nil)
3090 (:constructor make-js2-throw-node (&key (type js2-THROW)
3091 (pos js2-ts-cursor)
3092 len expr)))
3093 "AST node for a throw statement."
3094 expr) ; the expression to throw
3095
3096 (put 'cl-struct-js2-throw-node 'js2-visitor 'js2-visit-throw-node)
3097 (put 'cl-struct-js2-throw-node 'js2-printer 'js2-print-throw-node)
3098
3099 (defun js2-visit-throw-node (n v)
3100 (js2-visit-ast (js2-throw-node-expr n) v))
3101
3102 (defun js2-print-throw-node (n i)
3103 (insert (js2-make-pad i) "throw ")
3104 (js2-print-ast (js2-throw-node-expr n) 0)
3105 (insert ";\n"))
3106
3107 (cl-defstruct (js2-with-node
3108 (:include js2-node)
3109 (:constructor nil)
3110 (:constructor make-js2-with-node (&key (type js2-WITH)
3111 (pos js2-ts-cursor)
3112 len object
3113 body lp rp)))
3114 "AST node for a with-statement."
3115 object
3116 body
3117 lp ; buffer position of left-paren around object, nil if omitted
3118 rp) ; buffer position of right-paren around object, nil if omitted
3119
3120 (put 'cl-struct-js2-with-node 'js2-visitor 'js2-visit-with-node)
3121 (put 'cl-struct-js2-with-node 'js2-printer 'js2-print-with-node)
3122
3123 (defun js2-visit-with-node (n v)
3124 (js2-visit-ast (js2-with-node-object n) v)
3125 (js2-visit-ast (js2-with-node-body n) v))
3126
3127 (defun js2-print-with-node (n i)
3128 (let ((pad (js2-make-pad i)))
3129 (insert pad "with (")
3130 (js2-print-ast (js2-with-node-object n) 0)
3131 (insert ") {\n")
3132 (js2-print-body (js2-with-node-body n) (1+ i))
3133 (insert pad "}\n")))
3134
3135 (cl-defstruct (js2-label-node
3136 (:include js2-node)
3137 (:constructor nil)
3138 (:constructor make-js2-label-node (&key (type js2-LABEL)
3139 (pos js2-ts-cursor)
3140 len name)))
3141 "AST node for a statement label or case label."
3142 name ; a string
3143 loop) ; for validating and code-generating continue-to-label
3144
3145 (put 'cl-struct-js2-label-node 'js2-visitor 'js2-visit-none)
3146 (put 'cl-struct-js2-label-node 'js2-printer 'js2-print-label)
3147
3148 (defun js2-print-label (n i)
3149 (insert (js2-make-pad i)
3150 (js2-label-node-name n)
3151 ":\n"))
3152
3153 (cl-defstruct (js2-labeled-stmt-node
3154 (:include js2-node)
3155 (:constructor nil)
3156 ;; type needs to be in `js2-side-effecting-tokens' to avoid spurious
3157 ;; no-side-effects warnings, hence js2-EXPR_RESULT.
3158 (:constructor make-js2-labeled-stmt-node (&key (type js2-EXPR_RESULT)
3159 (pos js2-ts-cursor)
3160 len labels stmt)))
3161 "AST node for a statement with one or more labels.
3162 Multiple labels for a statement are collapsed into the labels field."
3163 labels ; Lisp list of `js2-label-node'
3164 stmt) ; the statement these labels are for
3165
3166 (put 'cl-struct-js2-labeled-stmt-node 'js2-visitor 'js2-visit-labeled-stmt)
3167 (put 'cl-struct-js2-labeled-stmt-node 'js2-printer 'js2-print-labeled-stmt)
3168
3169 (defun js2-get-label-by-name (lbl-stmt name)
3170 "Return a `js2-label-node' by NAME from LBL-STMT's labels list.
3171 Returns nil if no such label is in the list."
3172 (let ((label-list (js2-labeled-stmt-node-labels lbl-stmt))
3173 result)
3174 (while (and label-list (not result))
3175 (if (string= (js2-label-node-name (car label-list)) name)
3176 (setq result (car label-list))
3177 (setq label-list (cdr label-list))))
3178 result))
3179
3180 (defun js2-visit-labeled-stmt (n v)
3181 (dolist (label (js2-labeled-stmt-node-labels n))
3182 (js2-visit-ast label v))
3183 (js2-visit-ast (js2-labeled-stmt-node-stmt n) v))
3184
3185 (defun js2-print-labeled-stmt (n i)
3186 (dolist (label (js2-labeled-stmt-node-labels n))
3187 (js2-print-ast label i))
3188 (js2-print-ast (js2-labeled-stmt-node-stmt n) i))
3189
3190 (defun js2-labeled-stmt-node-contains (node label)
3191 "Return t if NODE contains LABEL in its label set.
3192 NODE is a `js2-labels-node'. LABEL is an identifier."
3193 (cl-loop for nl in (js2-labeled-stmt-node-labels node)
3194 if (string= label (js2-label-node-name nl))
3195 return t
3196 finally return nil))
3197
3198 (defsubst js2-labeled-stmt-node-add-label (node label)
3199 "Add a `js2-label-node' to the label set for this statement."
3200 (setf (js2-labeled-stmt-node-labels node)
3201 (nconc (js2-labeled-stmt-node-labels node) (list label))))
3202
3203 (cl-defstruct (js2-jump-node
3204 (:include js2-node)
3205 (:constructor nil))
3206 "Abstract supertype of break and continue nodes."
3207 label ; `js2-name-node' for location of label identifier, if present
3208 target) ; target js2-labels-node or loop/switch statement
3209
3210 (defun js2-visit-jump-node (n v)
3211 ;; We don't visit the target, since it's a back-link.
3212 (js2-visit-ast (js2-jump-node-label n) v))
3213
3214 (cl-defstruct (js2-break-node
3215 (:include js2-jump-node)
3216 (:constructor nil)
3217 (:constructor make-js2-break-node (&key (type js2-BREAK)
3218 (pos js2-ts-cursor)
3219 len label target)))
3220 "AST node for a break statement.
3221 The label field is a `js2-name-node', possibly nil, for the named label
3222 if provided. E.g. in 'break foo', it represents 'foo'. The target field
3223 is the target of the break - a label node or enclosing loop/switch statement.")
3224
3225 (put 'cl-struct-js2-break-node 'js2-visitor 'js2-visit-jump-node)
3226 (put 'cl-struct-js2-break-node 'js2-printer 'js2-print-break-node)
3227
3228 (defun js2-print-break-node (n i)
3229 (insert (js2-make-pad i) "break")
3230 (when (js2-break-node-label n)
3231 (insert " ")
3232 (js2-print-ast (js2-break-node-label n) 0))
3233 (insert ";\n"))
3234
3235 (cl-defstruct (js2-continue-node
3236 (:include js2-jump-node)
3237 (:constructor nil)
3238 (:constructor make-js2-continue-node (&key (type js2-CONTINUE)
3239 (pos js2-ts-cursor)
3240 len label target)))
3241 "AST node for a continue statement.
3242 The label field is the user-supplied enclosing label name, a `js2-name-node'.
3243 It is nil if continue specifies no label. The target field is the jump target:
3244 a `js2-label-node' or the innermost enclosing loop.")
3245
3246 (put 'cl-struct-js2-continue-node 'js2-visitor 'js2-visit-jump-node)
3247 (put 'cl-struct-js2-continue-node 'js2-printer 'js2-print-continue-node)
3248
3249 (defun js2-print-continue-node (n i)
3250 (insert (js2-make-pad i) "continue")
3251 (when (js2-continue-node-label n)
3252 (insert " ")
3253 (js2-print-ast (js2-continue-node-label n) 0))
3254 (insert ";\n"))
3255
3256 (cl-defstruct (js2-function-node
3257 (:include js2-script-node)
3258 (:constructor nil)
3259 (:constructor make-js2-function-node (&key (type js2-FUNCTION)
3260 (pos js2-ts-cursor)
3261 len
3262 (ftype 'FUNCTION)
3263 (form 'FUNCTION_STATEMENT)
3264 (name "")
3265 params rest-p
3266 body
3267 generator-type
3268 async
3269 lp rp)))
3270 "AST node for a function declaration.
3271 The `params' field is a Lisp list of nodes. Each node is either a simple
3272 `js2-name-node', or if it's a destructuring-assignment parameter, a
3273 `js2-array-node' or `js2-object-node'."
3274 ftype ; FUNCTION, GETTER or SETTER
3275 form ; FUNCTION_{STATEMENT|EXPRESSION|ARROW}
3276 name ; function name (a `js2-name-node', or nil if anonymous)
3277 params ; a Lisp list of destructuring forms or simple name nodes
3278 rest-p ; if t, the last parameter is rest parameter
3279 body ; a `js2-block-node' or expression node (1.8 only)
3280 lp ; position of arg-list open-paren, or nil if omitted
3281 rp ; position of arg-list close-paren, or nil if omitted
3282 ignore-dynamic ; ignore value of the dynamic-scope flag (interpreter only)
3283 needs-activation ; t if we need an activation object for this frame
3284 generator-type ; STAR, LEGACY, COMPREHENSION or nil
3285 async ; t if the function is defined as `async function`
3286 member-expr) ; nonstandard Ecma extension from Rhino
3287
3288 (put 'cl-struct-js2-function-node 'js2-visitor 'js2-visit-function-node)
3289 (put 'cl-struct-js2-function-node 'js2-printer 'js2-print-function-node)
3290
3291 (defun js2-visit-function-node (n v)
3292 (js2-visit-ast (js2-function-node-name n) v)
3293 (dolist (p (js2-function-node-params n))
3294 (js2-visit-ast p v))
3295 (js2-visit-ast (js2-function-node-body n) v))
3296
3297 (defun js2-print-function-node (n i)
3298 (let* ((pad (js2-make-pad i))
3299 (method (js2-node-get-prop n 'METHOD_TYPE))
3300 (name (or (js2-function-node-name n)
3301 (js2-function-node-member-expr n)))
3302 (params (js2-function-node-params n))
3303 (arrow (eq (js2-function-node-form n) 'FUNCTION_ARROW))
3304 (rest-p (js2-function-node-rest-p n))
3305 (body (js2-function-node-body n))
3306 (expr (not (eq (js2-function-node-form n) 'FUNCTION_STATEMENT))))
3307 (unless method
3308 (insert pad)
3309 (when (js2-function-node-async n) (insert "async "))
3310 (unless arrow (insert "function"))
3311 (when (eq (js2-function-node-generator-type n) 'STAR)
3312 (insert "*")))
3313 (when name
3314 (insert " ")
3315 (js2-print-ast name 0))
3316 (insert "(")
3317 (cl-loop with len = (length params)
3318 for param in params
3319 for count from 1
3320 do
3321 (when (and rest-p (= count len))
3322 (insert "..."))
3323 (js2-print-ast param 0)
3324 (when (< count len)
3325 (insert ", ")))
3326 (insert ") ")
3327 (when arrow
3328 (insert "=> "))
3329 (insert "{")
3330 ;; TODO: fix this to be smarter about indenting, etc.
3331 (unless expr
3332 (insert "\n"))
3333 (if (js2-block-node-p body)
3334 (js2-print-body body (1+ i))
3335 (js2-print-ast body 0))
3336 (insert pad "}")
3337 (unless expr
3338 (insert "\n"))))
3339
3340 (defun js2-function-name (node)
3341 "Return function name for NODE, a `js2-function-node', or nil if anonymous."
3342 (and (js2-function-node-name node)
3343 (js2-name-node-name (js2-function-node-name node))))
3344
3345 ;; Having this be an expression node makes it more flexible.
3346 ;; There are IDE contexts, such as indentation in a for-loop initializer,
3347 ;; that work better if you assume it's an expression. Whenever we have
3348 ;; a standalone var/const declaration, we just wrap with an expr stmt.
3349 ;; Eclipse apparently screwed this up and now has two versions, expr and stmt.
3350 (cl-defstruct (js2-var-decl-node
3351 (:include js2-node)
3352 (:constructor nil)
3353 (:constructor make-js2-var-decl-node (&key (type js2-VAR)
3354 (pos (js2-current-token-beg))
3355 len kids
3356 decl-type)))
3357 "AST node for a variable declaration list (VAR, CONST or LET).
3358 The node bounds differ depending on the declaration type. For VAR or
3359 CONST declarations, the bounds include the var/const keyword. For LET
3360 declarations, the node begins at the position of the first child."
3361 kids ; a Lisp list of `js2-var-init-node' structs.
3362 decl-type) ; js2-VAR, js2-CONST or js2-LET
3363
3364 (put 'cl-struct-js2-var-decl-node 'js2-visitor 'js2-visit-var-decl)
3365 (put 'cl-struct-js2-var-decl-node 'js2-printer 'js2-print-var-decl)
3366
3367 (defun js2-visit-var-decl (n v)
3368 (dolist (kid (js2-var-decl-node-kids n))
3369 (js2-visit-ast kid v)))
3370
3371 (defun js2-print-var-decl (n i)
3372 (let ((pad (js2-make-pad i))
3373 (tt (js2-var-decl-node-decl-type n)))
3374 (insert pad)
3375 (insert (cond
3376 ((= tt js2-VAR) "var ")
3377 ((= tt js2-LET) "let ")
3378 ((= tt js2-CONST) "const ")
3379 (t
3380 (error "malformed var-decl node"))))
3381 (cl-loop with kids = (js2-var-decl-node-kids n)
3382 with len = (length kids)
3383 for kid in kids
3384 for count from 1
3385 do
3386 (js2-print-ast kid 0)
3387 (if (< count len)
3388 (insert ", ")))))
3389
3390 (cl-defstruct (js2-var-init-node
3391 (:include js2-node)
3392 (:constructor nil)
3393 (:constructor make-js2-var-init-node (&key (type js2-VAR)
3394 (pos js2-ts-cursor)
3395 len target
3396 initializer)))
3397 "AST node for a variable declaration.
3398 The type field will be js2-CONST for a const decl."
3399 target ; `js2-name-node', `js2-object-node', or `js2-array-node'
3400 initializer) ; initializer expression, a `js2-node'
3401
3402 (put 'cl-struct-js2-var-init-node 'js2-visitor 'js2-visit-var-init-node)
3403 (put 'cl-struct-js2-var-init-node 'js2-printer 'js2-print-var-init-node)
3404
3405 (defun js2-visit-var-init-node (n v)
3406 (js2-visit-ast (js2-var-init-node-target n) v)
3407 (js2-visit-ast (js2-var-init-node-initializer n) v))
3408
3409 (defun js2-print-var-init-node (n i)
3410 (let ((pad (js2-make-pad i))
3411 (name (js2-var-init-node-target n))
3412 (init (js2-var-init-node-initializer n)))
3413 (insert pad)
3414 (js2-print-ast name 0)
3415 (when init
3416 (insert " = ")
3417 (js2-print-ast init 0))))
3418
3419 (cl-defstruct (js2-cond-node
3420 (:include js2-node)
3421 (:constructor nil)
3422 (:constructor make-js2-cond-node (&key (type js2-HOOK)
3423 (pos js2-ts-cursor)
3424 len
3425 test-expr
3426 true-expr
3427 false-expr
3428 q-pos c-pos)))
3429 "AST node for the ternary operator"
3430 test-expr
3431 true-expr
3432 false-expr
3433 q-pos ; buffer position of ?
3434 c-pos) ; buffer position of :
3435
3436 (put 'cl-struct-js2-cond-node 'js2-visitor 'js2-visit-cond-node)
3437 (put 'cl-struct-js2-cond-node 'js2-printer 'js2-print-cond-node)
3438
3439 (defun js2-visit-cond-node (n v)
3440 (js2-visit-ast (js2-cond-node-test-expr n) v)
3441 (js2-visit-ast (js2-cond-node-true-expr n) v)
3442 (js2-visit-ast (js2-cond-node-false-expr n) v))
3443
3444 (defun js2-print-cond-node (n i)
3445 (let ((pad (js2-make-pad i)))
3446 (insert pad)
3447 (js2-print-ast (js2-cond-node-test-expr n) 0)
3448 (insert " ? ")
3449 (js2-print-ast (js2-cond-node-true-expr n) 0)
3450 (insert " : ")
3451 (js2-print-ast (js2-cond-node-false-expr n) 0)))
3452
3453 (cl-defstruct (js2-infix-node
3454 (:include js2-node)
3455 (:constructor nil)
3456 (:constructor make-js2-infix-node (&key type
3457 (pos js2-ts-cursor)
3458 len op-pos
3459 left right)))
3460 "Represents infix expressions.
3461 Includes assignment ops like `|=', and the comma operator.
3462 The type field inherited from `js2-node' holds the operator."
3463 op-pos ; buffer position where operator begins
3464 left ; any `js2-node'
3465 right) ; any `js2-node'
3466
3467 (put 'cl-struct-js2-infix-node 'js2-visitor 'js2-visit-infix-node)
3468 (put 'cl-struct-js2-infix-node 'js2-printer 'js2-print-infix-node)
3469
3470 (defun js2-visit-infix-node (n v)
3471 (js2-visit-ast (js2-infix-node-left n) v)
3472 (js2-visit-ast (js2-infix-node-right n) v))
3473
3474 (defconst js2-operator-tokens
3475 (let ((table (make-hash-table :test 'eq))
3476 (tokens
3477 (list (cons js2-IN "in")
3478 (cons js2-TYPEOF "typeof")
3479 (cons js2-INSTANCEOF "instanceof")
3480 (cons js2-DELPROP "delete")
3481 (cons js2-AWAIT "await")
3482 (cons js2-COMMA ",")
3483 (cons js2-COLON ":")
3484 (cons js2-OR "||")
3485 (cons js2-AND "&&")
3486 (cons js2-INC "++")
3487 (cons js2-DEC "--")
3488 (cons js2-BITOR "|")
3489 (cons js2-BITXOR "^")
3490 (cons js2-BITAND "&")
3491 (cons js2-EQ "==")
3492 (cons js2-NE "!=")
3493 (cons js2-LT "<")
3494 (cons js2-LE "<=")
3495 (cons js2-GT ">")
3496 (cons js2-GE ">=")
3497 (cons js2-LSH "<<")
3498 (cons js2-RSH ">>")
3499 (cons js2-URSH ">>>")
3500 (cons js2-ADD "+") ; infix plus
3501 (cons js2-SUB "-") ; infix minus
3502 (cons js2-MUL "*")
3503 (cons js2-DIV "/")
3504 (cons js2-MOD "%")
3505 (cons js2-NOT "!")
3506 (cons js2-BITNOT "~")
3507 (cons js2-POS "+") ; unary plus
3508 (cons js2-NEG "-") ; unary minus
3509 (cons js2-TRIPLEDOT "...")
3510 (cons js2-SHEQ "===") ; shallow equality
3511 (cons js2-SHNE "!==") ; shallow inequality
3512 (cons js2-ASSIGN "=")
3513 (cons js2-ASSIGN_BITOR "|=")
3514 (cons js2-ASSIGN_BITXOR "^=")
3515 (cons js2-ASSIGN_BITAND "&=")
3516 (cons js2-ASSIGN_LSH "<<=")
3517 (cons js2-ASSIGN_RSH ">>=")
3518 (cons js2-ASSIGN_URSH ">>>=")
3519 (cons js2-ASSIGN_ADD "+=")
3520 (cons js2-ASSIGN_SUB "-=")
3521 (cons js2-ASSIGN_MUL "*=")
3522 (cons js2-ASSIGN_DIV "/=")
3523 (cons js2-ASSIGN_MOD "%="))))
3524 (cl-loop for (k . v) in tokens do
3525 (puthash k v table))
3526 table))
3527
3528 (defun js2-print-infix-node (n i)
3529 (let* ((tt (js2-node-type n))
3530 (op (gethash tt js2-operator-tokens)))
3531 (unless op
3532 (error "unrecognized infix operator %s" (js2-node-type n)))
3533 (insert (js2-make-pad i))
3534 (js2-print-ast (js2-infix-node-left n) 0)
3535 (unless (= tt js2-COMMA)
3536 (insert " "))
3537 (insert op)
3538 (insert " ")
3539 (js2-print-ast (js2-infix-node-right n) 0)))
3540
3541 (cl-defstruct (js2-assign-node
3542 (:include js2-infix-node)
3543 (:constructor nil)
3544 (:constructor make-js2-assign-node (&key type
3545 (pos js2-ts-cursor)
3546 len op-pos
3547 left right)))
3548 "Represents any assignment.
3549 The type field holds the actual assignment operator.")
3550
3551 (put 'cl-struct-js2-assign-node 'js2-visitor 'js2-visit-infix-node)
3552 (put 'cl-struct-js2-assign-node 'js2-printer 'js2-print-infix-node)
3553
3554 (cl-defstruct (js2-unary-node
3555 (:include js2-node)
3556 (:constructor nil)
3557 (:constructor make-js2-unary-node (&key type ; required
3558 (pos js2-ts-cursor)
3559 len operand)))
3560 "AST node type for unary operator nodes.
3561 The type field can be NOT, BITNOT, POS, NEG, INC, DEC,
3562 TYPEOF, DELPROP, TRIPLEDOT or AWAIT. For INC or DEC, a 'postfix node
3563 property is added if the operator follows the operand."
3564 operand) ; a `js2-node' expression
3565
3566 (put 'cl-struct-js2-unary-node 'js2-visitor 'js2-visit-unary-node)
3567 (put 'cl-struct-js2-unary-node 'js2-printer 'js2-print-unary-node)
3568
3569 (defun js2-visit-unary-node (n v)
3570 (js2-visit-ast (js2-unary-node-operand n) v))
3571
3572 (defun js2-print-unary-node (n i)
3573 (let* ((tt (js2-node-type n))
3574 (op (gethash tt js2-operator-tokens))
3575 (postfix (js2-node-get-prop n 'postfix)))
3576 (unless op
3577 (error "unrecognized unary operator %s" tt))
3578 (insert (js2-make-pad i))
3579 (unless postfix
3580 (insert op))
3581 (if (or (= tt js2-TYPEOF)
3582 (= tt js2-DELPROP)
3583 (= tt js2-AWAIT))
3584 (insert " "))
3585 (js2-print-ast (js2-unary-node-operand n) 0)
3586 (when postfix
3587 (insert op))))
3588
3589 (cl-defstruct (js2-let-node
3590 (:include js2-scope)
3591 (:constructor nil)
3592 (:constructor make-js2-let-node (&key (type js2-LETEXPR)
3593 (pos (js2-current-token-beg))
3594 len vars body
3595 lp rp)))
3596 "AST node for a let expression or a let statement.
3597 Note that a let declaration such as let x=6, y=7 is a `js2-var-decl-node'."
3598 vars ; a `js2-var-decl-node'
3599 body ; a `js2-node' representing the expression or body block
3600 lp
3601 rp)
3602
3603 (put 'cl-struct-js2-let-node 'js2-visitor 'js2-visit-let-node)
3604 (put 'cl-struct-js2-let-node 'js2-printer 'js2-print-let-node)
3605
3606 (defun js2-visit-let-node (n v)
3607 (js2-visit-ast (js2-let-node-vars n) v)
3608 (js2-visit-ast (js2-let-node-body n) v))
3609
3610 (defun js2-print-let-node (n i)
3611 (insert (js2-make-pad i) "let (")
3612 (let ((p (point)))
3613 (js2-print-ast (js2-let-node-vars n) 0)
3614 (delete-region p (+ p 4)))
3615 (insert ") ")
3616 (js2-print-ast (js2-let-node-body n) i))
3617
3618 (cl-defstruct (js2-keyword-node
3619 (:include js2-node)
3620 (:constructor nil)
3621 (:constructor make-js2-keyword-node (&key type
3622 (pos (js2-current-token-beg))
3623 (len (- js2-ts-cursor pos)))))
3624 "AST node representing a literal keyword such as `null'.
3625 Used for `null', `this', `true', `false' and `debugger'.
3626 The node type is set to js2-NULL, js2-THIS, etc.")
3627
3628 (put 'cl-struct-js2-keyword-node 'js2-visitor 'js2-visit-none)
3629 (put 'cl-struct-js2-keyword-node 'js2-printer 'js2-print-keyword-node)
3630
3631 (defun js2-print-keyword-node (n i)
3632 (insert (js2-make-pad i)
3633 (let ((tt (js2-node-type n)))
3634 (cond
3635 ((= tt js2-THIS) "this")
3636 ((= tt js2-SUPER) "super")
3637 ((= tt js2-NULL) "null")
3638 ((= tt js2-TRUE) "true")
3639 ((= tt js2-FALSE) "false")
3640 ((= tt js2-DEBUGGER) "debugger")
3641 (t (error "Invalid keyword literal type: %d" tt))))))
3642
3643 (defsubst js2-this-or-super-node-p (node)
3644 "Return t if NODE is a `js2-literal-node' of type js2-THIS or js2-SUPER."
3645 (let ((type (js2-node-type node)))
3646 (or (eq type js2-THIS) (eq type js2-SUPER))))
3647
3648 (cl-defstruct (js2-new-node
3649 (:include js2-node)
3650 (:constructor nil)
3651 (:constructor make-js2-new-node (&key (type js2-NEW)
3652 (pos (js2-current-token-beg))
3653 len target
3654 args initializer
3655 lp rp)))
3656 "AST node for new-expression such as new Foo()."
3657 target ; an identifier or reference
3658 args ; a Lisp list of argument nodes
3659 lp ; position of left-paren, nil if omitted
3660 rp ; position of right-paren, nil if omitted
3661 initializer) ; experimental Rhino syntax: optional `js2-object-node'
3662
3663 (put 'cl-struct-js2-new-node 'js2-visitor 'js2-visit-new-node)
3664 (put 'cl-struct-js2-new-node 'js2-printer 'js2-print-new-node)
3665
3666 (defun js2-visit-new-node (n v)
3667 (js2-visit-ast (js2-new-node-target n) v)
3668 (dolist (arg (js2-new-node-args n))
3669 (js2-visit-ast arg v))
3670 (js2-visit-ast (js2-new-node-initializer n) v))
3671
3672 (defun js2-print-new-node (n i)
3673 (insert (js2-make-pad i) "new ")
3674 (js2-print-ast (js2-new-node-target n))
3675 (insert "(")
3676 (js2-print-list (js2-new-node-args n))
3677 (insert ")")
3678 (when (js2-new-node-initializer n)
3679 (insert " ")
3680 (js2-print-ast (js2-new-node-initializer n))))
3681
3682 (cl-defstruct (js2-name-node
3683 (:include js2-node)
3684 (:constructor nil)
3685 (:constructor make-js2-name-node (&key (type js2-NAME)
3686 (pos (js2-current-token-beg))
3687 (len (- js2-ts-cursor
3688 (js2-current-token-beg)))
3689 (name (js2-current-token-string)))))
3690 "AST node for a JavaScript identifier"
3691 name ; a string
3692 scope) ; a `js2-scope' (optional, used for codegen)
3693
3694 (put 'cl-struct-js2-name-node 'js2-visitor 'js2-visit-none)
3695 (put 'cl-struct-js2-name-node 'js2-printer 'js2-print-name-node)
3696
3697 (defun js2-print-name-node (n i)
3698 (insert (js2-make-pad i)
3699 (js2-name-node-name n)))
3700
3701 (defsubst js2-name-node-length (node)
3702 "Return identifier length of NODE, a `js2-name-node'.
3703 Returns 0 if NODE is nil or its identifier field is nil."
3704 (if node
3705 (length (js2-name-node-name node))
3706 0))
3707
3708 (cl-defstruct (js2-number-node
3709 (:include js2-node)
3710 (:constructor nil)
3711 (:constructor make-js2-number-node (&key (type js2-NUMBER)
3712 (pos (js2-current-token-beg))
3713 (len (- js2-ts-cursor
3714 (js2-current-token-beg)))
3715 (value (js2-current-token-string))
3716 (num-value (js2-token-number
3717 (js2-current-token)))
3718 (num-base (js2-token-number-base
3719 (js2-current-token)))
3720 (legacy-octal-p (js2-token-number-legacy-octal-p
3721 (js2-current-token))))))
3722 "AST node for a number literal."
3723 value ; the original string, e.g. "6.02e23"
3724 num-value ; the parsed number value
3725 num-base ; the number's base
3726 legacy-octal-p) ; whether the number is a legacy octal (0123 instead of 0o123)
3727
3728 (put 'cl-struct-js2-number-node 'js2-visitor 'js2-visit-none)
3729 (put 'cl-struct-js2-number-node 'js2-printer 'js2-print-number-node)
3730
3731 (defun js2-print-number-node (n i)
3732 (insert (js2-make-pad i)
3733 (number-to-string (js2-number-node-num-value n))))
3734
3735 (cl-defstruct (js2-regexp-node
3736 (:include js2-node)
3737 (:constructor nil)
3738 (:constructor make-js2-regexp-node (&key (type js2-REGEXP)
3739 (pos (js2-current-token-beg))
3740 (len (- js2-ts-cursor
3741 (js2-current-token-beg)))
3742 value flags)))
3743 "AST node for a regular expression literal."
3744 value ; the regexp string, without // delimiters
3745 flags) ; a string of flags, e.g. `mi'.
3746
3747 (put 'cl-struct-js2-regexp-node 'js2-visitor 'js2-visit-none)
3748 (put 'cl-struct-js2-regexp-node 'js2-printer 'js2-print-regexp)
3749
3750 (defun js2-print-regexp (n i)
3751 (insert (js2-make-pad i)
3752 "/"
3753 (js2-regexp-node-value n)
3754 "/")
3755 (if (js2-regexp-node-flags n)
3756 (insert (js2-regexp-node-flags n))))
3757
3758 (cl-defstruct (js2-string-node
3759 (:include js2-node)
3760 (:constructor nil)
3761 (:constructor make-js2-string-node (&key (type js2-STRING)
3762 (pos (js2-current-token-beg))
3763 (len (- js2-ts-cursor
3764 (js2-current-token-beg)))
3765 (value (js2-current-token-string)))))
3766 "String literal.
3767 Escape characters are not evaluated; e.g. \n is 2 chars in value field.
3768 You can tell the quote type by looking at the first character."
3769 value) ; the characters of the string, including the quotes
3770
3771 (put 'cl-struct-js2-string-node 'js2-visitor 'js2-visit-none)
3772 (put 'cl-struct-js2-string-node 'js2-printer 'js2-print-string-node)
3773
3774 (defun js2-print-string-node (n i)
3775 (insert (js2-make-pad i)
3776 (js2-node-string n)))
3777
3778 (cl-defstruct (js2-template-node
3779 (:include js2-node)
3780 (:constructor nil)
3781 (:constructor make-js2-template-node (&key (type js2-TEMPLATE_HEAD)
3782 beg len kids)))
3783 "Template literal."
3784 kids) ; `js2-string-node' is used for string segments, other nodes
3785 ; for substitutions inside.
3786
3787 (put 'cl-struct-js2-template-node 'js2-visitor 'js2-visit-template)
3788 (put 'cl-struct-js2-template-node 'js2-printer 'js2-print-template)
3789
3790 (defun js2-visit-template (n callback)
3791 (dolist (kid (js2-template-node-kids n))
3792 (js2-visit-ast kid callback)))
3793
3794 (defun js2-print-template (n i)
3795 (insert (js2-make-pad i))
3796 (dolist (kid (js2-template-node-kids n))
3797 (if (js2-string-node-p kid)
3798 (insert (js2-node-string kid))
3799 (js2-print-ast kid))))
3800
3801 (cl-defstruct (js2-tagged-template-node
3802 (:include js2-node)
3803 (:constructor nil)
3804 (:constructor make-js2-tagged-template-node (&key (type js2-TAGGED_TEMPLATE)
3805 beg len tag template)))
3806 "Tagged template literal."
3807 tag ; `js2-node' with the tag expression.
3808 template) ; `js2-template-node' with the template.
3809
3810 (put 'cl-struct-js2-tagged-template-node 'js2-visitor 'js2-visit-tagged-template)
3811 (put 'cl-struct-js2-tagged-template-node 'js2-printer 'js2-print-tagged-template)
3812
3813 (defun js2-visit-tagged-template (n callback)
3814 (js2-visit-ast (js2-tagged-template-node-tag n) callback)
3815 (js2-visit-ast (js2-tagged-template-node-template n) callback))
3816
3817 (defun js2-print-tagged-template (n i)
3818 (insert (js2-make-pad i))
3819 (js2-print-ast (js2-tagged-template-node-tag n))
3820 (js2-print-ast (js2-tagged-template-node-template n)))
3821
3822 (cl-defstruct (js2-array-node
3823 (:include js2-node)
3824 (:constructor nil)
3825 (:constructor make-js2-array-node (&key (type js2-ARRAYLIT)
3826 (pos js2-ts-cursor)
3827 len elems)))
3828 "AST node for an array literal."
3829 elems) ; list of expressions. [foo,,bar] yields a nil middle element.
3830
3831 (put 'cl-struct-js2-array-node 'js2-visitor 'js2-visit-array-node)
3832 (put 'cl-struct-js2-array-node 'js2-printer 'js2-print-array-node)
3833
3834 (defun js2-visit-array-node (n v)
3835 (dolist (e (js2-array-node-elems n))
3836 (js2-visit-ast e v))) ; Can be nil; e.g. [a, ,b].
3837
3838 (defun js2-print-array-node (n i)
3839 (insert (js2-make-pad i) "[")
3840 (let ((elems (js2-array-node-elems n)))
3841 (js2-print-list elems)
3842 (when (and elems (null (car (last elems))))
3843 (insert ",")))
3844 (insert "]"))
3845
3846 (cl-defstruct (js2-class-node
3847 (:include js2-object-node)
3848 (:constructor nil)
3849 (:constructor make-js2-class-node (&key (type js2-CLASS)
3850 (pos js2-ts-cursor)
3851 (form 'CLASS_STATEMENT)
3852 (name "")
3853 extends len elems)))
3854 "AST node for an class expression.
3855 `elems' is a list of `js2-object-prop-node', and `extends' is an
3856 optional `js2-expr-node'"
3857 form ; CLASS_{STATEMENT|EXPRESSION}
3858 name ; class name (a `js2-node-name', or nil if anonymous)
3859 extends ; class heritage (a `js2-expr-node', or nil if none)
3860 )
3861
3862 (put 'cl-struct-js2-class-node 'js2-visitor 'js2-visit-class-node)
3863 (put 'cl-struct-js2-class-node 'js2-printer 'js2-print-class-node)
3864
3865 (defun js2-visit-class-node (n v)
3866 (js2-visit-ast (js2-class-node-name n) v)
3867 (js2-visit-ast (js2-class-node-extends n) v)
3868 (dolist (e (js2-class-node-elems n))
3869 (js2-visit-ast e v)))
3870
3871 (defun js2-print-class-node (n i)
3872 (let* ((pad (js2-make-pad i))
3873 (name (js2-class-node-name n))
3874 (extends (js2-class-node-extends n))
3875 (elems (js2-class-node-elems n)))
3876 (insert pad "class")
3877 (when name
3878 (insert " ")
3879 (js2-print-ast name 0))
3880 (when extends
3881 (insert " extends ")
3882 (js2-print-ast extends))
3883 (insert " {")
3884 (dolist (elem elems)
3885 (insert "\n")
3886 (if (js2-node-get-prop elem 'STATIC)
3887 (progn (insert (js2-make-pad (1+ i)) "static ")
3888 (js2-print-ast elem 0)) ;; TODO(sdh): indentation isn't quite right
3889 (js2-print-ast elem (1+ i))))
3890 (insert "\n" pad "}")))
3891
3892 (cl-defstruct (js2-object-node
3893 (:include js2-node)
3894 (:constructor nil)
3895 (:constructor make-js2-object-node (&key (type js2-OBJECTLIT)
3896 (pos js2-ts-cursor)
3897 len
3898 elems)))
3899 "AST node for an object literal expression.
3900 `elems' is a list of `js2-object-prop-node'."
3901 elems)
3902
3903 (put 'cl-struct-js2-object-node 'js2-visitor 'js2-visit-object-node)
3904 (put 'cl-struct-js2-object-node 'js2-printer 'js2-print-object-node)
3905
3906 (defun js2-visit-object-node (n v)
3907 (dolist (e (js2-object-node-elems n))
3908 (js2-visit-ast e v)))
3909
3910 (defun js2-print-object-node (n i)
3911 (insert (js2-make-pad i) "{")
3912 (js2-print-list (js2-object-node-elems n))
3913 (insert "}"))
3914
3915 (cl-defstruct (js2-computed-prop-name-node
3916 (:include js2-node)
3917 (:constructor nil)
3918 (:constructor make-js2-computed-prop-name-node
3919 (&key
3920 (type js2-LB)
3921 expr
3922 (pos (js2-current-token-beg))
3923 (len (- js2-ts-cursor
3924 (js2-current-token-beg))))))
3925 "AST node for a `ComputedPropertyName'."
3926 expr)
3927
3928 (put 'cl-struct-js2-computed-prop-name-node 'js2-visitor 'js2-visit-computed-prop-name-node)
3929 (put 'cl-struct-js2-computed-prop-name-node 'js2-printer 'js2-print-computed-prop-name-node)
3930
3931 (defun js2-visit-computed-prop-name-node (n v)
3932 (js2-visit-ast (js2-computed-prop-name-node-expr n) v))
3933
3934 (defun js2-print-computed-prop-name-node (n i)
3935 (insert (js2-make-pad i) "[")
3936 (js2-print-ast (js2-computed-prop-name-node-expr n) 0)
3937 (insert "]"))
3938
3939 (cl-defstruct (js2-object-prop-node
3940 (:include js2-infix-node)
3941 (:constructor nil)
3942 (:constructor make-js2-object-prop-node (&key (type js2-COLON)
3943 (pos js2-ts-cursor)
3944 len left
3945 right op-pos)))
3946 "AST node for an object literal prop:value entry.
3947 The `left' field is the property: a name node, string node,
3948 number node or expression node. The `right' field is a
3949 `js2-node' representing the initializer value. If the property
3950 is abbreviated, the node's `SHORTHAND' property is non-nil and
3951 both fields have the same value.")
3952
3953 (put 'cl-struct-js2-object-prop-node 'js2-visitor 'js2-visit-infix-node)
3954 (put 'cl-struct-js2-object-prop-node 'js2-printer 'js2-print-object-prop-node)
3955
3956 (defun js2-print-object-prop-node (n i)
3957 (let* ((left (js2-object-prop-node-left n))
3958 (right (js2-object-prop-node-right n)))
3959 (js2-print-ast left i)
3960 (if (not (js2-node-get-prop n 'SHORTHAND))
3961 (progn
3962 (insert ": ")
3963 (js2-print-ast right 0)))))
3964
3965 (cl-defstruct (js2-method-node
3966 (:include js2-infix-node)
3967 (:constructor nil)
3968 (:constructor make-js2-method-node (&key (pos js2-ts-cursor)
3969 len left right)))
3970 "AST node for a method in an object literal or a class body.
3971 The `left' field is the `js2-name-node' naming the method.
3972 The `right' field is always an anonymous `js2-function-node' with a node
3973 property `METHOD_TYPE' set to 'GET or 'SET. ")
3974
3975 (put 'cl-struct-js2-method-node 'js2-visitor 'js2-visit-infix-node)
3976 (put 'cl-struct-js2-method-node 'js2-printer 'js2-print-method)
3977
3978 (defun js2-print-method (n i)
3979 (let* ((pad (js2-make-pad i))
3980 (left (js2-method-node-left n))
3981 (right (js2-method-node-right n))
3982 (type (js2-node-get-prop right 'METHOD_TYPE)))
3983 (insert pad)
3984 (when type
3985 (insert (cdr (assoc type '((GET . "get ")
3986 (SET . "set ")
3987 (ASYNC . "async ")
3988 (FUNCTION . ""))))))
3989 (when (and (js2-function-node-p right)
3990 (eq 'STAR (js2-function-node-generator-type right)))
3991 (insert "*"))
3992 (js2-print-ast left 0)
3993 (js2-print-ast right 0)))
3994
3995 (cl-defstruct (js2-prop-get-node
3996 (:include js2-infix-node)
3997 (:constructor nil)
3998 (:constructor make-js2-prop-get-node (&key (type js2-GETPROP)
3999 (pos js2-ts-cursor)
4000 len left right)))
4001 "AST node for a dotted property reference, e.g. foo.bar or foo().bar")
4002
4003 (put 'cl-struct-js2-prop-get-node 'js2-visitor 'js2-visit-prop-get-node)
4004 (put 'cl-struct-js2-prop-get-node 'js2-printer 'js2-print-prop-get-node)
4005
4006 (defun js2-visit-prop-get-node (n v)
4007 (js2-visit-ast (js2-prop-get-node-left n) v)
4008 (js2-visit-ast (js2-prop-get-node-right n) v))
4009
4010 (defun js2-print-prop-get-node (n i)
4011 (insert (js2-make-pad i))
4012 (js2-print-ast (js2-prop-get-node-left n) 0)
4013 (insert ".")
4014 (js2-print-ast (js2-prop-get-node-right n) 0))
4015
4016 (cl-defstruct (js2-elem-get-node
4017 (:include js2-node)
4018 (:constructor nil)
4019 (:constructor make-js2-elem-get-node (&key (type js2-GETELEM)
4020 (pos js2-ts-cursor)
4021 len target element
4022 lb rb)))
4023 "AST node for an array index expression such as foo[bar]."
4024 target ; a `js2-node' - the expression preceding the "."
4025 element ; a `js2-node' - the expression in brackets
4026 lb ; position of left-bracket, nil if omitted
4027 rb) ; position of right-bracket, nil if omitted
4028
4029 (put 'cl-struct-js2-elem-get-node 'js2-visitor 'js2-visit-elem-get-node)
4030 (put 'cl-struct-js2-elem-get-node 'js2-printer 'js2-print-elem-get-node)
4031
4032 (defun js2-visit-elem-get-node (n v)
4033 (js2-visit-ast (js2-elem-get-node-target n) v)
4034 (js2-visit-ast (js2-elem-get-node-element n) v))
4035
4036 (defun js2-print-elem-get-node (n i)
4037 (insert (js2-make-pad i))
4038 (js2-print-ast (js2-elem-get-node-target n) 0)
4039 (insert "[")
4040 (js2-print-ast (js2-elem-get-node-element n) 0)
4041 (insert "]"))
4042
4043 (cl-defstruct (js2-call-node
4044 (:include js2-node)
4045 (:constructor nil)
4046 (:constructor make-js2-call-node (&key (type js2-CALL)
4047 (pos js2-ts-cursor)
4048 len target args
4049 lp rp)))
4050 "AST node for a JavaScript function call."
4051 target ; a `js2-node' evaluating to the function to call
4052 args ; a Lisp list of `js2-node' arguments
4053 lp ; position of open-paren, or nil if missing
4054 rp) ; position of close-paren, or nil if missing
4055
4056 (put 'cl-struct-js2-call-node 'js2-visitor 'js2-visit-call-node)
4057 (put 'cl-struct-js2-call-node 'js2-printer 'js2-print-call-node)
4058
4059 (defun js2-visit-call-node (n v)
4060 (js2-visit-ast (js2-call-node-target n) v)
4061 (dolist (arg (js2-call-node-args n))
4062 (js2-visit-ast arg v)))
4063
4064 (defun js2-print-call-node (n i)
4065 (insert (js2-make-pad i))
4066 (js2-print-ast (js2-call-node-target n) 0)
4067 (insert "(")
4068 (js2-print-list (js2-call-node-args n))
4069 (insert ")"))
4070
4071 (cl-defstruct (js2-yield-node
4072 (:include js2-node)
4073 (:constructor nil)
4074 (:constructor make-js2-yield-node (&key (type js2-YIELD)
4075 (pos js2-ts-cursor)
4076 len value star-p)))
4077 "AST node for yield statement or expression."
4078 star-p ; whether it's yield*
4079 value) ; optional: value to be yielded
4080
4081 (put 'cl-struct-js2-yield-node 'js2-visitor 'js2-visit-yield-node)
4082 (put 'cl-struct-js2-yield-node 'js2-printer 'js2-print-yield-node)
4083
4084 (defun js2-visit-yield-node (n v)
4085 (js2-visit-ast (js2-yield-node-value n) v))
4086
4087 (defun js2-print-yield-node (n i)
4088 (insert (js2-make-pad i))
4089 (insert "yield")
4090 (when (js2-yield-node-star-p n)
4091 (insert "*"))
4092 (when (js2-yield-node-value n)
4093 (insert " ")
4094 (js2-print-ast (js2-yield-node-value n) 0)))
4095
4096 (cl-defstruct (js2-paren-node
4097 (:include js2-node)
4098 (:constructor nil)
4099 (:constructor make-js2-paren-node (&key (type js2-LP)
4100 (pos js2-ts-cursor)
4101 len expr)))
4102 "AST node for a parenthesized expression.
4103 In particular, used when the parens are syntactically optional,
4104 as opposed to required parens such as those enclosing an if-conditional."
4105 expr) ; `js2-node'
4106
4107 (put 'cl-struct-js2-paren-node 'js2-visitor 'js2-visit-paren-node)
4108 (put 'cl-struct-js2-paren-node 'js2-printer 'js2-print-paren-node)
4109
4110 (defun js2-visit-paren-node (n v)
4111 (js2-visit-ast (js2-paren-node-expr n) v))
4112
4113 (defun js2-print-paren-node (n i)
4114 (insert (js2-make-pad i))
4115 (insert "(")
4116 (js2-print-ast (js2-paren-node-expr n) 0)
4117 (insert ")"))
4118
4119 (cl-defstruct (js2-comp-node
4120 (:include js2-scope)
4121 (:constructor nil)
4122 (:constructor make-js2-comp-node (&key (type js2-ARRAYCOMP)
4123 (pos js2-ts-cursor)
4124 len result
4125 loops filters
4126 form)))
4127 "AST node for an Array comprehension such as [[x,y] for (x in foo) for (y in bar)]."
4128 result ; result expression (just after left-bracket)
4129 loops ; a Lisp list of `js2-comp-loop-node'
4130 filters ; a Lisp list of guard/filter expressions
4131 form ; ARRAY, LEGACY_ARRAY or STAR_GENERATOR
4132 ; SpiderMonkey also supports "legacy generator expressions", but we dont.
4133 )
4134
4135 (put 'cl-struct-js2-comp-node 'js2-visitor 'js2-visit-comp-node)
4136 (put 'cl-struct-js2-comp-node 'js2-printer 'js2-print-comp-node)
4137
4138 (defun js2-visit-comp-node (n v)
4139 (js2-visit-ast (js2-comp-node-result n) v)
4140 (dolist (l (js2-comp-node-loops n))
4141 (js2-visit-ast l v))
4142 (dolist (f (js2-comp-node-filters n))
4143 (js2-visit-ast f v)))
4144
4145 (defun js2-print-comp-node (n i)
4146 (let ((pad (js2-make-pad i))
4147 (result (js2-comp-node-result n))
4148 (loops (js2-comp-node-loops n))
4149 (filters (js2-comp-node-filters n))
4150 (legacy-p (eq (js2-comp-node-form n) 'LEGACY_ARRAY))
4151 (gen-p (eq (js2-comp-node-form n) 'STAR_GENERATOR)))
4152 (insert pad (if gen-p "(" "["))
4153 (when legacy-p
4154 (js2-print-ast result 0))
4155 (dolist (l loops)
4156 (when legacy-p
4157 (insert " "))
4158 (js2-print-ast l 0)
4159 (unless legacy-p
4160 (insert " ")))
4161 (dolist (f filters)
4162 (when legacy-p
4163 (insert " "))
4164 (insert "if (")
4165 (js2-print-ast f 0)
4166 (insert ")")
4167 (unless legacy-p
4168 (insert " ")))
4169 (unless legacy-p
4170 (js2-print-ast result 0))
4171 (insert (if gen-p ")" "]"))))
4172
4173 (cl-defstruct (js2-comp-loop-node
4174 (:include js2-for-in-node)
4175 (:constructor nil)
4176 (:constructor make-js2-comp-loop-node (&key (type js2-FOR)
4177 (pos js2-ts-cursor)
4178 len iterator
4179 object in-pos
4180 foreach-p
4181 each-pos
4182 forof-p
4183 lp rp)))
4184 "AST subtree for each 'for (foo in bar)' loop in an array comprehension.")
4185
4186 (put 'cl-struct-js2-comp-loop-node 'js2-visitor 'js2-visit-comp-loop)
4187 (put 'cl-struct-js2-comp-loop-node 'js2-printer 'js2-print-comp-loop)
4188
4189 (defun js2-visit-comp-loop (n v)
4190 (js2-visit-ast (js2-comp-loop-node-iterator n) v)
4191 (js2-visit-ast (js2-comp-loop-node-object n) v))
4192
4193 (defun js2-print-comp-loop (n _i)
4194 (insert "for ")
4195 (when (js2-comp-loop-node-foreach-p n) (insert "each "))
4196 (insert "(")
4197 (js2-print-ast (js2-comp-loop-node-iterator n) 0)
4198 (insert (if (js2-comp-loop-node-forof-p n)
4199 " of " " in "))
4200 (js2-print-ast (js2-comp-loop-node-object n) 0)
4201 (insert ")"))
4202
4203 (cl-defstruct (js2-empty-expr-node
4204 (:include js2-node)
4205 (:constructor nil)
4206 (:constructor make-js2-empty-expr-node (&key (type js2-EMPTY)
4207 (pos (js2-current-token-beg))
4208 len)))
4209 "AST node for an empty expression.")
4210
4211 (put 'cl-struct-js2-empty-expr-node 'js2-visitor 'js2-visit-none)
4212 (put 'cl-struct-js2-empty-expr-node 'js2-printer 'js2-print-none)
4213
4214 (cl-defstruct (js2-xml-node
4215 (:include js2-block-node)
4216 (:constructor nil)
4217 (:constructor make-js2-xml-node (&key (type js2-XML)
4218 (pos (js2-current-token-beg))
4219 len kids)))
4220 "AST node for initial parse of E4X literals.
4221 The kids field is a list of XML fragments, each a `js2-string-node' or
4222 a `js2-xml-js-expr-node'. Equivalent to Rhino's XmlLiteral node.")
4223
4224 (put 'cl-struct-js2-xml-node 'js2-visitor 'js2-visit-block)
4225 (put 'cl-struct-js2-xml-node 'js2-printer 'js2-print-xml-node)
4226
4227 (defun js2-print-xml-node (n i)
4228 (dolist (kid (js2-xml-node-kids n))
4229 (js2-print-ast kid i)))
4230
4231 (cl-defstruct (js2-xml-js-expr-node
4232 (:include js2-xml-node)
4233 (:constructor nil)
4234 (:constructor make-js2-xml-js-expr-node (&key (type js2-XML)
4235 (pos js2-ts-cursor)
4236 len expr)))
4237 "AST node for an embedded JavaScript {expression} in an E4X literal.
4238 The start and end fields correspond to the curly-braces."
4239 expr) ; a `js2-expr-node' of some sort
4240
4241 (put 'cl-struct-js2-xml-js-expr-node 'js2-visitor 'js2-visit-xml-js-expr)
4242 (put 'cl-struct-js2-xml-js-expr-node 'js2-printer 'js2-print-xml-js-expr)
4243
4244 (defun js2-visit-xml-js-expr (n v)
4245 (js2-visit-ast (js2-xml-js-expr-node-expr n) v))
4246
4247 (defun js2-print-xml-js-expr (n i)
4248 (insert (js2-make-pad i))
4249 (insert "{")
4250 (js2-print-ast (js2-xml-js-expr-node-expr n) 0)
4251 (insert "}"))
4252
4253 (cl-defstruct (js2-xml-dot-query-node
4254 (:include js2-infix-node)
4255 (:constructor nil)
4256 (:constructor make-js2-xml-dot-query-node (&key (type js2-DOTQUERY)
4257 (pos js2-ts-cursor)
4258 op-pos len left
4259 right rp)))
4260 "AST node for an E4X foo.(bar) filter expression.
4261 Note that the left-paren is automatically the character immediately
4262 following the dot (.) in the operator. No whitespace is permitted
4263 between the dot and the lp by the scanner."
4264 rp)
4265
4266 (put 'cl-struct-js2-xml-dot-query-node 'js2-visitor 'js2-visit-infix-node)
4267 (put 'cl-struct-js2-xml-dot-query-node 'js2-printer 'js2-print-xml-dot-query)
4268
4269 (defun js2-print-xml-dot-query (n i)
4270 (insert (js2-make-pad i))
4271 (js2-print-ast (js2-xml-dot-query-node-left n) 0)
4272 (insert ".(")
4273 (js2-print-ast (js2-xml-dot-query-node-right n) 0)
4274 (insert ")"))
4275
4276 (cl-defstruct (js2-xml-ref-node
4277 (:include js2-node)
4278 (:constructor nil)) ; abstract
4279 "Base type for E4X XML attribute-access or property-get expressions.
4280 Such expressions can take a variety of forms. The general syntax has
4281 three parts:
4282
4283 - (optional) an @ (specifying an attribute access)
4284 - (optional) a namespace (a `js2-name-node') and double-colon
4285 - (required) either a `js2-name-node' or a bracketed [expression]
4286
4287 The property-name expressions (examples: ns::name, @name) are
4288 represented as `js2-xml-prop-ref' nodes. The bracketed-expression
4289 versions (examples: ns::[name], @[name]) become `js2-xml-elem-ref' nodes.
4290
4291 This node type (or more specifically, its subclasses) will sometimes
4292 be the right-hand child of a `js2-prop-get-node' or a
4293 `js2-infix-node' of type `js2-DOTDOT', the .. xml-descendants operator.
4294 The `js2-xml-ref-node' may also be a standalone primary expression with
4295 no explicit target, which is valid in certain expression contexts such as
4296
4297 company..employee.(@id < 100)
4298
4299 in this case, the @id is a `js2-xml-ref' that is part of an infix '<'
4300 expression whose parent is a `js2-xml-dot-query-node'."
4301 namespace
4302 at-pos
4303 colon-pos)
4304
4305 (defsubst js2-xml-ref-node-attr-access-p (node)
4306 "Return non-nil if this expression began with an @-token."
4307 (and (numberp (js2-xml-ref-node-at-pos node))
4308 (cl-plusp (js2-xml-ref-node-at-pos node))))
4309
4310 (cl-defstruct (js2-xml-prop-ref-node
4311 (:include js2-xml-ref-node)
4312 (:constructor nil)
4313 (:constructor make-js2-xml-prop-ref-node (&key (type js2-REF_NAME)
4314 (pos (js2-current-token-beg))
4315 len propname
4316 namespace at-pos
4317 colon-pos)))
4318 "AST node for an E4X XML [expr] property-ref expression.
4319 The JavaScript syntax is an optional @, an optional ns::, and a name.
4320
4321 [ '@' ] [ name '::' ] name
4322
4323 Examples include name, ns::name, ns::*, *::name, *::*, @attr, @ns::attr,
4324 @ns::*, @*::attr, @*::*, and @*.
4325
4326 The node starts at the @ token, if present. Otherwise it starts at the
4327 namespace name. The node bounds extend through the closing right-bracket,
4328 or if it is missing due to a syntax error, through the end of the index
4329 expression."
4330 propname)
4331
4332 (put 'cl-struct-js2-xml-prop-ref-node 'js2-visitor 'js2-visit-xml-prop-ref-node)
4333 (put 'cl-struct-js2-xml-prop-ref-node 'js2-printer 'js2-print-xml-prop-ref-node)
4334
4335 (defun js2-visit-xml-prop-ref-node (n v)
4336 (js2-visit-ast (js2-xml-prop-ref-node-namespace n) v)
4337 (js2-visit-ast (js2-xml-prop-ref-node-propname n) v))
4338
4339 (defun js2-print-xml-prop-ref-node (n i)
4340 (insert (js2-make-pad i))
4341 (if (js2-xml-ref-node-attr-access-p n)
4342 (insert "@"))
4343 (when (js2-xml-prop-ref-node-namespace n)
4344 (js2-print-ast (js2-xml-prop-ref-node-namespace n) 0)
4345 (insert "::"))
4346 (if (js2-xml-prop-ref-node-propname n)
4347 (js2-print-ast (js2-xml-prop-ref-node-propname n) 0)))
4348
4349 (cl-defstruct (js2-xml-elem-ref-node
4350 (:include js2-xml-ref-node)
4351 (:constructor nil)
4352 (:constructor make-js2-xml-elem-ref-node (&key (type js2-REF_MEMBER)
4353 (pos (js2-current-token-beg))
4354 len expr lb rb
4355 namespace at-pos
4356 colon-pos)))
4357 "AST node for an E4X XML [expr] member-ref expression.
4358 Syntax:
4359
4360 [ '@' ] [ name '::' ] '[' expr ']'
4361
4362 Examples include ns::[expr], @ns::[expr], @[expr], *::[expr] and @*::[expr].
4363
4364 Note that the form [expr] (i.e. no namespace or attribute-qualifier)
4365 is not a legal E4X XML element-ref expression, since it's already used
4366 for standard JavaScript element-get array indexing. Hence, a
4367 `js2-xml-elem-ref-node' always has either the attribute-qualifier, a
4368 non-nil namespace node, or both.
4369
4370 The node starts at the @ token, if present. Otherwise it starts
4371 at the namespace name. The node bounds extend through the closing
4372 right-bracket, or if it is missing due to a syntax error, through the
4373 end of the index expression."
4374 expr ; the bracketed index expression
4375 lb
4376 rb)
4377
4378 (put 'cl-struct-js2-xml-elem-ref-node 'js2-visitor 'js2-visit-xml-elem-ref-node)
4379 (put 'cl-struct-js2-xml-elem-ref-node 'js2-printer 'js2-print-xml-elem-ref-node)
4380
4381 (defun js2-visit-xml-elem-ref-node (n v)
4382 (js2-visit-ast (js2-xml-elem-ref-node-namespace n) v)
4383 (js2-visit-ast (js2-xml-elem-ref-node-expr n) v))
4384
4385 (defun js2-print-xml-elem-ref-node (n i)
4386 (insert (js2-make-pad i))
4387 (if (js2-xml-ref-node-attr-access-p n)
4388 (insert "@"))
4389 (when (js2-xml-elem-ref-node-namespace n)
4390 (js2-print-ast (js2-xml-elem-ref-node-namespace n) 0)
4391 (insert "::"))
4392 (insert "[")
4393 (if (js2-xml-elem-ref-node-expr n)
4394 (js2-print-ast (js2-xml-elem-ref-node-expr n) 0))
4395 (insert "]"))
4396
4397 ;;; Placeholder nodes for when we try parsing the XML literals structurally.
4398
4399 (cl-defstruct (js2-xml-start-tag-node
4400 (:include js2-xml-node)
4401 (:constructor nil)
4402 (:constructor make-js2-xml-start-tag-node (&key (type js2-XML)
4403 (pos js2-ts-cursor)
4404 len name attrs kids
4405 empty-p)))
4406 "AST node for an XML start-tag. Not currently used.
4407 The `kids' field is a Lisp list of child content nodes."
4408 name ; a `js2-xml-name-node'
4409 attrs ; a Lisp list of `js2-xml-attr-node'
4410 empty-p) ; t if this is an empty element such as <foo bar="baz"/>
4411
4412 (put 'cl-struct-js2-xml-start-tag-node 'js2-visitor 'js2-visit-xml-start-tag)
4413 (put 'cl-struct-js2-xml-start-tag-node 'js2-printer 'js2-print-xml-start-tag)
4414
4415 (defun js2-visit-xml-start-tag (n v)
4416 (js2-visit-ast (js2-xml-start-tag-node-name n) v)
4417 (dolist (attr (js2-xml-start-tag-node-attrs n))
4418 (js2-visit-ast attr v))
4419 (js2-visit-block n v))
4420
4421 (defun js2-print-xml-start-tag (n i)
4422 (insert (js2-make-pad i) "<")
4423 (js2-print-ast (js2-xml-start-tag-node-name n) 0)
4424 (when (js2-xml-start-tag-node-attrs n)
4425 (insert " ")
4426 (js2-print-list (js2-xml-start-tag-node-attrs n) " "))
4427 (insert ">"))
4428
4429 ;; I -think- I'm going to make the parent node the corresponding start-tag,
4430 ;; and add the end-tag to the kids list of the parent as well.
4431 (cl-defstruct (js2-xml-end-tag-node
4432 (:include js2-xml-node)
4433 (:constructor nil)
4434 (:constructor make-js2-xml-end-tag-node (&key (type js2-XML)
4435 (pos js2-ts-cursor)
4436 len name)))
4437 "AST node for an XML end-tag. Not currently used."
4438 name) ; a `js2-xml-name-node'
4439
4440 (put 'cl-struct-js2-xml-end-tag-node 'js2-visitor 'js2-visit-xml-end-tag)
4441 (put 'cl-struct-js2-xml-end-tag-node 'js2-printer 'js2-print-xml-end-tag)
4442
4443 (defun js2-visit-xml-end-tag (n v)
4444 (js2-visit-ast (js2-xml-end-tag-node-name n) v))
4445
4446 (defun js2-print-xml-end-tag (n i)
4447 (insert (js2-make-pad i))
4448 (insert "</")
4449 (js2-print-ast (js2-xml-end-tag-node-name n) 0)
4450 (insert ">"))
4451
4452 (cl-defstruct (js2-xml-name-node
4453 (:include js2-xml-node)
4454 (:constructor nil)
4455 (:constructor make-js2-xml-name-node (&key (type js2-XML)
4456 (pos js2-ts-cursor)
4457 len namespace kids)))
4458 "AST node for an E4X XML name. Not currently used.
4459 Any XML name can be qualified with a namespace, hence the namespace field.
4460 Further, any E4X name can be comprised of arbitrary JavaScript {} expressions.
4461 The kids field is a list of `js2-name-node' and `js2-xml-js-expr-node'.
4462 For a simple name, the kids list has exactly one node, a `js2-name-node'."
4463 namespace) ; a `js2-string-node'
4464
4465 (put 'cl-struct-js2-xml-name-node 'js2-visitor 'js2-visit-xml-name-node)
4466 (put 'cl-struct-js2-xml-name-node 'js2-printer 'js2-print-xml-name-node)
4467
4468 (defun js2-visit-xml-name-node (n v)
4469 (js2-visit-ast (js2-xml-name-node-namespace n) v))
4470
4471 (defun js2-print-xml-name-node (n i)
4472 (insert (js2-make-pad i))
4473 (when (js2-xml-name-node-namespace n)
4474 (js2-print-ast (js2-xml-name-node-namespace n) 0)
4475 (insert "::"))
4476 (dolist (kid (js2-xml-name-node-kids n))
4477 (js2-print-ast kid 0)))
4478
4479 (cl-defstruct (js2-xml-pi-node
4480 (:include js2-xml-node)
4481 (:constructor nil)
4482 (:constructor make-js2-xml-pi-node (&key (type js2-XML)
4483 (pos js2-ts-cursor)
4484 len name attrs)))
4485 "AST node for an E4X XML processing instruction. Not currently used."
4486 name ; a `js2-xml-name-node'
4487 attrs) ; a list of `js2-xml-attr-node'
4488
4489 (put 'cl-struct-js2-xml-pi-node 'js2-visitor 'js2-visit-xml-pi-node)
4490 (put 'cl-struct-js2-xml-pi-node 'js2-printer 'js2-print-xml-pi-node)
4491
4492 (defun js2-visit-xml-pi-node (n v)
4493 (js2-visit-ast (js2-xml-pi-node-name n) v)
4494 (dolist (attr (js2-xml-pi-node-attrs n))
4495 (js2-visit-ast attr v)))
4496
4497 (defun js2-print-xml-pi-node (n i)
4498 (insert (js2-make-pad i) "<?")
4499 (js2-print-ast (js2-xml-pi-node-name n))
4500 (when (js2-xml-pi-node-attrs n)
4501 (insert " ")
4502 (js2-print-list (js2-xml-pi-node-attrs n)))
4503 (insert "?>"))
4504
4505 (cl-defstruct (js2-xml-cdata-node
4506 (:include js2-xml-node)
4507 (:constructor nil)
4508 (:constructor make-js2-xml-cdata-node (&key (type js2-XML)
4509 (pos js2-ts-cursor)
4510 len content)))
4511 "AST node for a CDATA escape section. Not currently used."
4512 content) ; a `js2-string-node' with node-property 'quote-type 'cdata
4513
4514 (put 'cl-struct-js2-xml-cdata-node 'js2-visitor 'js2-visit-xml-cdata-node)
4515 (put 'cl-struct-js2-xml-cdata-node 'js2-printer 'js2-print-xml-cdata-node)
4516
4517 (defun js2-visit-xml-cdata-node (n v)
4518 (js2-visit-ast (js2-xml-cdata-node-content n) v))
4519
4520 (defun js2-print-xml-cdata-node (n i)
4521 (insert (js2-make-pad i))
4522 (js2-print-ast (js2-xml-cdata-node-content n)))
4523
4524 (cl-defstruct (js2-xml-attr-node
4525 (:include js2-xml-node)
4526 (:constructor nil)
4527 (:constructor make-js2-attr-node (&key (type js2-XML)
4528 (pos js2-ts-cursor)
4529 len name value
4530 eq-pos quote-type)))
4531 "AST node representing a foo='bar' XML attribute value. Not yet used."
4532 name ; a `js2-xml-name-node'
4533 value ; a `js2-xml-name-node'
4534 eq-pos ; buffer position of "=" sign
4535 quote-type) ; 'single or 'double
4536
4537 (put 'cl-struct-js2-xml-attr-node 'js2-visitor 'js2-visit-xml-attr-node)
4538 (put 'cl-struct-js2-xml-attr-node 'js2-printer 'js2-print-xml-attr-node)
4539
4540 (defun js2-visit-xml-attr-node (n v)
4541 (js2-visit-ast (js2-xml-attr-node-name n) v)
4542 (js2-visit-ast (js2-xml-attr-node-value n) v))
4543
4544 (defun js2-print-xml-attr-node (n i)
4545 (let ((quote (if (eq (js2-xml-attr-node-quote-type n) 'single)
4546 "'"
4547 "\"")))
4548 (insert (js2-make-pad i))
4549 (js2-print-ast (js2-xml-attr-node-name n) 0)
4550 (insert "=" quote)
4551 (js2-print-ast (js2-xml-attr-node-value n) 0)
4552 (insert quote)))
4553
4554 (cl-defstruct (js2-xml-text-node
4555 (:include js2-xml-node)
4556 (:constructor nil)
4557 (:constructor make-js2-text-node (&key (type js2-XML)
4558 (pos js2-ts-cursor)
4559 len content)))
4560 "AST node for an E4X XML text node. Not currently used."
4561 content) ; a Lisp list of `js2-string-node' and `js2-xml-js-expr-node'
4562
4563 (put 'cl-struct-js2-xml-text-node 'js2-visitor 'js2-visit-xml-text-node)
4564 (put 'cl-struct-js2-xml-text-node 'js2-printer 'js2-print-xml-text-node)
4565
4566 (defun js2-visit-xml-text-node (n v)
4567 (js2-visit-ast (js2-xml-text-node-content n) v))
4568
4569 (defun js2-print-xml-text-node (n i)
4570 (insert (js2-make-pad i))
4571 (dolist (kid (js2-xml-text-node-content n))
4572 (js2-print-ast kid)))
4573
4574 (cl-defstruct (js2-xml-comment-node
4575 (:include js2-xml-node)
4576 (:constructor nil)
4577 (:constructor make-js2-xml-comment-node (&key (type js2-XML)
4578 (pos js2-ts-cursor)
4579 len)))
4580 "AST node for E4X XML comment. Not currently used.")
4581
4582 (put 'cl-struct-js2-xml-comment-node 'js2-visitor 'js2-visit-none)
4583 (put 'cl-struct-js2-xml-comment-node 'js2-printer 'js2-print-xml-comment)
4584
4585 (defun js2-print-xml-comment (n i)
4586 (insert (js2-make-pad i)
4587 (js2-node-string n)))
4588
4589 ;;; Node utilities
4590
4591 (defsubst js2-node-line (n)
4592 "Fetch the source line number at the start of node N.
4593 This is O(n) in the length of the source buffer; use prudently."
4594 (1+ (count-lines (point-min) (js2-node-abs-pos n))))
4595
4596 (defsubst js2-block-node-kid (n i)
4597 "Return child I of node N, or nil if there aren't that many."
4598 (nth i (js2-block-node-kids n)))
4599
4600 (defsubst js2-block-node-first (n)
4601 "Return first child of block node N, or nil if there is none."
4602 (cl-first (js2-block-node-kids n)))
4603
4604 (defun js2-node-root (n)
4605 "Return the root of the AST containing N.
4606 If N has no parent pointer, returns N."
4607 (let ((parent (js2-node-parent n)))
4608 (if parent
4609 (js2-node-root parent)
4610 n)))
4611
4612 (defsubst js2-node-short-name (n)
4613 "Return the short name of node N as a string, e.g. `js2-if-node'."
4614 (substring (symbol-name (aref n 0))
4615 (length "cl-struct-")))
4616
4617 (defun js2-node-child-list (node)
4618 "Return the child list for NODE, a Lisp list of nodes.
4619 Works for block nodes, array nodes, obj literals, funarg lists,
4620 var decls and try nodes (for catch clauses). Note that you should call
4621 `js2-block-node-kids' on the function body for the body statements.
4622 Returns nil for zero-length child lists or unsupported nodes."
4623 (cond
4624 ((js2-function-node-p node)
4625 (js2-function-node-params node))
4626 ((js2-block-node-p node)
4627 (js2-block-node-kids node))
4628 ((js2-try-node-p node)
4629 (js2-try-node-catch-clauses node))
4630 ((js2-array-node-p node)
4631 (js2-array-node-elems node))
4632 ((js2-object-node-p node)
4633 (js2-object-node-elems node))
4634 ((js2-call-node-p node)
4635 (js2-call-node-args node))
4636 ((js2-new-node-p node)
4637 (js2-new-node-args node))
4638 ((js2-var-decl-node-p node)
4639 (js2-var-decl-node-kids node))
4640 (t
4641 nil)))
4642
4643 (defun js2-node-set-child-list (node kids)
4644 "Set the child list for NODE to KIDS."
4645 (cond
4646 ((js2-function-node-p node)
4647 (setf (js2-function-node-params node) kids))
4648 ((js2-block-node-p node)
4649 (setf (js2-block-node-kids node) kids))
4650 ((js2-try-node-p node)
4651 (setf (js2-try-node-catch-clauses node) kids))
4652 ((js2-array-node-p node)
4653 (setf (js2-array-node-elems node) kids))
4654 ((js2-object-node-p node)
4655 (setf (js2-object-node-elems node) kids))
4656 ((js2-call-node-p node)
4657 (setf (js2-call-node-args node) kids))
4658 ((js2-new-node-p node)
4659 (setf (js2-new-node-args node) kids))
4660 ((js2-var-decl-node-p node)
4661 (setf (js2-var-decl-node-kids node) kids))
4662 (t
4663 (error "Unsupported node type: %s" (js2-node-short-name node))))
4664 kids)
4665
4666 ;; All because Common Lisp doesn't support multiple inheritance for defstructs.
4667 (defconst js2-paren-expr-nodes
4668 '(cl-struct-js2-comp-loop-node
4669 cl-struct-js2-comp-node
4670 cl-struct-js2-call-node
4671 cl-struct-js2-catch-node
4672 cl-struct-js2-do-node
4673 cl-struct-js2-elem-get-node
4674 cl-struct-js2-for-in-node
4675 cl-struct-js2-for-node
4676 cl-struct-js2-function-node
4677 cl-struct-js2-if-node
4678 cl-struct-js2-let-node
4679 cl-struct-js2-new-node
4680 cl-struct-js2-paren-node
4681 cl-struct-js2-switch-node
4682 cl-struct-js2-while-node
4683 cl-struct-js2-with-node
4684 cl-struct-js2-xml-dot-query-node)
4685 "Node types that can have a parenthesized child expression.
4686 In particular, nodes that respond to `js2-node-lp' and `js2-node-rp'.")
4687
4688 (defsubst js2-paren-expr-node-p (node)
4689 "Return t for nodes that typically have a parenthesized child expression.
4690 Useful for computing the indentation anchors for arg-lists and conditions.
4691 Note that it may return a false positive, for instance when NODE is
4692 a `js2-new-node' and there are no arguments or parentheses."
4693 (memq (aref node 0) js2-paren-expr-nodes))
4694
4695 ;; Fake polymorphism... yech.
4696 (defun js2-node-lp (node)
4697 "Return relative left-paren position for NODE, if applicable.
4698 For `js2-elem-get-node' structs, returns left-bracket position.
4699 Note that the position may be nil in the case of a parse error."
4700 (cond
4701 ((js2-elem-get-node-p node)
4702 (js2-elem-get-node-lb node))
4703 ((js2-loop-node-p node)
4704 (js2-loop-node-lp node))
4705 ((js2-function-node-p node)
4706 (js2-function-node-lp node))
4707 ((js2-if-node-p node)
4708 (js2-if-node-lp node))
4709 ((js2-new-node-p node)
4710 (js2-new-node-lp node))
4711 ((js2-call-node-p node)
4712 (js2-call-node-lp node))
4713 ((js2-paren-node-p node)
4714 0)
4715 ((js2-switch-node-p node)
4716 (js2-switch-node-lp node))
4717 ((js2-catch-node-p node)
4718 (js2-catch-node-lp node))
4719 ((js2-let-node-p node)
4720 (js2-let-node-lp node))
4721 ((js2-comp-node-p node)
4722 0)
4723 ((js2-with-node-p node)
4724 (js2-with-node-lp node))
4725 ((js2-xml-dot-query-node-p node)
4726 (1+ (js2-infix-node-op-pos node)))
4727 (t
4728 (error "Unsupported node type: %s" (js2-node-short-name node)))))
4729
4730 ;; Fake polymorphism... blech.
4731 (defun js2-node-rp (node)
4732 "Return relative right-paren position for NODE, if applicable.
4733 For `js2-elem-get-node' structs, returns right-bracket position.
4734 Note that the position may be nil in the case of a parse error."
4735 (cond
4736 ((js2-elem-get-node-p node)
4737 (js2-elem-get-node-rb node))
4738 ((js2-loop-node-p node)
4739 (js2-loop-node-rp node))
4740 ((js2-function-node-p node)
4741 (js2-function-node-rp node))
4742 ((js2-if-node-p node)
4743 (js2-if-node-rp node))
4744 ((js2-new-node-p node)
4745 (js2-new-node-rp node))
4746 ((js2-call-node-p node)
4747 (js2-call-node-rp node))
4748 ((js2-paren-node-p node)
4749 (1- (js2-node-len node)))
4750 ((js2-switch-node-p node)
4751 (js2-switch-node-rp node))
4752 ((js2-catch-node-p node)
4753 (js2-catch-node-rp node))
4754 ((js2-let-node-p node)
4755 (js2-let-node-rp node))
4756 ((js2-comp-node-p node)
4757 (1- (js2-node-len node)))
4758 ((js2-with-node-p node)
4759 (js2-with-node-rp node))
4760 ((js2-xml-dot-query-node-p node)
4761 (1+ (js2-xml-dot-query-node-rp node)))
4762 (t
4763 (error "Unsupported node type: %s" (js2-node-short-name node)))))
4764
4765 (defsubst js2-node-first-child (node)
4766 "Return the first element of `js2-node-child-list' for NODE."
4767 (car (js2-node-child-list node)))
4768
4769 (defsubst js2-node-last-child (node)
4770 "Return the last element of `js2-node-last-child' for NODE."
4771 (car (last (js2-node-child-list node))))
4772
4773 (defun js2-node-prev-sibling (node)
4774 "Return the previous statement in parent.
4775 Works for parents supported by `js2-node-child-list'.
4776 Returns nil if NODE is not in the parent, or PARENT is
4777 not a supported node, or if NODE is the first child."
4778 (let* ((p (js2-node-parent node))
4779 (kids (js2-node-child-list p))
4780 (sib (car kids)))
4781 (while (and kids
4782 (not (eq node (cadr kids))))
4783 (setq kids (cdr kids)
4784 sib (car kids)))
4785 sib))
4786
4787 (defun js2-node-next-sibling (node)
4788 "Return the next statement in parent block.
4789 Returns nil if NODE is not in the block, or PARENT is not
4790 a block node, or if NODE is the last statement."
4791 (let* ((p (js2-node-parent node))
4792 (kids (js2-node-child-list p)))
4793 (while (and kids
4794 (not (eq node (car kids))))
4795 (setq kids (cdr kids)))
4796 (cadr kids)))
4797
4798 (defun js2-node-find-child-before (pos parent &optional after)
4799 "Find the last child that starts before POS in parent.
4800 If AFTER is non-nil, returns first child starting after POS.
4801 POS is an absolute buffer position. PARENT is any node
4802 supported by `js2-node-child-list'.
4803 Returns nil if no applicable child is found."
4804 (let ((kids (if (js2-function-node-p parent)
4805 (js2-block-node-kids (js2-function-node-body parent))
4806 (js2-node-child-list parent)))
4807 (beg (js2-node-abs-pos (if (js2-function-node-p parent)
4808 (js2-function-node-body parent)
4809 parent)))
4810 kid result fn
4811 (continue t))
4812 (setq fn (if after '>= '<))
4813 (while (and kids continue)
4814 (setq kid (car kids))
4815 (if (funcall fn (+ beg (js2-node-pos kid)) pos)
4816 (setq result kid
4817 continue (not after))
4818 (setq continue after))
4819 (setq kids (cdr kids)))
4820 result))
4821
4822 (defun js2-node-find-child-after (pos parent)
4823 "Find first child that starts after POS in parent.
4824 POS is an absolute buffer position. PARENT is any node
4825 supported by `js2-node-child-list'.
4826 Returns nil if no applicable child is found."
4827 (js2-node-find-child-before pos parent 'after))
4828
4829 (defun js2-node-replace-child (pos parent new-node)
4830 "Replace node at index POS in PARENT with NEW-NODE.
4831 Only works for parents supported by `js2-node-child-list'."
4832 (let ((kids (js2-node-child-list parent))
4833 (i 0))
4834 (while (< i pos)
4835 (setq kids (cdr kids)
4836 i (1+ i)))
4837 (setcar kids new-node)
4838 (js2-node-add-children parent new-node)))
4839
4840 (defun js2-node-buffer (n)
4841 "Return the buffer associated with AST N.
4842 Returns nil if the buffer is not set as a property on the root
4843 node, or if parent links were not recorded during parsing."
4844 (let ((root (js2-node-root n)))
4845 (and root
4846 (js2-ast-root-p root)
4847 (js2-ast-root-buffer root))))
4848
4849 (defun js2-block-node-push (n kid)
4850 "Push js2-node KID onto the end of js2-block-node N's child list.
4851 KID is always added to the -end- of the kids list.
4852 Function also calls `js2-node-add-children' to add the parent link."
4853 (let ((kids (js2-node-child-list n)))
4854 (if kids
4855 (setcdr kids (nconc (cdr kids) (list kid)))
4856 (js2-node-set-child-list n (list kid)))
4857 (js2-node-add-children n kid)))
4858
4859 (defun js2-node-string (node)
4860 (with-current-buffer (or (js2-node-buffer node)
4861 (error "No buffer available for node %s" node))
4862 (let ((pos (js2-node-abs-pos node)))
4863 (buffer-substring-no-properties pos (+ pos (js2-node-len node))))))
4864
4865 ;; Container for storing the node we're looking for in a traversal.
4866 (js2-deflocal js2-discovered-node nil)
4867
4868 ;; Keep track of absolute node position during traversals.
4869 (js2-deflocal js2-visitor-offset nil)
4870
4871 (js2-deflocal js2-node-search-point nil)
4872
4873 (when js2-mode-dev-mode-p
4874 (defun js2-find-node-at-point ()
4875 (interactive)
4876 (let ((node (js2-node-at-point)))
4877 (message "%s" (or node "No node found at point"))))
4878 (defun js2-node-name-at-point ()
4879 (interactive)
4880 (let ((node (js2-node-at-point)))
4881 (message "%s" (if node
4882 (js2-node-short-name node)
4883 "No node found at point.")))))
4884
4885 (defun js2-node-at-point (&optional pos skip-comments)
4886 "Return AST node at POS, a buffer position, defaulting to current point.
4887 The `js2-mode-ast' variable must be set to the current parse tree.
4888 Signals an error if the AST (`js2-mode-ast') is nil.
4889 Always returns a node - if it can't find one, it returns the root.
4890 If SKIP-COMMENTS is non-nil, comment nodes are ignored."
4891 (let ((ast js2-mode-ast)
4892 result)
4893 (unless ast
4894 (error "No JavaScript AST available"))
4895 ;; Look through comments first, since they may be inside nodes that
4896 ;; would otherwise report a match.
4897 (setq pos (or pos (point))
4898 result (if (> pos (js2-node-abs-end ast))
4899 ast
4900 (if (not skip-comments)
4901 (js2-comment-at-point pos))))
4902 (unless result
4903 (setq js2-discovered-node nil
4904 js2-visitor-offset 0
4905 js2-node-search-point pos)
4906 (unwind-protect
4907 (catch 'js2-visit-done
4908 (js2-visit-ast ast #'js2-node-at-point-visitor))
4909 (setq js2-visitor-offset nil
4910 js2-node-search-point nil))
4911 (setq result js2-discovered-node))
4912 ;; may have found a comment beyond end of last child node,
4913 ;; since visiting the ast-root looks at the comment-list last.
4914 (if (and skip-comments
4915 (js2-comment-node-p result))
4916 (setq result nil))
4917 (or result js2-mode-ast)))
4918
4919 (defun js2-node-at-point-visitor (node end-p)
4920 (let ((rel-pos (js2-node-pos node))
4921 abs-pos
4922 abs-end
4923 (point js2-node-search-point))
4924 (cond
4925 (end-p
4926 ;; this evaluates to a non-nil return value, even if it's zero
4927 (cl-decf js2-visitor-offset rel-pos))
4928 ;; we already looked for comments before visiting, and don't want them now
4929 ((js2-comment-node-p node)
4930 nil)
4931 (t
4932 (setq abs-pos (cl-incf js2-visitor-offset rel-pos)
4933 ;; we only want to use the node if the point is before
4934 ;; the last character position in the node, so we decrement
4935 ;; the absolute end by 1.
4936 abs-end (+ abs-pos (js2-node-len node) -1))
4937 (cond
4938 ;; If this node starts after search-point, stop the search.
4939 ((> abs-pos point)
4940 (throw 'js2-visit-done nil))
4941 ;; If this node ends before the search-point, don't check kids.
4942 ((> point abs-end)
4943 nil)
4944 (t
4945 ;; Otherwise point is within this node, possibly in a child.
4946 (setq js2-discovered-node node)
4947 t)))))) ; keep processing kids to look for more specific match
4948
4949 (defsubst js2-block-comment-p (node)
4950 "Return non-nil if NODE is a comment node of format `jsdoc' or `block'."
4951 (and (js2-comment-node-p node)
4952 (memq (js2-comment-node-format node) '(jsdoc block))))
4953
4954 ;; TODO: put the comments in a vector and binary-search them instead
4955 (defun js2-comment-at-point (&optional pos)
4956 "Look through scanned comment nodes for one containing POS.
4957 POS is a buffer position that defaults to current point.
4958 Function returns nil if POS was not in any comment node."
4959 (let ((ast js2-mode-ast)
4960 (x (or pos (point)))
4961 beg end)
4962 (unless ast
4963 (error "No JavaScript AST available"))
4964 (catch 'done
4965 ;; Comments are stored in lexical order.
4966 (dolist (comment (js2-ast-root-comments ast) nil)
4967 (setq beg (js2-node-abs-pos comment)
4968 end (+ beg (js2-node-len comment)))
4969 (if (and (>= x beg)
4970 (<= x end))
4971 (throw 'done comment))))))
4972
4973 (defun js2-mode-find-parent-fn (node)
4974 "Find function enclosing NODE.
4975 Returns nil if NODE is not inside a function."
4976 (setq node (js2-node-parent node))
4977 (while (and node (not (js2-function-node-p node)))
4978 (setq node (js2-node-parent node)))
4979 (and (js2-function-node-p node) node))
4980
4981 (defun js2-mode-find-enclosing-fn (node)
4982 "Find function or root enclosing NODE."
4983 (if (js2-ast-root-p node)
4984 node
4985 (setq node (js2-node-parent node))
4986 (while (not (or (js2-ast-root-p node)
4987 (js2-function-node-p node)))
4988 (setq node (js2-node-parent node)))
4989 node))
4990
4991 (defun js2-mode-find-enclosing-node (beg end)
4992 "Find node fully enclosing BEG and END."
4993 (let ((node (js2-node-at-point beg))
4994 pos
4995 (continue t))
4996 (while continue
4997 (if (or (js2-ast-root-p node)
4998 (and
4999 (<= (setq pos (js2-node-abs-pos node)) beg)
5000 (>= (+ pos (js2-node-len node)) end)))
5001 (setq continue nil)
5002 (setq node (js2-node-parent node))))
5003 node))
5004
5005 (defun js2-node-parent-script-or-fn (node)
5006 "Find script or function immediately enclosing NODE.
5007 If NODE is the ast-root, returns nil."
5008 (if (js2-ast-root-p node)
5009 nil
5010 (setq node (js2-node-parent node))
5011 (while (and node (not (or (js2-function-node-p node)
5012 (js2-script-node-p node))))
5013 (setq node (js2-node-parent node)))
5014 node))
5015
5016 (defun js2-node-is-descendant (node ancestor)
5017 "Return t if NODE is a descendant of ANCESTOR."
5018 (while (and node
5019 (not (eq node ancestor)))
5020 (setq node (js2-node-parent node)))
5021 node)
5022
5023 ;;; visitor infrastructure
5024
5025 (defun js2-visit-none (_node _callback)
5026 "Visitor for AST node that have no node children."
5027 nil)
5028
5029 (defun js2-print-none (_node _indent)
5030 "Visitor for AST node with no printed representation.")
5031
5032 (defun js2-print-body (node indent)
5033 "Print a statement, or a block without braces."
5034 (if (js2-block-node-p node)
5035 (dolist (kid (js2-block-node-kids node))
5036 (js2-print-ast kid indent))
5037 (js2-print-ast node indent)))
5038
5039 (defun js2-print-list (args &optional delimiter)
5040 (cl-loop with len = (length args)
5041 for arg in args
5042 for count from 1
5043 do
5044 (when arg (js2-print-ast arg 0))
5045 (if (< count len)
5046 (insert (or delimiter ", ")))))
5047
5048 (defun js2-print-tree (ast)
5049 "Prints an AST to the current buffer.
5050 Makes `js2-ast-parent-nodes' available to the printer functions."
5051 (let ((max-lisp-eval-depth (max max-lisp-eval-depth 1500)))
5052 (js2-print-ast ast)))
5053
5054 (defun js2-print-ast (node &optional indent)
5055 "Helper function for printing AST nodes.
5056 Requires `js2-ast-parent-nodes' to be non-nil.
5057 You should use `js2-print-tree' instead of this function."
5058 (let ((printer (get (aref node 0) 'js2-printer))
5059 (i (or indent 0)))
5060 ;; TODO: wedge comments in here somewhere
5061 (if printer
5062 (funcall printer node i))))
5063
5064 (defconst js2-side-effecting-tokens
5065 (let ((tokens (make-bool-vector js2-num-tokens nil)))
5066 (dolist (tt (list js2-ASSIGN
5067 js2-ASSIGN_ADD
5068 js2-ASSIGN_BITAND
5069 js2-ASSIGN_BITOR
5070 js2-ASSIGN_BITXOR
5071 js2-ASSIGN_DIV
5072 js2-ASSIGN_LSH
5073 js2-ASSIGN_MOD
5074 js2-ASSIGN_MUL
5075 js2-ASSIGN_RSH
5076 js2-ASSIGN_SUB
5077 js2-ASSIGN_URSH
5078 js2-BLOCK
5079 js2-BREAK
5080 js2-CALL
5081 js2-CATCH
5082 js2-CATCH_SCOPE
5083 js2-CLASS
5084 js2-CONST
5085 js2-CONTINUE
5086 js2-DEBUGGER
5087 js2-DEC
5088 js2-DELPROP
5089 js2-DEL_REF
5090 js2-DO
5091 js2-ELSE
5092 js2-EMPTY
5093 js2-ENTERWITH
5094 js2-EXPORT
5095 js2-EXPR_RESULT
5096 js2-FINALLY
5097 js2-FOR
5098 js2-FUNCTION
5099 js2-GOTO
5100 js2-IF
5101 js2-IFEQ
5102 js2-IFNE
5103 js2-IMPORT
5104 js2-INC
5105 js2-JSR
5106 js2-LABEL
5107 js2-LEAVEWITH
5108 js2-LET
5109 js2-LETEXPR
5110 js2-LOCAL_BLOCK
5111 js2-LOOP
5112 js2-NEW
5113 js2-REF_CALL
5114 js2-RETHROW
5115 js2-RETURN
5116 js2-RETURN_RESULT
5117 js2-SEMI
5118 js2-SETELEM
5119 js2-SETELEM_OP
5120 js2-SETNAME
5121 js2-SETPROP
5122 js2-SETPROP_OP
5123 js2-SETVAR
5124 js2-SET_REF
5125 js2-SET_REF_OP
5126 js2-SWITCH
5127 js2-TARGET
5128 js2-THROW
5129 js2-TRY
5130 js2-VAR
5131 js2-WHILE
5132 js2-WITH
5133 js2-WITHEXPR
5134 js2-YIELD))
5135 (aset tokens tt t))
5136 (if js2-instanceof-has-side-effects
5137 (aset tokens js2-INSTANCEOF t))
5138 tokens))
5139
5140 (defun js2-node-has-side-effects (node)
5141 "Return t if NODE has side effects."
5142 (when node ; makes it easier to handle malformed expressions
5143 (let ((tt (js2-node-type node)))
5144 (cond
5145 ;; This doubtless needs some work, since EXPR_VOID is used
5146 ;; in several ways in Rhino and I may not have caught them all.
5147 ;; I'll wait for people to notice incorrect warnings.
5148 ((and (= tt js2-EXPR_VOID)
5149 (js2-expr-stmt-node-p node)) ; but not if EXPR_RESULT
5150 (let ((expr (js2-expr-stmt-node-expr node)))
5151 (or (js2-node-has-side-effects expr)
5152 (when (js2-string-node-p expr)
5153 (member (js2-string-node-value expr) '("use strict" "use asm"))))))
5154 ((= tt js2-AWAIT)
5155 (js2-node-has-side-effects (js2-unary-node-operand node)))
5156 ((= tt js2-COMMA)
5157 (js2-node-has-side-effects (js2-infix-node-right node)))
5158 ((or (= tt js2-AND)
5159 (= tt js2-OR))
5160 (or (js2-node-has-side-effects (js2-infix-node-right node))
5161 (js2-node-has-side-effects (js2-infix-node-left node))))
5162 ((= tt js2-HOOK)
5163 (and (js2-node-has-side-effects (js2-cond-node-true-expr node))
5164 (js2-node-has-side-effects (js2-cond-node-false-expr node))))
5165 ((js2-paren-node-p node)
5166 (js2-node-has-side-effects (js2-paren-node-expr node)))
5167 ((= tt js2-ERROR) ; avoid cascaded error messages
5168 nil)
5169 (t
5170 (aref js2-side-effecting-tokens tt))))))
5171
5172 (defconst js2-stmt-node-types
5173 (list js2-BLOCK
5174 js2-BREAK
5175 js2-CONTINUE
5176 js2-DEFAULT ; e4x "default xml namespace" statement
5177 js2-DO
5178 js2-EXPORT
5179 js2-EXPR_RESULT
5180 js2-EXPR_VOID
5181 js2-FOR
5182 js2-IF
5183 js2-IMPORT
5184 js2-RETURN
5185 js2-SWITCH
5186 js2-THROW
5187 js2-TRY
5188 js2-WHILE
5189 js2-WITH)
5190 "Node types that only appear in statement contexts.
5191 The list does not include nodes that always appear as the child
5192 of another specific statement type, such as switch-cases,
5193 catch and finally blocks, and else-clauses. The list also excludes
5194 nodes like yield, let and var, which may appear in either expression
5195 or statement context, and in the latter context always have a
5196 `js2-expr-stmt-node' parent. Finally, the list does not include
5197 functions or scripts, which are treated separately from statements
5198 by the JavaScript parser and runtime.")
5199
5200 (defun js2-stmt-node-p (node)
5201 "Heuristic for figuring out if NODE is a statement.
5202 Some node types can appear in either an expression context or a
5203 statement context, e.g. let-nodes, yield-nodes, and var-decl nodes.
5204 For these node types in a statement context, the parent will be a
5205 `js2-expr-stmt-node'.
5206 Functions aren't included in the check."
5207 (memq (js2-node-type node) js2-stmt-node-types))
5208
5209 (defun js2-mode-find-first-stmt (node)
5210 "Search upward starting from NODE looking for a statement.
5211 For purposes of this function, a `js2-function-node' counts."
5212 (while (not (or (js2-stmt-node-p node)
5213 (js2-function-node-p node)))
5214 (setq node (js2-node-parent node)))
5215 node)
5216
5217 (defun js2-node-parent-stmt (node)
5218 "Return the node's first ancestor that is a statement.
5219 Returns nil if NODE is a `js2-ast-root'. Note that any expression
5220 appearing in a statement context will have a parent that is a
5221 `js2-expr-stmt-node' that will be returned by this function."
5222 (let ((parent (js2-node-parent node)))
5223 (if (or (null parent)
5224 (js2-stmt-node-p parent)
5225 (and (js2-function-node-p parent)
5226 (not (eq (js2-function-node-form parent)
5227 'FUNCTION_EXPRESSION))))
5228 parent
5229 (js2-node-parent-stmt parent))))
5230
5231 ;; In the Mozilla Rhino sources, Roshan James writes:
5232 ;; Does consistent-return analysis on the function body when strict mode is
5233 ;; enabled.
5234 ;;
5235 ;; function (x) { return (x+1) }
5236 ;;
5237 ;; is ok, but
5238 ;;
5239 ;; function (x) { if (x < 0) return (x+1); }
5240 ;;
5241 ;; is not because the function can potentially return a value when the
5242 ;; condition is satisfied and if not, the function does not explicitly
5243 ;; return a value.
5244 ;;
5245 ;; This extends to checking mismatches such as "return" and "return <value>"
5246 ;; used in the same function. Warnings are not emitted if inconsistent
5247 ;; returns exist in code that can be statically shown to be unreachable.
5248 ;; Ex.
5249 ;; function (x) { while (true) { ... if (..) { return value } ... } }
5250 ;;
5251 ;; emits no warning. However if the loop had a break statement, then a
5252 ;; warning would be emitted.
5253 ;;
5254 ;; The consistency analysis looks at control structures such as loops, ifs,
5255 ;; switch, try-catch-finally blocks, examines the reachable code paths and
5256 ;; warns the user about an inconsistent set of termination possibilities.
5257 ;;
5258 ;; These flags enumerate the possible ways a statement/function can
5259 ;; terminate. These flags are used by endCheck() and by the Parser to
5260 ;; detect inconsistent return usage.
5261 ;;
5262 ;; END_UNREACHED is reserved for code paths that are assumed to always be
5263 ;; able to execute (example: throw, continue)
5264 ;;
5265 ;; END_DROPS_OFF indicates if the statement can transfer control to the
5266 ;; next one. Statement such as return dont. A compound statement may have
5267 ;; some branch that drops off control to the next statement.
5268 ;;
5269 ;; END_RETURNS indicates that the statement can return with no value.
5270 ;; END_RETURNS_VALUE indicates that the statement can return a value.
5271 ;;
5272 ;; A compound statement such as
5273 ;; if (condition) {
5274 ;; return value;
5275 ;; }
5276 ;; Will be detected as (END_DROPS_OFF | END_RETURN_VALUE) by endCheck()
5277
5278 (defconst js2-END_UNREACHED 0)
5279 (defconst js2-END_DROPS_OFF 1)
5280 (defconst js2-END_RETURNS 2)
5281 (defconst js2-END_RETURNS_VALUE 4)
5282 (defconst js2-END_YIELDS 8)
5283
5284 (defun js2-has-consistent-return-usage (node)
5285 "Check that every return usage in a function body is consistent.
5286 Returns t if the function satisfies strict mode requirement."
5287 (let ((n (js2-end-check node)))
5288 ;; either it doesn't return a value in any branch...
5289 (or (js2-flag-not-set-p n js2-END_RETURNS_VALUE)
5290 ;; or it returns a value (or is unreached) at every branch
5291 (js2-flag-not-set-p n (logior js2-END_DROPS_OFF
5292 js2-END_RETURNS
5293 js2-END_YIELDS)))))
5294
5295 (defun js2-end-check-if (node)
5296 "Ensure that return usage in then/else blocks is consistent.
5297 If there is no else block, then the return statement can fall through.
5298 Returns logical OR of END_* flags"
5299 (let ((th (js2-if-node-then-part node))
5300 (el (js2-if-node-else-part node)))
5301 (if (null th)
5302 js2-END_UNREACHED
5303 (logior (js2-end-check th) (if el
5304 (js2-end-check el)
5305 js2-END_DROPS_OFF)))))
5306
5307 (defun js2-end-check-switch (node)
5308 "Consistency of return statements is checked between the case statements.
5309 If there is no default, then the switch can fall through. If there is a
5310 default, we check to see if all code paths in the default return or if
5311 there is a code path that can fall through.
5312 Returns logical OR of END_* flags."
5313 (let ((rv js2-END_UNREACHED)
5314 default-case)
5315 ;; examine the cases
5316 (catch 'break
5317 (dolist (c (js2-switch-node-cases node))
5318 (if (js2-case-node-expr c)
5319 (js2-set-flag rv (js2-end-check-block c))
5320 (setq default-case c)
5321 (throw 'break nil))))
5322 ;; we don't care how the cases drop into each other
5323 (js2-clear-flag rv js2-END_DROPS_OFF)
5324 ;; examine the default
5325 (js2-set-flag rv (if default-case
5326 (js2-end-check default-case)
5327 js2-END_DROPS_OFF))
5328 rv))
5329
5330 (defun js2-end-check-try (node)
5331 "If the block has a finally, return consistency is checked in the
5332 finally block. If all code paths in the finally return, then the
5333 returns in the try-catch blocks don't matter. If there is a code path
5334 that does not return or if there is no finally block, the returns
5335 of the try and catch blocks are checked for mismatch.
5336 Returns logical OR of END_* flags."
5337 (let ((finally (js2-try-node-finally-block node))
5338 rv)
5339 ;; check the finally if it exists
5340 (setq rv (if finally
5341 (js2-end-check (js2-finally-node-body finally))
5342 js2-END_DROPS_OFF))
5343 ;; If the finally block always returns, then none of the returns
5344 ;; in the try or catch blocks matter.
5345 (when (js2-flag-set-p rv js2-END_DROPS_OFF)
5346 (js2-clear-flag rv js2-END_DROPS_OFF)
5347 ;; examine the try block
5348 (js2-set-flag rv (js2-end-check (js2-try-node-try-block node)))
5349 ;; check each catch block
5350 (dolist (cb (js2-try-node-catch-clauses node))
5351 (js2-set-flag rv (js2-end-check cb))))
5352 rv))
5353
5354 (defun js2-end-check-loop (node)
5355 "Return statement in the loop body must be consistent.
5356 The default assumption for any kind of a loop is that it will eventually
5357 terminate. The only exception is a loop with a constant true condition.
5358 Code that follows such a loop is examined only if one can determine
5359 statically that there is a break out of the loop.
5360
5361 for(... ; ... ; ...) {}
5362 for(... in ... ) {}
5363 while(...) { }
5364 do { } while(...)
5365
5366 Returns logical OR of END_* flags."
5367 (let ((rv (js2-end-check (js2-loop-node-body node)))
5368 (condition (cond
5369 ((js2-while-node-p node)
5370 (js2-while-node-condition node))
5371 ((js2-do-node-p node)
5372 (js2-do-node-condition node))
5373 ((js2-for-node-p node)
5374 (js2-for-node-condition node)))))
5375
5376 ;; check to see if the loop condition is always true
5377 (if (and condition
5378 (eq (js2-always-defined-boolean-p condition) 'ALWAYS_TRUE))
5379 (js2-clear-flag rv js2-END_DROPS_OFF))
5380
5381 ;; look for effect of breaks
5382 (js2-set-flag rv (js2-node-get-prop node
5383 'CONTROL_BLOCK_PROP
5384 js2-END_UNREACHED))
5385 rv))
5386
5387 (defun js2-end-check-block (node)
5388 "A general block of code is examined statement by statement.
5389 If any statement (even a compound one) returns in all branches, then
5390 subsequent statements are not examined.
5391 Returns logical OR of END_* flags."
5392 (let* ((rv js2-END_DROPS_OFF)
5393 (kids (js2-block-node-kids node))
5394 (n (car kids)))
5395 ;; Check each statement. If the statement can continue onto the next
5396 ;; one (i.e. END_DROPS_OFF is set), then check the next statement.
5397 (while (and n (js2-flag-set-p rv js2-END_DROPS_OFF))
5398 (js2-clear-flag rv js2-END_DROPS_OFF)
5399 (js2-set-flag rv (js2-end-check n))
5400 (setq kids (cdr kids)
5401 n (car kids)))
5402 rv))
5403
5404 (defun js2-end-check-label (node)
5405 "A labeled statement implies that there may be a break to the label.
5406 The function processes the labeled statement and then checks the
5407 CONTROL_BLOCK_PROP property to see if there is ever a break to the
5408 particular label.
5409 Returns logical OR of END_* flags."
5410 (let ((rv (js2-end-check (js2-labeled-stmt-node-stmt node))))
5411 (logior rv (js2-node-get-prop node
5412 'CONTROL_BLOCK_PROP
5413 js2-END_UNREACHED))))
5414
5415 (defun js2-end-check-break (node)
5416 "When a break is encountered annotate the statement being broken
5417 out of by setting its CONTROL_BLOCK_PROP property.
5418 Returns logical OR of END_* flags."
5419 (and (js2-break-node-target node)
5420 (js2-node-set-prop (js2-break-node-target node)
5421 'CONTROL_BLOCK_PROP
5422 js2-END_DROPS_OFF))
5423 js2-END_UNREACHED)
5424
5425 (defun js2-end-check (node)
5426 "Examine the body of a function, doing a basic reachability analysis.
5427 Returns a combination of flags END_* flags that indicate
5428 how the function execution can terminate. These constitute only the
5429 pessimistic set of termination conditions. It is possible that at
5430 runtime certain code paths will never be actually taken. Hence this
5431 analysis will flag errors in cases where there may not be errors.
5432 Returns logical OR of END_* flags"
5433 (let (kid)
5434 (cond
5435 ((js2-break-node-p node)
5436 (js2-end-check-break node))
5437 ((js2-expr-stmt-node-p node)
5438 (if (setq kid (js2-expr-stmt-node-expr node))
5439 (js2-end-check kid)
5440 js2-END_DROPS_OFF))
5441 ((or (js2-continue-node-p node)
5442 (js2-throw-node-p node))
5443 js2-END_UNREACHED)
5444 ((js2-return-node-p node)
5445 (if (setq kid (js2-return-node-retval node))
5446 js2-END_RETURNS_VALUE
5447 js2-END_RETURNS))
5448 ((js2-loop-node-p node)
5449 (js2-end-check-loop node))
5450 ((js2-switch-node-p node)
5451 (js2-end-check-switch node))
5452 ((js2-labeled-stmt-node-p node)
5453 (js2-end-check-label node))
5454 ((js2-if-node-p node)
5455 (js2-end-check-if node))
5456 ((js2-try-node-p node)
5457 (js2-end-check-try node))
5458 ((js2-block-node-p node)
5459 (if (null (js2-block-node-kids node))
5460 js2-END_DROPS_OFF
5461 (js2-end-check-block node)))
5462 ((js2-yield-node-p node)
5463 js2-END_YIELDS)
5464 (t
5465 js2-END_DROPS_OFF))))
5466
5467 (defun js2-always-defined-boolean-p (node)
5468 "Check if NODE always evaluates to true or false in boolean context.
5469 Returns 'ALWAYS_TRUE, 'ALWAYS_FALSE, or nil if it's neither always true
5470 nor always false."
5471 (let ((tt (js2-node-type node))
5472 num)
5473 (cond
5474 ((or (= tt js2-FALSE) (= tt js2-NULL))
5475 'ALWAYS_FALSE)
5476 ((= tt js2-TRUE)
5477 'ALWAYS_TRUE)
5478 ((= tt js2-NUMBER)
5479 (setq num (js2-number-node-num-value node))
5480 (if (and (not (eq num 0.0e+NaN))
5481 (not (zerop num)))
5482 'ALWAYS_TRUE
5483 'ALWAYS_FALSE))
5484 (t
5485 nil))))
5486
5487 ;;; Scanner -- a port of Mozilla Rhino's lexer.
5488 ;; Corresponds to Rhino files Token.java and TokenStream.java.
5489
5490 (defvar js2-tokens nil
5491 "List of all defined token names.") ; initialized in `js2-token-names'
5492
5493 (defconst js2-token-names
5494 (let* ((names (make-vector js2-num-tokens -1))
5495 (case-fold-search nil) ; only match js2-UPPER_CASE
5496 (syms (apropos-internal "^js2-\\(?:[[:upper:]_]+\\)")))
5497 (cl-loop for sym in syms
5498 for i from 0
5499 do
5500 (unless (or (memq sym '(js2-EOF_CHAR js2-ERROR))
5501 (not (boundp sym)))
5502 (aset names (symbol-value sym) ; code, e.g. 152
5503 (downcase
5504 (substring (symbol-name sym) 4))) ; name, e.g. "let"
5505 (push sym js2-tokens)))
5506 names)
5507 "Vector mapping int values to token string names, sans `js2-' prefix.")
5508
5509 (defun js2-tt-name (tok)
5510 "Return a string name for TOK, a token symbol or code.
5511 Signals an error if it's not a recognized token."
5512 (let ((code tok))
5513 (if (symbolp tok)
5514 (setq code (symbol-value tok)))
5515 (if (eq code -1)
5516 "ERROR"
5517 (if (and (numberp code)
5518 (not (cl-minusp code))
5519 (< code js2-num-tokens))
5520 (aref js2-token-names code)
5521 (error "Invalid token: %s" code)))))
5522
5523 (defsubst js2-tt-sym (tok)
5524 "Return symbol for TOK given its code, e.g. 'js2-LP for code 86."
5525 (intern (js2-tt-name tok)))
5526
5527 (defconst js2-token-codes
5528 (let ((table (make-hash-table :test 'eq :size 256)))
5529 (cl-loop for name across js2-token-names
5530 for sym = (intern (concat "js2-" (upcase name)))
5531 do
5532 (puthash sym (symbol-value sym) table))
5533 ;; clean up a few that are "wrong" in Rhino's token codes
5534 (puthash 'js2-DELETE js2-DELPROP table)
5535 table)
5536 "Hashtable mapping token type symbols to their bytecodes.")
5537
5538 (defsubst js2-tt-code (sym)
5539 "Return code for token symbol SYM, e.g. 86 for 'js2-LP."
5540 (or (gethash sym js2-token-codes)
5541 (error "Invalid token symbol: %s " sym))) ; signal code bug
5542
5543 (defun js2-report-scan-error (msg &optional no-throw beg len)
5544 (setf (js2-token-end (js2-current-token)) js2-ts-cursor)
5545 (js2-report-error msg nil
5546 (or beg (js2-current-token-beg))
5547 (or len (js2-current-token-len)))
5548 (unless no-throw
5549 (throw 'return js2-ERROR)))
5550
5551 (defun js2-set-string-from-buffer (token)
5552 "Set `string' and `end' slots for TOKEN, return the string."
5553 (setf (js2-token-end token) js2-ts-cursor
5554 (js2-token-string token) (js2-collect-string js2-ts-string-buffer)))
5555
5556 ;; TODO: could potentially avoid a lot of consing by allocating a
5557 ;; char buffer the way Rhino does.
5558 (defsubst js2-add-to-string (c)
5559 (push c js2-ts-string-buffer))
5560
5561 ;; Note that when we "read" the end-of-file, we advance js2-ts-cursor
5562 ;; to (1+ (point-max)), which lets the scanner treat end-of-file like
5563 ;; any other character: when it's not part of the current token, we
5564 ;; unget it, allowing it to be read again by the following call.
5565 (defsubst js2-unget-char ()
5566 (cl-decf js2-ts-cursor))
5567
5568 ;; Rhino distinguishes \r and \n line endings. We don't need to
5569 ;; because we only scan from Emacs buffers, which always use \n.
5570 (defun js2-get-char ()
5571 "Read and return the next character from the input buffer.
5572 Increments `js2-ts-lineno' if the return value is a newline char.
5573 Updates `js2-ts-cursor' to the point after the returned char.
5574 Returns `js2-EOF_CHAR' if we hit the end of the buffer.
5575 Also updates `js2-ts-hit-eof' and `js2-ts-line-start' as needed."
5576 (let (c)
5577 ;; check for end of buffer
5578 (if (>= js2-ts-cursor (point-max))
5579 (setq js2-ts-hit-eof t
5580 js2-ts-cursor (1+ js2-ts-cursor)
5581 c js2-EOF_CHAR) ; return value
5582 ;; otherwise read next char
5583 (setq c (char-before (cl-incf js2-ts-cursor)))
5584 ;; if we read a newline, update counters
5585 (if (= c ?\n)
5586 (setq js2-ts-line-start js2-ts-cursor
5587 js2-ts-lineno (1+ js2-ts-lineno)))
5588 ;; TODO: skip over format characters
5589 c)))
5590
5591 (defun js2-read-unicode-escape ()
5592 "Read a \\uNNNN sequence from the input.
5593 Assumes the ?\ and ?u have already been read.
5594 Returns the unicode character, or nil if it wasn't a valid character.
5595 Doesn't change the values of any scanner variables."
5596 ;; I really wish I knew a better way to do this, but I can't
5597 ;; find the Emacs function that takes a 16-bit int and converts
5598 ;; it to a Unicode/utf-8 character. So I basically eval it with (read).
5599 ;; Have to first check that it's 4 hex characters or it may stop
5600 ;; the read early.
5601 (ignore-errors
5602 (let ((s (buffer-substring-no-properties js2-ts-cursor
5603 (+ 4 js2-ts-cursor))))
5604 (if (string-match "[0-9a-fA-F]\\{4\\}" s)
5605 (read (concat "?\\u" s))))))
5606
5607 (defun js2-match-char (test)
5608 "Consume and return next character if it matches TEST, a character.
5609 Returns nil and consumes nothing if TEST is not the next character."
5610 (let ((c (js2-get-char)))
5611 (if (eq c test)
5612 t
5613 (js2-unget-char)
5614 nil)))
5615
5616 (defun js2-peek-char ()
5617 (prog1
5618 (js2-get-char)
5619 (js2-unget-char)))
5620
5621 (defun js2-identifier-start-p (c)
5622 "Is C a valid start to an ES5 Identifier?
5623 See http://es5.github.io/#x7.6"
5624 (or
5625 (memq c '(?$ ?_))
5626 (memq (get-char-code-property c 'general-category)
5627 ;; Letters
5628 '(Lu Ll Lt Lm Lo Nl))))
5629
5630 (defun js2-identifier-part-p (c)
5631 "Is C a valid part of an ES5 Identifier?
5632 See http://es5.github.io/#x7.6"
5633 (or
5634 (memq c '(?$ ?_ ?\u200c ?\u200d))
5635 (memq (get-char-code-property c 'general-category)
5636 '(;; Letters
5637 Lu Ll Lt Lm Lo Nl
5638 ;; Combining Marks
5639 Mn Mc
5640 ;; Digits
5641 Nd
5642 ;; Connector Punctuation
5643 Pc))))
5644
5645 (defun js2-alpha-p (c)
5646 (cond ((and (<= ?A c) (<= c ?Z)) t)
5647 ((and (<= ?a c) (<= c ?z)) t)
5648 (t nil)))
5649
5650 (defsubst js2-digit-p (c)
5651 (and (<= ?0 c) (<= c ?9)))
5652
5653 (defun js2-js-space-p (c)
5654 (if (<= c 127)
5655 (memq c '(#x20 #x9 #xB #xC #xD))
5656 (or
5657 (eq c #xA0)
5658 ;; TODO: change this nil to check for Unicode space character
5659 nil)))
5660
5661 (defconst js2-eol-chars (list js2-EOF_CHAR ?\n ?\r))
5662
5663 (defun js2-skip-line ()
5664 "Skip to end of line."
5665 (while (not (memq (js2-get-char) js2-eol-chars)))
5666 (js2-unget-char)
5667 (setf (js2-token-end (js2-current-token)) js2-ts-cursor))
5668
5669 (defun js2-init-scanner (&optional buf line)
5670 "Create token stream for BUF starting on LINE.
5671 BUF defaults to `current-buffer' and LINE defaults to 1.
5672
5673 A buffer can only have one scanner active at a time, which yields
5674 dramatically simpler code than using a defstruct. If you need to
5675 have simultaneous scanners in a buffer, copy the regions to scan
5676 into temp buffers."
5677 (with-current-buffer (or buf (current-buffer))
5678 (setq js2-ts-dirty-line nil
5679 js2-ts-hit-eof nil
5680 js2-ts-line-start 0
5681 js2-ts-lineno (or line 1)
5682 js2-ts-line-end-char -1
5683 js2-ts-cursor (point-min)
5684 js2-ti-tokens (make-vector js2-ti-ntokens nil)
5685 js2-ti-tokens-cursor 0
5686 js2-ti-lookahead 0
5687 js2-ts-is-xml-attribute nil
5688 js2-ts-xml-is-tag-content nil
5689 js2-ts-xml-open-tags-count 0
5690 js2-ts-string-buffer nil)))
5691
5692 ;; This function uses the cached op, string and number fields in
5693 ;; TokenStream; if getToken has been called since the passed token
5694 ;; was scanned, the op or string printed may be incorrect.
5695 (defun js2-token-to-string (token)
5696 ;; Not sure where this function is used in Rhino. Not tested.
5697 (if (not js2-debug-print-trees)
5698 ""
5699 (let ((name (js2-tt-name token)))
5700 (cond
5701 ((memq token '(js2-STRING js2-REGEXP js2-NAME
5702 js2-TEMPLATE_HEAD js2-NO_SUBS_TEMPLATE))
5703 (concat name " `" (js2-current-token-string) "'"))
5704 ((eq token js2-NUMBER)
5705 (format "NUMBER %g" (js2-token-number (js2-current-token))))
5706 (t
5707 name)))))
5708
5709 (defconst js2-keywords
5710 '(break
5711 case catch class const continue
5712 debugger default delete do
5713 else extends export
5714 false finally for function
5715 if in instanceof import
5716 let
5717 new null
5718 return
5719 super switch
5720 this throw true try typeof
5721 var void
5722 while with
5723 yield))
5724
5725 ;; Token names aren't exactly the same as the keywords, unfortunately.
5726 ;; E.g. delete is js2-DELPROP.
5727 (defconst js2-kwd-tokens
5728 (let ((table (make-vector js2-num-tokens nil))
5729 (tokens
5730 (list js2-BREAK
5731 js2-CASE js2-CATCH js2-CLASS js2-CONST js2-CONTINUE
5732 js2-DEBUGGER js2-DEFAULT js2-DELPROP js2-DO
5733 js2-ELSE js2-EXPORT
5734 js2-ELSE js2-EXTENDS js2-EXPORT
5735 js2-FALSE js2-FINALLY js2-FOR js2-FUNCTION
5736 js2-IF js2-IN js2-INSTANCEOF js2-IMPORT
5737 js2-LET
5738 js2-NEW js2-NULL
5739 js2-RETURN
5740 js2-SUPER js2-SWITCH
5741 js2-THIS js2-THROW js2-TRUE js2-TRY js2-TYPEOF
5742 js2-VAR
5743 js2-WHILE js2-WITH
5744 js2-YIELD)))
5745 (dolist (i tokens)
5746 (aset table i 'font-lock-keyword-face))
5747 (aset table js2-STRING 'font-lock-string-face)
5748 (aset table js2-REGEXP 'font-lock-string-face)
5749 (aset table js2-NO_SUBS_TEMPLATE 'font-lock-string-face)
5750 (aset table js2-TEMPLATE_HEAD 'font-lock-string-face)
5751 (aset table js2-COMMENT 'font-lock-comment-face)
5752 (aset table js2-THIS 'font-lock-builtin-face)
5753 (aset table js2-SUPER 'font-lock-builtin-face)
5754 (aset table js2-VOID 'font-lock-constant-face)
5755 (aset table js2-NULL 'font-lock-constant-face)
5756 (aset table js2-TRUE 'font-lock-constant-face)
5757 (aset table js2-FALSE 'font-lock-constant-face)
5758 (aset table js2-NOT 'font-lock-negation-char-face)
5759 table)
5760 "Vector whose values are non-nil for tokens that are keywords.
5761 The values are default faces to use for highlighting the keywords.")
5762
5763 ;; FIXME: Support strict mode-only future reserved words, after we know
5764 ;; which parts scopes are in strict mode, and which are not.
5765 (defconst js2-reserved-words '(class enum export extends import static super)
5766 "Future reserved keywords in ECMAScript 5.1.")
5767
5768 (defconst js2-keyword-names
5769 (let ((table (make-hash-table :test 'equal)))
5770 (cl-loop for k in js2-keywords
5771 do (puthash
5772 (symbol-name k) ; instanceof
5773 (intern (concat "js2-"
5774 (upcase (symbol-name k)))) ; js2-INSTANCEOF
5775 table))
5776 table)
5777 "JavaScript keywords by name, mapped to their symbols.")
5778
5779 (defconst js2-reserved-word-names
5780 (let ((table (make-hash-table :test 'equal)))
5781 (cl-loop for k in js2-reserved-words
5782 do
5783 (puthash (symbol-name k) 'js2-RESERVED table))
5784 table)
5785 "JavaScript reserved words by name, mapped to 'js2-RESERVED.")
5786
5787 (defun js2-collect-string (buf)
5788 "Convert BUF, a list of chars, to a string.
5789 Reverses BUF before converting."
5790 (if buf
5791 (apply #'string (nreverse buf))
5792 ""))
5793
5794 (defun js2-string-to-keyword (s)
5795 "Return token for S, a string, if S is a keyword or reserved word.
5796 Returns a symbol such as 'js2-BREAK, or nil if not keyword/reserved."
5797 (or (gethash s js2-keyword-names)
5798 (gethash s js2-reserved-word-names)))
5799
5800 (defsubst js2-ts-set-char-token-bounds (token)
5801 "Used when next token is one character."
5802 (setf (js2-token-beg token) (1- js2-ts-cursor)
5803 (js2-token-end token) js2-ts-cursor))
5804
5805 (defsubst js2-ts-return (token type)
5806 "Update the `end' and `type' slots of TOKEN,
5807 then throw `return' with value TYPE."
5808 (setf (js2-token-end token) js2-ts-cursor
5809 (js2-token-type token) type)
5810 (throw 'return type))
5811
5812 (defun js2-x-digit-to-int (c accumulator)
5813 "Build up a hex number.
5814 If C is a hexadecimal digit, return ACCUMULATOR * 16 plus
5815 corresponding number. Otherwise return -1."
5816 (catch 'return
5817 (catch 'check
5818 ;; Use 0..9 < A..Z < a..z
5819 (cond
5820 ((<= c ?9)
5821 (cl-decf c ?0)
5822 (if (<= 0 c)
5823 (throw 'check nil)))
5824 ((<= c ?F)
5825 (when (<= ?A c)
5826 (cl-decf c (- ?A 10))
5827 (throw 'check nil)))
5828 ((<= c ?f)
5829 (when (<= ?a c)
5830 (cl-decf c (- ?a 10))
5831 (throw 'check nil))))
5832 (throw 'return -1))
5833 (logior c (lsh accumulator 4))))
5834
5835 (defun js2-get-token (&optional modifier)
5836 "If `js2-ti-lookahead' is zero, call scanner to get new token.
5837 Otherwise, move `js2-ti-tokens-cursor' and return the type of
5838 next saved token.
5839
5840 This function will not return a newline (js2-EOL) - instead, it
5841 gobbles newlines until it finds a non-newline token. Call
5842 `js2-peek-token-or-eol' when you care about newlines.
5843
5844 This function will also not return a js2-COMMENT. Instead, it
5845 records comments found in `js2-scanned-comments'. If the token
5846 returned by this function immediately follows a jsdoc comment,
5847 the token is flagged as such."
5848 (if (zerop js2-ti-lookahead)
5849 (js2-get-token-internal modifier)
5850 (cl-decf js2-ti-lookahead)
5851 (setq js2-ti-tokens-cursor (mod (1+ js2-ti-tokens-cursor) js2-ti-ntokens))
5852 (let ((tt (js2-current-token-type)))
5853 (cl-assert (not (= tt js2-EOL)))
5854 tt)))
5855
5856 (defun js2-unget-token ()
5857 (cl-assert (< js2-ti-lookahead js2-ti-max-lookahead))
5858 (cl-incf js2-ti-lookahead)
5859 (setq js2-ti-tokens-cursor (mod (1- js2-ti-tokens-cursor) js2-ti-ntokens)))
5860
5861 (defun js2-get-token-internal (modifier)
5862 (let* ((token (js2-get-token-internal-1 modifier)) ; call scanner
5863 (tt (js2-token-type token))
5864 saw-eol
5865 face)
5866 ;; process comments
5867 (while (or (= tt js2-EOL) (= tt js2-COMMENT))
5868 (if (= tt js2-EOL)
5869 (setq saw-eol t)
5870 (setq saw-eol nil)
5871 (when js2-record-comments
5872 (js2-record-comment token)))
5873 (setq js2-ti-tokens-cursor (mod (1- js2-ti-tokens-cursor) js2-ti-ntokens))
5874 (setq token (js2-get-token-internal-1 modifier) ; call scanner again
5875 tt (js2-token-type token)))
5876
5877 (when saw-eol
5878 (setf (js2-token-follows-eol-p token) t))
5879
5880 ;; perform lexical fontification as soon as token is scanned
5881 (when js2-parse-ide-mode
5882 (cond
5883 ((cl-minusp tt)
5884 (js2-record-face 'js2-error token))
5885 ((setq face (aref js2-kwd-tokens tt))
5886 (js2-record-face face token))
5887 ((and (= tt js2-NAME)
5888 (equal (js2-token-string token) "undefined"))
5889 (js2-record-face 'font-lock-constant-face token))))
5890 tt))
5891
5892 (defsubst js2-string-to-number (str base)
5893 ;; TODO: Maybe port ScriptRuntime.stringToNumber.
5894 (condition-case nil
5895 (string-to-number str base)
5896 (overflow-error -1)))
5897
5898 (defun js2-get-token-internal-1 (modifier)
5899 "Return next JavaScript token type, an int such as js2-RETURN.
5900 During operation, creates an instance of `js2-token' struct, sets
5901 its relevant fields and puts it into `js2-ti-tokens'."
5902 (let (identifier-start
5903 is-unicode-escape-start c
5904 contains-escape escape-val str result base
5905 look-for-slash continue tt legacy-octal
5906 (token (js2-new-token 0)))
5907 (setq
5908 tt
5909 (catch 'return
5910 (when (eq modifier 'TEMPLATE_TAIL)
5911 (setf (js2-token-beg token) (1- js2-ts-cursor))
5912 (throw 'return (js2-get-string-or-template-token ?` token)))
5913 (while t
5914 ;; Eat whitespace, possibly sensitive to newlines.
5915 (setq continue t)
5916 (while continue
5917 (setq c (js2-get-char))
5918 (cond
5919 ((eq c js2-EOF_CHAR)
5920 (js2-unget-char)
5921 (js2-ts-set-char-token-bounds token)
5922 (throw 'return js2-EOF))
5923 ((eq c ?\n)
5924 (js2-ts-set-char-token-bounds token)
5925 (setq js2-ts-dirty-line nil)
5926 (throw 'return js2-EOL))
5927 ((not (js2-js-space-p c))
5928 (if (/= c ?-) ; in case end of HTML comment
5929 (setq js2-ts-dirty-line t))
5930 (setq continue nil))))
5931 ;; Assume the token will be 1 char - fixed up below.
5932 (js2-ts-set-char-token-bounds token)
5933 (when (eq c ?@)
5934 (throw 'return js2-XMLATTR))
5935 ;; identifier/keyword/instanceof?
5936 ;; watch out for starting with a <backslash>
5937 (cond
5938 ((eq c ?\\)
5939 (setq c (js2-get-char))
5940 (if (eq c ?u)
5941 (setq identifier-start t
5942 is-unicode-escape-start t
5943 js2-ts-string-buffer nil)
5944 (setq identifier-start nil)
5945 (js2-unget-char)
5946 (setq c ?\\)))
5947 (t
5948 (when (setq identifier-start (js2-identifier-start-p c))
5949 (setq js2-ts-string-buffer nil)
5950 (js2-add-to-string c))))
5951 (when identifier-start
5952 (setq contains-escape is-unicode-escape-start)
5953 (catch 'break
5954 (while t
5955 (if is-unicode-escape-start
5956 ;; strictly speaking we should probably push-back
5957 ;; all the bad characters if the <backslash>uXXXX
5958 ;; sequence is malformed. But since there isn't a
5959 ;; correct context(is there?) for a bad Unicode
5960 ;; escape sequence in an identifier, we can report
5961 ;; an error here.
5962 (progn
5963 (setq escape-val 0)
5964 (dotimes (_ 4)
5965 (setq c (js2-get-char)
5966 escape-val (js2-x-digit-to-int c escape-val))
5967 ;; Next check takes care of c < 0 and bad escape
5968 (if (cl-minusp escape-val)
5969 (throw 'break nil)))
5970 (if (cl-minusp escape-val)
5971 (js2-report-scan-error "msg.invalid.escape" t))
5972 (js2-add-to-string escape-val)
5973 (setq is-unicode-escape-start nil))
5974 (setq c (js2-get-char))
5975 (cond
5976 ((eq c ?\\)
5977 (setq c (js2-get-char))
5978 (if (eq c ?u)
5979 (setq is-unicode-escape-start t
5980 contains-escape t)
5981 (js2-report-scan-error "msg.illegal.character" t)))
5982 (t
5983 (if (or (eq c js2-EOF_CHAR)
5984 (not (js2-identifier-part-p c)))
5985 (throw 'break nil))
5986 (js2-add-to-string c))))))
5987 (js2-unget-char)
5988 (setf str (js2-collect-string js2-ts-string-buffer)
5989 (js2-token-end token) js2-ts-cursor)
5990 ;; FIXME: Invalid in ES5 and ES6, see
5991 ;; https://bugzilla.mozilla.org/show_bug.cgi?id=694360
5992 ;; Probably should just drop this conditional.
5993 (unless contains-escape
5994 ;; OPT we shouldn't have to make a string (object!) to
5995 ;; check if it's a keyword.
5996 ;; Return the corresponding token if it's a keyword
5997 (when (and (not (eq modifier 'KEYWORD_IS_NAME))
5998 (setq result (js2-string-to-keyword str)))
5999 (if (and (< js2-language-version 170)
6000 (memq result '(js2-LET js2-YIELD)))
6001 ;; LET and YIELD are tokens only in 1.7 and later
6002 (setq result 'js2-NAME))
6003 (when (eq result 'js2-RESERVED)
6004 (setf (js2-token-string token) str))
6005 (throw 'return (js2-tt-code result))))
6006 ;; If we want to intern these as Rhino does, just use (intern str)
6007 (setf (js2-token-string token) str)
6008 (throw 'return js2-NAME)) ; end identifier/kwd check
6009 ;; is it a number?
6010 (when (or (js2-digit-p c)
6011 (and (eq c ?.) (js2-digit-p (js2-peek-char))))
6012 (setq js2-ts-string-buffer nil
6013 base 10)
6014 (when (eq c ?0)
6015 (setq c (js2-get-char))
6016 (cond
6017 ((or (eq c ?x) (eq c ?X))
6018 (setq base 16)
6019 (setq c (js2-get-char)))
6020 ((and (or (eq c ?b) (eq c ?B))
6021 (>= js2-language-version 200))
6022 (setq base 2)
6023 (setq c (js2-get-char)))
6024 ((and (or (eq c ?o) (eq c ?O))
6025 (>= js2-language-version 200))
6026 (setq base 8)
6027 (setq legacy-octal nil)
6028 (setq c (js2-get-char)))
6029 ((js2-digit-p c)
6030 (setq base 'maybe-8))
6031 (t
6032 (js2-add-to-string ?0))))
6033 (cond
6034 ((eq base 16)
6035 (if (> 0 (js2-x-digit-to-int c 0))
6036 (js2-report-scan-error "msg.missing.hex.digits")
6037 (while (<= 0 (js2-x-digit-to-int c 0))
6038 (js2-add-to-string c)
6039 (setq c (js2-get-char)))))
6040 ((eq base 2)
6041 (if (not (memq c '(?0 ?1)))
6042 (js2-report-scan-error "msg.missing.binary.digits")
6043 (while (memq c '(?0 ?1))
6044 (js2-add-to-string c)
6045 (setq c (js2-get-char)))))
6046 ((eq base 8)
6047 (if (or (> ?0 c) (< ?7 c))
6048 (js2-report-scan-error "msg.missing.octal.digits")
6049 (while (and (<= ?0 c) (>= ?7 c))
6050 (js2-add-to-string c)
6051 (setq c (js2-get-char)))))
6052 (t
6053 (while (and (<= ?0 c) (<= c ?9))
6054 ;; We permit 08 and 09 as decimal numbers, which
6055 ;; makes our behavior a superset of the ECMA
6056 ;; numeric grammar. We might not always be so
6057 ;; permissive, so we warn about it.
6058 (when (and (eq base 'maybe-8) (>= c ?8))
6059 (js2-report-warning "msg.bad.octal.literal"
6060 (if (eq c ?8) "8" "9"))
6061 (setq base 10))
6062 (js2-add-to-string c)
6063 (setq c (js2-get-char)))
6064 (when (eq base 'maybe-8)
6065 (setq base 8
6066 legacy-octal t))))
6067 (when (and (eq base 10) (memq c '(?. ?e ?E)))
6068 (when (eq c ?.)
6069 (cl-loop do
6070 (js2-add-to-string c)
6071 (setq c (js2-get-char))
6072 while (js2-digit-p c)))
6073 (when (memq c '(?e ?E))
6074 (js2-add-to-string c)
6075 (setq c (js2-get-char))
6076 (when (memq c '(?+ ?-))
6077 (js2-add-to-string c)
6078 (setq c (js2-get-char)))
6079 (unless (js2-digit-p c)
6080 (js2-report-scan-error "msg.missing.exponent" t))
6081 (cl-loop do
6082 (js2-add-to-string c)
6083 (setq c (js2-get-char))
6084 while (js2-digit-p c))))
6085 (js2-unget-char)
6086 (let ((str (js2-set-string-from-buffer token)))
6087 (setf (js2-token-number token) (js2-string-to-number str base)
6088 (js2-token-number-base token) base
6089 (js2-token-number-legacy-octal-p token) (and (= base 8) legacy-octal)))
6090 (throw 'return js2-NUMBER))
6091 ;; is it a string?
6092 (when (or (memq c '(?\" ?\'))
6093 (and (>= js2-language-version 200)
6094 (= c ?`)))
6095 (throw 'return
6096 (js2-get-string-or-template-token c token)))
6097 (js2-ts-return token
6098 (cl-case c
6099 (?\;
6100 (throw 'return js2-SEMI))
6101 (?\[
6102 (throw 'return js2-LB))
6103 (?\]
6104 (throw 'return js2-RB))
6105 (?{
6106 (throw 'return js2-LC))
6107 (?}
6108 (throw 'return js2-RC))
6109 (?\(
6110 (throw 'return js2-LP))
6111 (?\)
6112 (throw 'return js2-RP))
6113 (?,
6114 (throw 'return js2-COMMA))
6115 (??
6116 (throw 'return js2-HOOK))
6117 (?:
6118 (if (js2-match-char ?:)
6119 js2-COLONCOLON
6120 (throw 'return js2-COLON)))
6121 (?.
6122 (if (js2-match-char ?.)
6123 (if (js2-match-char ?.)
6124 js2-TRIPLEDOT js2-DOTDOT)
6125 (if (js2-match-char ?\()
6126 js2-DOTQUERY
6127 (throw 'return js2-DOT))))
6128 (?|
6129 (if (js2-match-char ?|)
6130 (throw 'return js2-OR)
6131 (if (js2-match-char ?=)
6132 js2-ASSIGN_BITOR
6133 (throw 'return js2-BITOR))))
6134 (?^
6135 (if (js2-match-char ?=)
6136 js2-ASSIGN_BITOR
6137 (throw 'return js2-BITXOR)))
6138 (?&
6139 (if (js2-match-char ?&)
6140 (throw 'return js2-AND)
6141 (if (js2-match-char ?=)
6142 js2-ASSIGN_BITAND
6143 (throw 'return js2-BITAND))))
6144 (?=
6145 (if (js2-match-char ?=)
6146 (if (js2-match-char ?=)
6147 js2-SHEQ
6148 (throw 'return js2-EQ))
6149 (if (js2-match-char ?>)
6150 (js2-ts-return token js2-ARROW)
6151 (throw 'return js2-ASSIGN))))
6152 (?!
6153 (if (js2-match-char ?=)
6154 (if (js2-match-char ?=)
6155 js2-SHNE
6156 js2-NE)
6157 (throw 'return js2-NOT)))
6158 (?<
6159 ;; NB:treat HTML begin-comment as comment-till-eol
6160 (when (js2-match-char ?!)
6161 (when (js2-match-char ?-)
6162 (when (js2-match-char ?-)
6163 (js2-skip-line)
6164 (setf (js2-token-comment-type (js2-current-token)) 'html)
6165 (throw 'return js2-COMMENT)))
6166 (js2-unget-char))
6167 (if (js2-match-char ?<)
6168 (if (js2-match-char ?=)
6169 js2-ASSIGN_LSH
6170 js2-LSH)
6171 (if (js2-match-char ?=)
6172 js2-LE
6173 (throw 'return js2-LT))))
6174 (?>
6175 (if (js2-match-char ?>)
6176 (if (js2-match-char ?>)
6177 (if (js2-match-char ?=)
6178 js2-ASSIGN_URSH
6179 js2-URSH)
6180 (if (js2-match-char ?=)
6181 js2-ASSIGN_RSH
6182 js2-RSH))
6183 (if (js2-match-char ?=)
6184 js2-GE
6185 (throw 'return js2-GT))))
6186 (?*
6187 (if (js2-match-char ?=)
6188 js2-ASSIGN_MUL
6189 (throw 'return js2-MUL)))
6190 (?/
6191 ;; is it a // comment?
6192 (when (js2-match-char ?/)
6193 (setf (js2-token-beg token) (- js2-ts-cursor 2))
6194 (js2-skip-line)
6195 (setf (js2-token-comment-type token) 'line)
6196 ;; include newline so highlighting goes to end of
6197 ;; window, if there actually is a newline; if we
6198 ;; hit eof, then implicitly there isn't
6199 (unless js2-ts-hit-eof
6200 (cl-incf (js2-token-end token)))
6201 (throw 'return js2-COMMENT))
6202 ;; is it a /* comment?
6203 (when (js2-match-char ?*)
6204 (setf look-for-slash nil
6205 (js2-token-beg token) (- js2-ts-cursor 2)
6206 (js2-token-comment-type token)
6207 (if (js2-match-char ?*)
6208 (progn
6209 (setq look-for-slash t)
6210 'jsdoc)
6211 'block))
6212 (while t
6213 (setq c (js2-get-char))
6214 (cond
6215 ((eq c js2-EOF_CHAR)
6216 (setf (js2-token-end token) (1- js2-ts-cursor))
6217 (js2-report-error "msg.unterminated.comment")
6218 (throw 'return js2-COMMENT))
6219 ((eq c ?*)
6220 (setq look-for-slash t))
6221 ((eq c ?/)
6222 (if look-for-slash
6223 (js2-ts-return token js2-COMMENT)))
6224 (t
6225 (setf look-for-slash nil
6226 (js2-token-end token) js2-ts-cursor)))))
6227 (if (js2-match-char ?=)
6228 js2-ASSIGN_DIV
6229 (throw 'return js2-DIV)))
6230 (?#
6231 (when js2-skip-preprocessor-directives
6232 (js2-skip-line)
6233 (setf (js2-token-comment-type token) 'preprocessor
6234 (js2-token-end token) js2-ts-cursor)
6235 (throw 'return js2-COMMENT))
6236 (throw 'return js2-ERROR))
6237 (?%
6238 (if (js2-match-char ?=)
6239 js2-ASSIGN_MOD
6240 (throw 'return js2-MOD)))
6241 (?~
6242 (throw 'return js2-BITNOT))
6243 (?+
6244 (if (js2-match-char ?=)
6245 js2-ASSIGN_ADD
6246 (if (js2-match-char ?+)
6247 js2-INC
6248 (throw 'return js2-ADD))))
6249 (?-
6250 (cond
6251 ((js2-match-char ?=)
6252 (setq c js2-ASSIGN_SUB))
6253 ((js2-match-char ?-)
6254 (unless js2-ts-dirty-line
6255 ;; treat HTML end-comment after possible whitespace
6256 ;; after line start as comment-until-eol
6257 (when (js2-match-char ?>)
6258 (js2-skip-line)
6259 (setf (js2-token-comment-type (js2-current-token)) 'html)
6260 (throw 'return js2-COMMENT)))
6261 (setq c js2-DEC))
6262 (t
6263 (setq c js2-SUB)))
6264 (setq js2-ts-dirty-line t)
6265 c)
6266 (otherwise
6267 (js2-report-scan-error "msg.illegal.character")))))))
6268 (setf (js2-token-type token) tt)
6269 token))
6270
6271 (defun js2-get-string-or-template-token (quote-char token)
6272 ;; We attempt to accumulate a string the fast way, by
6273 ;; building it directly out of the reader. But if there
6274 ;; are any escaped characters in the string, we revert to
6275 ;; building it out of a string buffer.
6276 (let ((c (js2-get-char))
6277 js2-ts-string-buffer
6278 nc c1 val escape-val)
6279 (catch 'break
6280 (while (/= c quote-char)
6281 (catch 'continue
6282 (when (eq c js2-EOF_CHAR)
6283 (js2-unget-char)
6284 (js2-report-error "msg.unterminated.string.lit")
6285 (throw 'break nil))
6286 (when (and (eq c ?\n) (not (eq quote-char ?`)))
6287 (js2-unget-char)
6288 (js2-report-error "msg.unterminated.string.lit")
6289 (throw 'break nil))
6290 (when (eq c ?\\)
6291 ;; We've hit an escaped character
6292 (setq c (js2-get-char))
6293 (cl-case c
6294 (?b (setq c ?\b))
6295 (?f (setq c ?\f))
6296 (?n (setq c ?\n))
6297 (?r (setq c ?\r))
6298 (?t (setq c ?\t))
6299 (?v (setq c ?\v))
6300 (?u
6301 (setq c1 (js2-read-unicode-escape))
6302 (if js2-parse-ide-mode
6303 (if c1
6304 (progn
6305 ;; just copy the string in IDE-mode
6306 (js2-add-to-string ?\\)
6307 (js2-add-to-string ?u)
6308 (dotimes (_ 3)
6309 (js2-add-to-string (js2-get-char)))
6310 (setq c (js2-get-char))) ; added at end of loop
6311 ;; flag it as an invalid escape
6312 (js2-report-warning "msg.invalid.escape"
6313 nil (- js2-ts-cursor 2) 6))
6314 ;; Get 4 hex digits; if the u escape is not
6315 ;; followed by 4 hex digits, use 'u' + the
6316 ;; literal character sequence that follows.
6317 (js2-add-to-string ?u)
6318 (setq escape-val 0)
6319 (dotimes (_ 4)
6320 (setq c (js2-get-char)
6321 escape-val (js2-x-digit-to-int c escape-val))
6322 (if (cl-minusp escape-val)
6323 (throw 'continue nil))
6324 (js2-add-to-string c))
6325 ;; prepare for replace of stored 'u' sequence by escape value
6326 (setq js2-ts-string-buffer (nthcdr 5 js2-ts-string-buffer)
6327 c escape-val)))
6328 (?x
6329 ;; Get 2 hex digits, defaulting to 'x'+literal
6330 ;; sequence, as above.
6331 (setq c (js2-get-char)
6332 escape-val (js2-x-digit-to-int c 0))
6333 (if (cl-minusp escape-val)
6334 (progn
6335 (js2-add-to-string ?x)
6336 (throw 'continue nil))
6337 (setq c1 c
6338 c (js2-get-char)
6339 escape-val (js2-x-digit-to-int c escape-val))
6340 (if (cl-minusp escape-val)
6341 (progn
6342 (js2-add-to-string ?x)
6343 (js2-add-to-string c1)
6344 (throw 'continue nil))
6345 ;; got 2 hex digits
6346 (setq c escape-val))))
6347 (?\n
6348 ;; Remove line terminator after escape to follow
6349 ;; SpiderMonkey and C/C++
6350 (setq c (js2-get-char))
6351 (throw 'continue nil))
6352 (t
6353 (when (and (<= ?0 c) (< c ?8))
6354 (setq val (- c ?0)
6355 c (js2-get-char))
6356 (when (and (<= ?0 c) (< c ?8))
6357 (setq val (- (+ (* 8 val) c) ?0)
6358 c (js2-get-char))
6359 (when (and (<= ?0 c)
6360 (< c ?8)
6361 (< val #o37))
6362 ;; c is 3rd char of octal sequence only
6363 ;; if the resulting val <= 0377
6364 (setq val (- (+ (* 8 val) c) ?0)
6365 c (js2-get-char))))
6366 (js2-unget-char)
6367 (setq c val)))))
6368 (when (and (eq quote-char ?`) (eq c ?$))
6369 (when (eq (setq nc (js2-get-char)) ?\{)
6370 (throw 'break nil))
6371 (js2-unget-char))
6372 (js2-add-to-string c)
6373 (setq c (js2-get-char)))))
6374 (js2-set-string-from-buffer token)
6375 (if (not (eq quote-char ?`))
6376 js2-STRING
6377 (if (and (eq c ?$) (eq nc ?\{))
6378 js2-TEMPLATE_HEAD
6379 js2-NO_SUBS_TEMPLATE))))
6380
6381 (defun js2-read-regexp (start-tt)
6382 "Called by parser when it gets / or /= in literal context."
6383 (let (c err
6384 in-class ; inside a '[' .. ']' character-class
6385 flags
6386 (continue t)
6387 (token (js2-new-token 0)))
6388 (setq js2-ts-string-buffer nil)
6389 (if (eq start-tt js2-ASSIGN_DIV)
6390 ;; mis-scanned /=
6391 (js2-add-to-string ?=)
6392 (if (not (eq start-tt js2-DIV))
6393 (error "failed assertion")))
6394 (while (and (not err)
6395 (or (/= (setq c (js2-get-char)) ?/)
6396 in-class))
6397 (cond
6398 ((or (= c ?\n)
6399 (= c js2-EOF_CHAR))
6400 (setf (js2-token-end token) (1- js2-ts-cursor)
6401 err t
6402 (js2-token-string token) (js2-collect-string js2-ts-string-buffer))
6403 (js2-report-error "msg.unterminated.re.lit"))
6404 (t (cond
6405 ((= c ?\\)
6406 (js2-add-to-string c)
6407 (setq c (js2-get-char)))
6408 ((= c ?\[)
6409 (setq in-class t))
6410 ((= c ?\])
6411 (setq in-class nil)))
6412 (js2-add-to-string c))))
6413 (unless err
6414 (while continue
6415 (cond
6416 ((js2-match-char ?g)
6417 (push ?g flags))
6418 ((js2-match-char ?i)
6419 (push ?i flags))
6420 ((js2-match-char ?m)
6421 (push ?m flags))
6422 ((and (js2-match-char ?u)
6423 (>= js2-language-version 200))
6424 (push ?u flags))
6425 ((and (js2-match-char ?y)
6426 (>= js2-language-version 200))
6427 (push ?y flags))
6428 (t
6429 (setq continue nil))))
6430 (if (js2-alpha-p (js2-peek-char))
6431 (js2-report-scan-error "msg.invalid.re.flag" t
6432 js2-ts-cursor 1))
6433 (js2-set-string-from-buffer token))
6434 (js2-collect-string flags)))
6435
6436 (defun js2-get-first-xml-token ()
6437 (setq js2-ts-xml-open-tags-count 0
6438 js2-ts-is-xml-attribute nil
6439 js2-ts-xml-is-tag-content nil)
6440 (js2-unget-char)
6441 (js2-get-next-xml-token))
6442
6443 (defun js2-xml-discard-string (token)
6444 "Throw away the string in progress and flag an XML parse error."
6445 (setf js2-ts-string-buffer nil
6446 (js2-token-string token) nil)
6447 (js2-report-scan-error "msg.XML.bad.form" t))
6448
6449 (defun js2-get-next-xml-token ()
6450 (setq js2-ts-string-buffer nil) ; for recording the XML
6451 (let ((token (js2-new-token 0))
6452 c result)
6453 (setq result
6454 (catch 'return
6455 (while t
6456 (setq c (js2-get-char))
6457 (cond
6458 ((= c js2-EOF_CHAR)
6459 (throw 'return js2-ERROR))
6460 (js2-ts-xml-is-tag-content
6461 (cl-case c
6462 (?>
6463 (js2-add-to-string c)
6464 (setq js2-ts-xml-is-tag-content nil
6465 js2-ts-is-xml-attribute nil))
6466 (?/
6467 (js2-add-to-string c)
6468 (when (eq ?> (js2-peek-char))
6469 (setq c (js2-get-char))
6470 (js2-add-to-string c)
6471 (setq js2-ts-xml-is-tag-content nil)
6472 (cl-decf js2-ts-xml-open-tags-count)))
6473 (?{
6474 (js2-unget-char)
6475 (js2-set-string-from-buffer token)
6476 (throw 'return js2-XML))
6477 ((?\' ?\")
6478 (js2-add-to-string c)
6479 (unless (js2-read-quoted-string c token)
6480 (throw 'return js2-ERROR)))
6481 (?=
6482 (js2-add-to-string c)
6483 (setq js2-ts-is-xml-attribute t))
6484 ((? ?\t ?\r ?\n)
6485 (js2-add-to-string c))
6486 (t
6487 (js2-add-to-string c)
6488 (setq js2-ts-is-xml-attribute nil)))
6489 (when (and (not js2-ts-xml-is-tag-content)
6490 (zerop js2-ts-xml-open-tags-count))
6491 (js2-set-string-from-buffer token)
6492 (throw 'return js2-XMLEND)))
6493 (t
6494 ;; else not tag content
6495 (cl-case c
6496 (?<
6497 (js2-add-to-string c)
6498 (setq c (js2-peek-char))
6499 (cl-case c
6500 (?!
6501 (setq c (js2-get-char)) ;; skip !
6502 (js2-add-to-string c)
6503 (setq c (js2-peek-char))
6504 (cl-case c
6505 (?-
6506 (setq c (js2-get-char)) ;; skip -
6507 (js2-add-to-string c)
6508 (if (eq c ?-)
6509 (progn
6510 (js2-add-to-string c)
6511 (unless (js2-read-xml-comment token)
6512 (throw 'return js2-ERROR)))
6513 (js2-xml-discard-string token)
6514 (throw 'return js2-ERROR)))
6515 (?\[
6516 (setq c (js2-get-char)) ;; skip [
6517 (js2-add-to-string c)
6518 (if (and (= (js2-get-char) ?C)
6519 (= (js2-get-char) ?D)
6520 (= (js2-get-char) ?A)
6521 (= (js2-get-char) ?T)
6522 (= (js2-get-char) ?A)
6523 (= (js2-get-char) ?\[))
6524 (progn
6525 (js2-add-to-string ?C)
6526 (js2-add-to-string ?D)
6527 (js2-add-to-string ?A)
6528 (js2-add-to-string ?T)
6529 (js2-add-to-string ?A)
6530 (js2-add-to-string ?\[)
6531 (unless (js2-read-cdata token)
6532 (throw 'return js2-ERROR)))
6533 (js2-xml-discard-string token)
6534 (throw 'return js2-ERROR)))
6535 (t
6536 (unless (js2-read-entity token)
6537 (throw 'return js2-ERROR))))
6538 ;; Allow bare CDATA section, e.g.:
6539 ;; let xml = <![CDATA[ foo bar baz ]]>;
6540 (when (zerop js2-ts-xml-open-tags-count)
6541 (throw 'return js2-XMLEND)))
6542 (??
6543 (setq c (js2-get-char)) ;; skip ?
6544 (js2-add-to-string c)
6545 (unless (js2-read-PI token)
6546 (throw 'return js2-ERROR)))
6547 (?/
6548 ;; end tag
6549 (setq c (js2-get-char)) ;; skip /
6550 (js2-add-to-string c)
6551 (when (zerop js2-ts-xml-open-tags-count)
6552 (js2-xml-discard-string token)
6553 (throw 'return js2-ERROR))
6554 (setq js2-ts-xml-is-tag-content t)
6555 (cl-decf js2-ts-xml-open-tags-count))
6556 (t
6557 ;; start tag
6558 (setq js2-ts-xml-is-tag-content t)
6559 (cl-incf js2-ts-xml-open-tags-count))))
6560 (?{
6561 (js2-unget-char)
6562 (js2-set-string-from-buffer token)
6563 (throw 'return js2-XML))
6564 (t
6565 (js2-add-to-string c))))))))
6566 (setf (js2-token-end token) js2-ts-cursor)
6567 (setf (js2-token-type token) result)
6568 result))
6569
6570 (defun js2-read-quoted-string (quote token)
6571 (let (c)
6572 (catch 'return
6573 (while (/= (setq c (js2-get-char)) js2-EOF_CHAR)
6574 (js2-add-to-string c)
6575 (if (eq c quote)
6576 (throw 'return t)))
6577 (js2-xml-discard-string token) ;; throw away string in progress
6578 nil)))
6579
6580 (defun js2-read-xml-comment (token)
6581 (let ((c (js2-get-char)))
6582 (catch 'return
6583 (while (/= c js2-EOF_CHAR)
6584 (catch 'continue
6585 (js2-add-to-string c)
6586 (when (and (eq c ?-) (eq ?- (js2-peek-char)))
6587 (setq c (js2-get-char))
6588 (js2-add-to-string c)
6589 (if (eq (js2-peek-char) ?>)
6590 (progn
6591 (setq c (js2-get-char)) ;; skip >
6592 (js2-add-to-string c)
6593 (throw 'return t))
6594 (throw 'continue nil)))
6595 (setq c (js2-get-char))))
6596 (js2-xml-discard-string token)
6597 nil)))
6598
6599 (defun js2-read-cdata (token)
6600 (let ((c (js2-get-char)))
6601 (catch 'return
6602 (while (/= c js2-EOF_CHAR)
6603 (catch 'continue
6604 (js2-add-to-string c)
6605 (when (and (eq c ?\]) (eq (js2-peek-char) ?\]))
6606 (setq c (js2-get-char))
6607 (js2-add-to-string c)
6608 (if (eq (js2-peek-char) ?>)
6609 (progn
6610 (setq c (js2-get-char)) ;; Skip >
6611 (js2-add-to-string c)
6612 (throw 'return t))
6613 (throw 'continue nil)))
6614 (setq c (js2-get-char))))
6615 (js2-xml-discard-string token)
6616 nil)))
6617
6618 (defun js2-read-entity (token)
6619 (let ((decl-tags 1)
6620 c)
6621 (catch 'return
6622 (while (/= js2-EOF_CHAR (setq c (js2-get-char)))
6623 (js2-add-to-string c)
6624 (cl-case c
6625 (?<
6626 (cl-incf decl-tags))
6627 (?>
6628 (cl-decf decl-tags)
6629 (if (zerop decl-tags)
6630 (throw 'return t)))))
6631 (js2-xml-discard-string token)
6632 nil)))
6633
6634 (defun js2-read-PI (token)
6635 "Scan an XML processing instruction."
6636 (let (c)
6637 (catch 'return
6638 (while (/= js2-EOF_CHAR (setq c (js2-get-char)))
6639 (js2-add-to-string c)
6640 (when (and (eq c ??) (eq (js2-peek-char) ?>))
6641 (setq c (js2-get-char)) ;; Skip >
6642 (js2-add-to-string c)
6643 (throw 'return t)))
6644 (js2-xml-discard-string token)
6645 nil)))
6646
6647 ;;; Highlighting
6648
6649 (defun js2-set-face (beg end face &optional record)
6650 "Fontify a region. If RECORD is non-nil, record for later."
6651 (when (cl-plusp js2-highlight-level)
6652 (setq beg (min (point-max) beg)
6653 beg (max (point-min) beg)
6654 end (min (point-max) end)
6655 end (max (point-min) end))
6656 (if record
6657 (push (list beg end face) js2-mode-fontifications)
6658 (put-text-property beg end 'font-lock-face face))))
6659
6660 (defsubst js2-clear-face (beg end)
6661 (remove-text-properties beg end '(font-lock-face nil
6662 help-echo nil
6663 point-entered nil
6664 cursor-sensor-functions nil
6665 c-in-sws nil)))
6666
6667 (defconst js2-ecma-global-props
6668 (concat "^"
6669 (regexp-opt
6670 '("Infinity" "NaN" "undefined" "arguments") t)
6671 "$")
6672 "Value properties of the Ecma-262 Global Object.
6673 Shown at or above `js2-highlight-level' 2.")
6674
6675 ;; might want to add the name "arguments" to this list?
6676 (defconst js2-ecma-object-props
6677 (concat "^"
6678 (regexp-opt
6679 '("prototype" "__proto__" "__parent__") t)
6680 "$")
6681 "Value properties of the Ecma-262 Object constructor.
6682 Shown at or above `js2-highlight-level' 2.")
6683
6684 (defconst js2-ecma-global-funcs
6685 (concat
6686 "^"
6687 (regexp-opt
6688 '("decodeURI" "decodeURIComponent" "encodeURI" "encodeURIComponent"
6689 "eval" "isFinite" "isNaN" "parseFloat" "parseInt") t)
6690 "$")
6691 "Function properties of the Ecma-262 Global object.
6692 Shown at or above `js2-highlight-level' 2.")
6693
6694 (defconst js2-ecma-number-props
6695 (concat "^"
6696 (regexp-opt '("MAX_VALUE" "MIN_VALUE" "NaN"
6697 "NEGATIVE_INFINITY"
6698 "POSITIVE_INFINITY") t)
6699 "$")
6700 "Properties of the Ecma-262 Number constructor.
6701 Shown at or above `js2-highlight-level' 2.")
6702
6703 (defconst js2-ecma-date-props "^\\(parse\\|UTC\\)$"
6704 "Properties of the Ecma-262 Date constructor.
6705 Shown at or above `js2-highlight-level' 2.")
6706
6707 (defconst js2-ecma-math-props
6708 (concat "^"
6709 (regexp-opt
6710 '("E" "LN10" "LN2" "LOG2E" "LOG10E" "PI" "SQRT1_2" "SQRT2")
6711 t)
6712 "$")
6713 "Properties of the Ecma-262 Math object.
6714 Shown at or above `js2-highlight-level' 2.")
6715
6716 (defconst js2-ecma-math-funcs
6717 (concat "^"
6718 (regexp-opt
6719 '("abs" "acos" "asin" "atan" "atan2" "ceil" "cos" "exp" "floor"
6720 "log" "max" "min" "pow" "random" "round" "sin" "sqrt" "tan") t)
6721 "$")
6722 "Function properties of the Ecma-262 Math object.
6723 Shown at or above `js2-highlight-level' 2.")
6724
6725 (defconst js2-ecma-function-props
6726 (concat
6727 "^"
6728 (regexp-opt
6729 '(;; properties of the Object prototype object
6730 "hasOwnProperty" "isPrototypeOf" "propertyIsEnumerable"
6731 "toLocaleString" "toString" "valueOf"
6732 ;; properties of the Function prototype object
6733 "apply" "call"
6734 ;; properties of the Array prototype object
6735 "concat" "join" "pop" "push" "reverse" "shift" "slice" "sort"
6736 "splice" "unshift"
6737 ;; properties of the String prototype object
6738 "charAt" "charCodeAt" "fromCharCode" "indexOf" "lastIndexOf"
6739 "localeCompare" "match" "replace" "search" "split" "substring"
6740 "toLocaleLowerCase" "toLocaleUpperCase" "toLowerCase"
6741 "toUpperCase"
6742 ;; properties of the Number prototype object
6743 "toExponential" "toFixed" "toPrecision"
6744 ;; properties of the Date prototype object
6745 "getDate" "getDay" "getFullYear" "getHours" "getMilliseconds"
6746 "getMinutes" "getMonth" "getSeconds" "getTime"
6747 "getTimezoneOffset" "getUTCDate" "getUTCDay" "getUTCFullYear"
6748 "getUTCHours" "getUTCMilliseconds" "getUTCMinutes" "getUTCMonth"
6749 "getUTCSeconds" "setDate" "setFullYear" "setHours"
6750 "setMilliseconds" "setMinutes" "setMonth" "setSeconds" "setTime"
6751 "setUTCDate" "setUTCFullYear" "setUTCHours" "setUTCMilliseconds"
6752 "setUTCMinutes" "setUTCMonth" "setUTCSeconds" "toDateString"
6753 "toLocaleDateString" "toLocaleString" "toLocaleTimeString"
6754 "toTimeString" "toUTCString"
6755 ;; properties of the RegExp prototype object
6756 "exec" "test"
6757 ;; properties of the JSON prototype object
6758 "parse" "stringify"
6759 ;; SpiderMonkey/Rhino extensions, versions 1.5+
6760 "toSource" "__defineGetter__" "__defineSetter__"
6761 "__lookupGetter__" "__lookupSetter__" "__noSuchMethod__"
6762 "every" "filter" "forEach" "lastIndexOf" "map" "some")
6763 t)
6764 "$")
6765 "Built-in functions defined by Ecma-262 and SpiderMonkey extensions.
6766 Shown at or above `js2-highlight-level' 3.")
6767
6768 (defun js2-parse-highlight-prop-get (parent target prop call-p)
6769 (let ((target-name (and target
6770 (js2-name-node-p target)
6771 (js2-name-node-name target)))
6772 (prop-name (if prop (js2-name-node-name prop)))
6773 (level2 (>= js2-highlight-level 2))
6774 (level3 (>= js2-highlight-level 3)))
6775 (when level2
6776 (let ((face
6777 (if call-p
6778 (cond
6779 ((and target prop)
6780 (cond
6781 ((and level3 (string-match js2-ecma-function-props prop-name))
6782 'font-lock-builtin-face)
6783 ((and target-name prop)
6784 (cond
6785 ((string= target-name "Date")
6786 (if (string-match js2-ecma-date-props prop-name)
6787 'font-lock-builtin-face))
6788 ((string= target-name "Math")
6789 (if (string-match js2-ecma-math-funcs prop-name)
6790 'font-lock-builtin-face))))))
6791 (prop
6792 (if (string-match js2-ecma-global-funcs prop-name)
6793 'font-lock-builtin-face)))
6794 (cond
6795 ((and target prop)
6796 (cond
6797 ((string= target-name "Number")
6798 (if (string-match js2-ecma-number-props prop-name)
6799 'font-lock-constant-face))
6800 ((string= target-name "Math")
6801 (if (string-match js2-ecma-math-props prop-name)
6802 'font-lock-constant-face))))
6803 (prop
6804 (if (string-match js2-ecma-object-props prop-name)
6805 'font-lock-constant-face))))))
6806 (when (and (not face) target (not call-p) prop-name)
6807 (setq face 'js2-object-property))
6808 (when face
6809 (let ((pos (+ (js2-node-pos parent) ; absolute
6810 (js2-node-pos prop)))) ; relative
6811 (js2-set-face pos
6812 (+ pos (js2-node-len prop))
6813 face 'record)))))))
6814
6815 (defun js2-parse-highlight-member-expr-node (node)
6816 "Perform syntax highlighting of EcmaScript built-in properties.
6817 The variable `js2-highlight-level' governs this highlighting."
6818 (let (face target prop name pos end parent call-p callee)
6819 (cond
6820 ;; case 1: simple name, e.g. foo
6821 ((js2-name-node-p node)
6822 (setq name (js2-name-node-name node))
6823 ;; possible for name to be nil in rare cases - saw it when
6824 ;; running js2-mode on an elisp buffer. Might as well try to
6825 ;; make it so js2-mode never barfs.
6826 (when name
6827 (setq face (if (string-match js2-ecma-global-props name)
6828 'font-lock-constant-face))
6829 (when face
6830 (setq pos (js2-node-pos node)
6831 end (+ pos (js2-node-len node)))
6832 (js2-set-face pos end face 'record))))
6833 ;; case 2: property access or function call
6834 ((or (js2-prop-get-node-p node)
6835 ;; highlight function call if expr is a prop-get node
6836 ;; or a plain name (i.e. unqualified function call)
6837 (and (setq call-p (js2-call-node-p node))
6838 (setq callee (js2-call-node-target node)) ; separate setq!
6839 (or (js2-prop-get-node-p callee)
6840 (js2-name-node-p callee))))
6841 (setq parent node
6842 node (if call-p callee node))
6843 (if (and call-p (js2-name-node-p callee))
6844 (setq prop callee)
6845 (setq target (js2-prop-get-node-left node)
6846 prop (js2-prop-get-node-right node)))
6847 (cond
6848 ((js2-name-node-p prop)
6849 ;; case 2(a&c): simple or complex target, simple name, e.g. x[y].bar
6850 (js2-parse-highlight-prop-get parent target prop call-p))
6851 ((js2-name-node-p target)
6852 ;; case 2b: simple target, complex name, e.g. foo.x[y]
6853 (js2-parse-highlight-prop-get parent target nil call-p)))))))
6854
6855 (defun js2-parse-highlight-member-expr-fn-name (expr)
6856 "Highlight the `baz' in function foo.bar.baz(args) {...}.
6857 This is experimental Rhino syntax. EXPR is the foo.bar.baz member expr.
6858 We currently only handle the case where the last component is a prop-get
6859 of a simple name. Called before EXPR has a parent node."
6860 (let (pos
6861 (name (and (js2-prop-get-node-p expr)
6862 (js2-prop-get-node-right expr))))
6863 (when (js2-name-node-p name)
6864 (js2-set-face (setq pos (+ (js2-node-pos expr) ; parent is absolute
6865 (js2-node-pos name)))
6866 (+ pos (js2-node-len name))
6867 'font-lock-function-name-face
6868 'record))))
6869
6870 ;; source: http://jsdoc.sourceforge.net/
6871 ;; Note - this syntax is for Google's enhanced jsdoc parser that
6872 ;; allows type specifications, and needs work before entering the wild.
6873
6874 (defconst js2-jsdoc-param-tag-regexp
6875 (concat "^\\s-*\\*+\\s-*\\(@"
6876 "\\(?:param\\|arg\\(?:ument\\)?\\|prop\\(?:erty\\)?\\)"
6877 "\\)"
6878 "\\s-*\\({[^}]+}\\)?" ; optional type
6879 "\\s-*\\[?\\([[:alnum:]_$\.]+\\)?\\]?" ; name
6880 "\\_>")
6881 "Matches jsdoc tags with optional type and optional param name.")
6882
6883 (defconst js2-jsdoc-typed-tag-regexp
6884 (concat "^\\s-*\\*+\\s-*\\(@\\(?:"
6885 (regexp-opt
6886 '("enum"
6887 "extends"
6888 "field"
6889 "id"
6890 "implements"
6891 "lends"
6892 "mods"
6893 "requires"
6894 "return"
6895 "returns"
6896 "throw"
6897 "throws"))
6898 "\\)\\)\\s-*\\({[^}]+}\\)?")
6899 "Matches jsdoc tags with optional type.")
6900
6901 (defconst js2-jsdoc-arg-tag-regexp
6902 (concat "^\\s-*\\*+\\s-*\\(@\\(?:"
6903 (regexp-opt
6904 '("alias"
6905 "augments"
6906 "borrows"
6907 "bug"
6908 "base"
6909 "config"
6910 "default"
6911 "define"
6912 "exception"
6913 "function"
6914 "member"
6915 "memberOf"
6916 "name"
6917 "namespace"
6918 "since"
6919 "suppress"
6920 "this"
6921 "throws"
6922 "type"
6923 "version"))
6924 "\\)\\)\\s-+\\([^ \t]+\\)")
6925 "Matches jsdoc tags with a single argument.")
6926
6927 (defconst js2-jsdoc-empty-tag-regexp
6928 (concat "^\\s-*\\*+\\s-*\\(@\\(?:"
6929 (regexp-opt
6930 '("addon"
6931 "author"
6932 "class"
6933 "const"
6934 "constant"
6935 "constructor"
6936 "constructs"
6937 "deprecated"
6938 "desc"
6939 "description"
6940 "event"
6941 "example"
6942 "exec"
6943 "export"
6944 "fileoverview"
6945 "final"
6946 "function"
6947 "hidden"
6948 "ignore"
6949 "implicitCast"
6950 "inheritDoc"
6951 "inner"
6952 "interface"
6953 "license"
6954 "noalias"
6955 "noshadow"
6956 "notypecheck"
6957 "override"
6958 "owner"
6959 "preserve"
6960 "preserveTry"
6961 "private"
6962 "protected"
6963 "public"
6964 "static"
6965 "supported"
6966 ))
6967 "\\)\\)\\s-*")
6968 "Matches empty jsdoc tags.")
6969
6970 (defconst js2-jsdoc-link-tag-regexp
6971 "{\\(@\\(?:link\\|code\\)\\)\\s-+\\([^#}\n]+\\)\\(#.+\\)?}"
6972 "Matches a jsdoc link or code tag.")
6973
6974 (defconst js2-jsdoc-see-tag-regexp
6975 "^\\s-*\\*+\\s-*\\(@see\\)\\s-+\\([^#}\n]+\\)\\(#.+\\)?"
6976 "Matches a jsdoc @see tag.")
6977
6978 (defconst js2-jsdoc-html-tag-regexp
6979 "\\(</?\\)\\([[:alpha:]]+\\)\\s-*\\(/?>\\)"
6980 "Matches a simple (no attributes) html start- or end-tag.")
6981
6982 (defun js2-jsdoc-highlight-helper ()
6983 (js2-set-face (match-beginning 1)
6984 (match-end 1)
6985 'js2-jsdoc-tag)
6986 (if (match-beginning 2)
6987 (if (save-excursion
6988 (goto-char (match-beginning 2))
6989 (= (char-after) ?{))
6990 (js2-set-face (1+ (match-beginning 2))
6991 (1- (match-end 2))
6992 'js2-jsdoc-type)
6993 (js2-set-face (match-beginning 2)
6994 (match-end 2)
6995 'js2-jsdoc-value)))
6996 (if (match-beginning 3)
6997 (js2-set-face (match-beginning 3)
6998 (match-end 3)
6999 'js2-jsdoc-value)))
7000
7001 (defun js2-highlight-jsdoc (ast)
7002 "Highlight doc comment tags."
7003 (let ((comments (js2-ast-root-comments ast))
7004 beg end)
7005 (save-excursion
7006 (dolist (node comments)
7007 (when (eq (js2-comment-node-format node) 'jsdoc)
7008 (setq beg (js2-node-abs-pos node)
7009 end (+ beg (js2-node-len node)))
7010 (save-restriction
7011 (narrow-to-region beg end)
7012 (dolist (re (list js2-jsdoc-param-tag-regexp
7013 js2-jsdoc-typed-tag-regexp
7014 js2-jsdoc-arg-tag-regexp
7015 js2-jsdoc-link-tag-regexp
7016 js2-jsdoc-see-tag-regexp
7017 js2-jsdoc-empty-tag-regexp))
7018 (goto-char beg)
7019 (while (re-search-forward re nil t)
7020 (js2-jsdoc-highlight-helper)))
7021 ;; simple highlighting for html tags
7022 (goto-char beg)
7023 (while (re-search-forward js2-jsdoc-html-tag-regexp nil t)
7024 (js2-set-face (match-beginning 1)
7025 (match-end 1)
7026 'js2-jsdoc-html-tag-delimiter)
7027 (js2-set-face (match-beginning 2)
7028 (match-end 2)
7029 'js2-jsdoc-html-tag-name)
7030 (js2-set-face (match-beginning 3)
7031 (match-end 3)
7032 'js2-jsdoc-html-tag-delimiter))))))))
7033
7034 (defun js2-highlight-assign-targets (_node left right)
7035 "Highlight function properties and external variables."
7036 (let (leftpos name)
7037 ;; highlight vars and props assigned function values
7038 (when (or (js2-function-node-p right)
7039 (js2-class-node-p right))
7040 (cond
7041 ;; var foo = function() {...}
7042 ((js2-name-node-p left)
7043 (setq name left))
7044 ;; foo.bar.baz = function() {...}
7045 ((and (js2-prop-get-node-p left)
7046 (js2-name-node-p (js2-prop-get-node-right left)))
7047 (setq name (js2-prop-get-node-right left))))
7048 (when name
7049 (js2-set-face (setq leftpos (js2-node-abs-pos name))
7050 (+ leftpos (js2-node-len name))
7051 'font-lock-function-name-face
7052 'record)))))
7053
7054 (defun js2-record-name-node (node)
7055 "Saves NODE to `js2-recorded-identifiers' to check for undeclared variables
7056 later. NODE must be a name node."
7057 (let ((leftpos (js2-node-abs-pos node)))
7058 (push (list node js2-current-scope
7059 leftpos
7060 (+ leftpos (js2-node-len node)))
7061 js2-recorded-identifiers)))
7062
7063 (defun js2-highlight-undeclared-vars ()
7064 "After entire parse is finished, look for undeclared variable references.
7065 We have to wait until entire buffer is parsed, since JavaScript permits var
7066 decls to occur after they're used.
7067
7068 If any undeclared var name is in `js2-externs' or `js2-additional-externs',
7069 it is considered declared."
7070 (let (name)
7071 (dolist (entry js2-recorded-identifiers)
7072 (cl-destructuring-bind (name-node scope pos end) entry
7073 (setq name (js2-name-node-name name-node))
7074 (unless (or (member name js2-global-externs)
7075 (member name js2-default-externs)
7076 (member name js2-additional-externs)
7077 (js2-get-defining-scope scope name pos))
7078 (js2-report-warning "msg.undeclared.variable" name pos (- end pos)
7079 'js2-external-variable))))))
7080
7081 (defun js2--add-or-update-symbol (symbol inition used vars)
7082 "Add or update SYMBOL entry in VARS, an hash table.
7083 SYMBOL is a js2-name-node, INITION either nil, t, or ?P,
7084 respectively meaning that SYMBOL is a mere declaration, an
7085 assignment or a function parameter; when USED is t, the symbol
7086 node is assumed to be an usage and thus added to the list stored
7087 in the cdr of the entry.
7088 "
7089 (let* ((nm (js2-name-node-name symbol))
7090 (es (js2-node-get-enclosing-scope symbol))
7091 (ds (js2-get-defining-scope es nm)))
7092 (when (and ds (not (equal nm "arguments")))
7093 (let* ((sym (js2-scope-get-symbol ds nm))
7094 (var (gethash sym vars))
7095 (err-var-p (js2-catch-node-p ds)))
7096 (unless inition
7097 (setq inition err-var-p))
7098 (if var
7099 (progn
7100 (when (and inition (not (equal (car var) ?P)))
7101 (setcar var inition))
7102 (when used
7103 (push symbol (cdr var))))
7104 ;; do not consider the declaration of catch parameter as an usage
7105 (when (and err-var-p used)
7106 (setq used nil))
7107 (puthash sym (cons inition (if used (list symbol))) vars))))))
7108
7109 (defun js2--classify-variables ()
7110 "Collect and classify variables declared or used within js2-mode-ast.
7111 Traverse the whole ast tree returning a summary of the variables
7112 usage as an hash-table, keyed by their corresponding symbol table
7113 entry.
7114 Each variable is described by a tuple where the car is a flag
7115 indicating whether the variable has been initialized and the cdr
7116 is a possibly empty list of name nodes where it is used. External
7117 symbols, i.e. those not present in the whole scopes hierarchy,
7118 are ignored."
7119 (let ((vars (make-hash-table :test #'eq :size 100)))
7120 (js2-visit-ast
7121 js2-mode-ast
7122 (lambda (node end-p)
7123 (when (null end-p)
7124 (cond
7125 ((js2-var-init-node-p node)
7126 ;; take note about possibly initialized declarations
7127 (let ((target (js2-var-init-node-target node))
7128 (initializer (js2-var-init-node-initializer node)))
7129 (when target
7130 (let* ((parent (js2-node-parent node))
7131 (grandparent (if parent (js2-node-parent parent)))
7132 (inited (not (null initializer))))
7133 (unless inited
7134 (setq inited
7135 (and grandparent
7136 (js2-for-in-node-p grandparent)
7137 (memq target
7138 (mapcar #'js2-var-init-node-target
7139 (js2-var-decl-node-kids
7140 (js2-for-in-node-iterator grandparent)))))))
7141 (js2--add-or-update-symbol target inited nil vars)))))
7142
7143 ((js2-assign-node-p node)
7144 ;; take note about assignments
7145 (let ((left (js2-assign-node-left node)))
7146 (when (js2-name-node-p left)
7147 (js2--add-or-update-symbol left t nil vars))))
7148
7149 ((js2-prop-get-node-p node)
7150 ;; handle x.y.z nodes, considering only x
7151 (let ((left (js2-prop-get-node-left node)))
7152 (when (js2-name-node-p left)
7153 (js2--add-or-update-symbol left nil t vars))))
7154
7155 ((js2-name-node-p node)
7156 ;; take note about used variables
7157 (let ((parent (js2-node-parent node)))
7158 (when parent
7159 (unless (or (and (js2-var-init-node-p parent) ; handled above
7160 (eq node (js2-var-init-node-target parent)))
7161 (and (js2-assign-node-p parent)
7162 (eq node (js2-assign-node-left parent)))
7163 (js2-prop-get-node-p parent))
7164 (let ((used t) inited)
7165 (cond
7166 ((and (js2-function-node-p parent)
7167 (js2-wrapper-function-p parent))
7168 (setq inited (if (memq node (js2-function-node-params parent)) ?P t)))
7169
7170 ((js2-for-in-node-p parent)
7171 (if (eq node (js2-for-in-node-iterator parent))
7172 (setq inited t used nil)))
7173
7174 ((js2-function-node-p parent)
7175 (setq inited (if (memq node (js2-function-node-params parent)) ?P t)
7176 used nil)))
7177
7178 (unless used
7179 (let ((grandparent (js2-node-parent parent)))
7180 (when grandparent
7181 (setq used (js2-return-node-p grandparent)))))
7182
7183 (js2--add-or-update-symbol node inited used vars))))))))
7184 t))
7185 vars))
7186
7187 (defun js2--get-name-node (node)
7188 (cond
7189 ((js2-name-node-p node) node)
7190 ((js2-function-node-p node)
7191 (js2-function-node-name node))
7192 ((js2-class-node-p node)
7193 (js2-class-node-name node))
7194 ((js2-comp-loop-node-p node)
7195 (js2-comp-loop-node-iterator node))
7196 (t node)))
7197
7198 (defun js2--highlight-unused-variable (symbol info)
7199 (let ((name (js2-symbol-name symbol))
7200 (inited (car info))
7201 (refs (cdr info))
7202 pos len)
7203 (unless (and inited refs)
7204 (if refs
7205 (dolist (ref refs)
7206 (setq pos (js2-node-abs-pos ref))
7207 (setq len (js2-name-node-len ref))
7208 (js2-report-warning "msg.uninitialized.variable" name pos len
7209 'js2-warning))
7210 (when (or js2-warn-about-unused-function-arguments
7211 (not (eq inited ?P)))
7212 (let* ((symn (js2-symbol-ast-node symbol))
7213 (namen (js2--get-name-node symn)))
7214 (unless (js2-node-top-level-decl-p namen)
7215 (setq pos (js2-node-abs-pos namen))
7216 (setq len (js2-name-node-len namen))
7217 (js2-report-warning "msg.unused.variable" name pos len
7218 'js2-warning))))))))
7219
7220 (defun js2-highlight-unused-variables ()
7221 "Highlight unused variables."
7222 (let ((vars (js2--classify-variables)))
7223 (maphash #'js2--highlight-unused-variable vars)))
7224
7225 ;;;###autoload
7226 (define-minor-mode js2-highlight-unused-variables-mode
7227 "Toggle highlight of unused variables."
7228 :lighter ""
7229 (if js2-highlight-unused-variables-mode
7230 (add-hook 'js2-post-parse-callbacks
7231 #'js2-highlight-unused-variables nil t)
7232 (remove-hook 'js2-post-parse-callbacks
7233 #'js2-highlight-unused-variables t)))
7234
7235 (defun js2-set-default-externs ()
7236 "Set the value of `js2-default-externs' based on the various
7237 `js2-include-?-externs' variables."
7238 (setq js2-default-externs
7239 (append js2-ecma-262-externs
7240 (if js2-include-browser-externs js2-browser-externs)
7241 (if (and js2-include-browser-externs
7242 (>= js2-language-version 200)) js2-harmony-externs)
7243 (if js2-include-rhino-externs js2-rhino-externs)
7244 (if js2-include-node-externs js2-node-externs)
7245 (if (or js2-include-browser-externs js2-include-node-externs)
7246 js2-typed-array-externs))))
7247
7248 (defun js2-apply-jslint-globals ()
7249 (setq js2-additional-externs
7250 (nconc (js2-get-jslint-globals)
7251 js2-additional-externs)))
7252
7253 (defun js2-get-jslint-globals ()
7254 (cl-loop for node in (js2-ast-root-comments js2-mode-ast)
7255 when (and (eq 'block (js2-comment-node-format node))
7256 (save-excursion
7257 (goto-char (js2-node-abs-pos node))
7258 (looking-at "/\\*global ")))
7259 append (js2-get-jslint-globals-in
7260 (match-end 0)
7261 (js2-node-abs-end node))))
7262
7263 (defun js2-get-jslint-globals-in (beg end)
7264 (let (res)
7265 (save-excursion
7266 (goto-char beg)
7267 (while (re-search-forward js2-mode-identifier-re end t)
7268 (let ((match (match-string 0)))
7269 (unless (member match '("true" "false"))
7270 (push match res)))))
7271 (nreverse res)))
7272
7273 ;;; IMenu support
7274
7275 ;; We currently only support imenu, but eventually should support speedbar and
7276 ;; possibly other browsing mechanisms.
7277
7278 ;; The basic strategy is to identify function assignment targets of the form
7279 ;; `foo.bar.baz', convert them to (list fn foo bar baz <position>), and push the
7280 ;; list into `js2-imenu-recorder'. The lists are merged into a trie-like tree
7281 ;; for imenu after parsing is finished.
7282
7283 ;; A `foo.bar.baz' assignment target may be expressed in many ways in
7284 ;; JavaScript, and the general problem is undecidable. However, several forms
7285 ;; are readily recognizable at parse-time; the forms we attempt to recognize
7286 ;; include:
7287
7288 ;; function foo() -- function declaration
7289 ;; foo = function() -- function expression assigned to variable
7290 ;; foo.bar.baz = function() -- function expr assigned to nested property-get
7291 ;; foo = {bar: function()} -- fun prop in object literal assigned to var
7292 ;; foo = {bar: {baz: function()}} -- inside nested object literal
7293 ;; foo.bar = {baz: function()}} -- obj lit assigned to nested prop get
7294 ;; a.b = {c: {d: function()}} -- nested obj lit assigned to nested prop get
7295 ;; foo = {get bar() {...}} -- getter/setter in obj literal
7296 ;; function foo() {function bar() {...}} -- nested function
7297 ;; foo['a'] = function() -- fun expr assigned to deterministic element-get
7298
7299 ;; This list boils down to a few forms that can be combined recursively.
7300 ;; Top-level named function declarations include both the left-hand (name)
7301 ;; and the right-hand (function value) expressions needed to produce an imenu
7302 ;; entry. The other "right-hand" forms we need to look for are:
7303 ;; - functions declared as props/getters/setters in object literals
7304 ;; - nested named function declarations
7305 ;; The "left-hand" expressions that functions can be assigned to include:
7306 ;; - local/global variables
7307 ;; - nested property-get expressions like a.b.c.d
7308 ;; - element gets like foo[10] or foo['bar'] where the index
7309 ;; expression can be trivially converted to a property name. They
7310 ;; effectively then become property gets.
7311
7312 ;; All the different definition types are canonicalized into the form
7313 ;; foo.bar.baz = position-of-function-keyword
7314
7315 ;; We need to build a trie-like structure for imenu. As an example,
7316 ;; consider the following JavaScript code:
7317
7318 ;; a = function() {...} // function at position 5
7319 ;; b = function() {...} // function at position 25
7320 ;; foo = function() {...} // function at position 100
7321 ;; foo.bar = function() {...} // function at position 200
7322 ;; foo.bar.baz = function() {...} // function at position 300
7323 ;; foo.bar.zab = function() {...} // function at position 400
7324
7325 ;; During parsing we accumulate an entry for each definition in
7326 ;; the variable `js2-imenu-recorder', like so:
7327
7328 ;; '((fn a 5)
7329 ;; (fn b 25)
7330 ;; (fn foo 100)
7331 ;; (fn foo bar 200)
7332 ;; (fn foo bar baz 300)
7333 ;; (fn foo bar zab 400))
7334
7335 ;; Where 'fn' is the respective function node.
7336 ;; After parsing these entries are merged into this alist-trie:
7337
7338 ;; '((a . 1)
7339 ;; (b . 2)
7340 ;; (foo (<definition> . 3)
7341 ;; (bar (<definition> . 6)
7342 ;; (baz . 100)
7343 ;; (zab . 200))))
7344
7345 ;; Note the wacky need for a <definition> name. The token can be anything
7346 ;; that isn't a valid JavaScript identifier, because you might make foo
7347 ;; a function and then start setting properties on it that are also functions.
7348
7349 (defun js2-prop-node-name (node)
7350 "Return the name of a node that may be a property-get/property-name.
7351 If NODE is not a valid name-node, string-node or integral number-node,
7352 returns nil. Otherwise returns the string name/value of the node."
7353 (cond
7354 ((js2-name-node-p node)
7355 (js2-name-node-name node))
7356 ((js2-string-node-p node)
7357 (js2-string-node-value node))
7358 ((and (js2-number-node-p node)
7359 (string-match "^[0-9]+$" (js2-number-node-value node)))
7360 (js2-number-node-value node))
7361 ((eq (js2-node-type node) js2-THIS)
7362 "this")
7363 ((eq (js2-node-type node) js2-SUPER)
7364 "super")))
7365
7366 (defun js2-node-qname-component (node)
7367 "Return the name of this node, if it contributes to a qname.
7368 Returns nil if the node doesn't contribute."
7369 (copy-sequence
7370 (or (js2-prop-node-name node)
7371 (if (and (js2-function-node-p node)
7372 (js2-function-node-name node))
7373 (js2-name-node-name (js2-function-node-name node))))))
7374
7375 (defun js2-record-imenu-entry (fn-node qname pos)
7376 "Add an entry to `js2-imenu-recorder'.
7377 FN-NODE should be the current item's function node.
7378
7379 Associate FN-NODE with its QNAME for later lookup.
7380 This is used in postprocessing the chain list. For each chain, we find
7381 the parent function, look up its qname, then prepend a copy of it to the chain."
7382 (push (cons fn-node (append qname (list pos))) js2-imenu-recorder)
7383 (unless js2-imenu-function-map
7384 (setq js2-imenu-function-map (make-hash-table :test 'eq)))
7385 (puthash fn-node qname js2-imenu-function-map))
7386
7387 (defun js2-record-imenu-functions (node &optional var)
7388 "Record function definitions for imenu.
7389 NODE is a function node or an object literal.
7390 VAR, if non-nil, is the expression that NODE is being assigned to.
7391 When passed arguments of wrong type, does nothing."
7392 (when js2-parse-ide-mode
7393 (let ((fun-p (js2-function-node-p node))
7394 qname fname-node)
7395 (cond
7396 ;; non-anonymous function declaration?
7397 ((and fun-p
7398 (not var)
7399 (setq fname-node (js2-function-node-name node)))
7400 (js2-record-imenu-entry node (list fname-node) (js2-node-pos node)))
7401 ;; for remaining forms, compute left-side tree branch first
7402 ((and var (setq qname (js2-compute-nested-prop-get var)))
7403 (cond
7404 ;; foo.bar.baz = function
7405 (fun-p
7406 (js2-record-imenu-entry node qname (js2-node-pos node)))
7407 ;; foo.bar.baz = object-literal
7408 ;; look for nested functions: {a: {b: function() {...} }}
7409 ((js2-object-node-p node)
7410 ;; Node position here is still absolute, since the parser
7411 ;; passes the assignment target and value expressions
7412 ;; to us before they are added as children of the assignment node.
7413 (js2-record-object-literal node qname (js2-node-pos node)))))))))
7414
7415 (defun js2-compute-nested-prop-get (node)
7416 "If NODE is of form foo.bar, foo['bar'], or any nested combination, return
7417 component nodes as a list. Otherwise return nil. Element-gets are treated
7418 as property-gets if the index expression is a string, or a positive integer."
7419 (let (left right head)
7420 (cond
7421 ((or (js2-name-node-p node)
7422 (js2-this-or-super-node-p node))
7423 (list node))
7424 ;; foo.bar.baz is parenthesized as (foo.bar).baz => right operand is a leaf
7425 ((js2-prop-get-node-p node) ; foo.bar
7426 (setq left (js2-prop-get-node-left node)
7427 right (js2-prop-get-node-right node))
7428 (if (setq head (js2-compute-nested-prop-get left))
7429 (nconc head (list right))))
7430 ((js2-elem-get-node-p node) ; foo['bar'] or foo[101]
7431 (setq left (js2-elem-get-node-target node)
7432 right (js2-elem-get-node-element node))
7433 (if (or (js2-string-node-p right) ; ['bar']
7434 (and (js2-number-node-p right) ; [10]
7435 (string-match "^[0-9]+$"
7436 (js2-number-node-value right))))
7437 (if (setq head (js2-compute-nested-prop-get left))
7438 (nconc head (list right))))))))
7439
7440 (defun js2-record-object-literal (node qname pos)
7441 "Recursively process an object literal looking for functions.
7442 NODE is an object literal that is the right-hand child of an assignment
7443 expression. QNAME is a list of nodes representing the assignment target,
7444 e.g. for foo.bar.baz = {...}, QNAME is (foo-node bar-node baz-node).
7445 POS is the absolute position of the node.
7446 We do a depth-first traversal of NODE. For any functions we find,
7447 we append the property name to QNAME, then call `js2-record-imenu-entry'."
7448 (let (right)
7449 (dolist (e (js2-object-node-elems node)) ; e is a `js2-object-prop-node'
7450 (let ((left (js2-infix-node-left e))
7451 ;; Element positions are relative to the parent position.
7452 (pos (+ pos (js2-node-pos e))))
7453 (cond
7454 ;; foo: function() {...}
7455 ((js2-function-node-p (setq right (js2-infix-node-right e)))
7456 (when (js2-prop-node-name left)
7457 ;; As a policy decision, we record the position of the property,
7458 ;; not the position of the `function' keyword, since the property
7459 ;; is effectively the name of the function.
7460 (js2-record-imenu-entry right (append qname (list left)) pos)))
7461 ;; foo: {object-literal} -- add foo to qname, offset position, and recurse
7462 ((js2-object-node-p right)
7463 (js2-record-object-literal right
7464 (append qname (list (js2-infix-node-left e)))
7465 (+ pos (js2-node-pos right)))))))))
7466
7467 (defun js2-node-top-level-decl-p (node)
7468 "Return t if NODE's name is defined in the top-level scope.
7469 Also returns t if NODE's name is not defined in any scope, since it implies
7470 that it's an external variable, which must also be in the top-level scope."
7471 (let* ((name (js2-prop-node-name node))
7472 (this-scope (js2-node-get-enclosing-scope node))
7473 defining-scope)
7474 (cond
7475 ((js2-this-or-super-node-p node)
7476 nil)
7477 ((null this-scope)
7478 t)
7479 ((setq defining-scope (js2-get-defining-scope this-scope name))
7480 (js2-ast-root-p defining-scope))
7481 (t t))))
7482
7483 (defun js2-wrapper-function-p (node)
7484 "Return t if NODE is a function expression that's immediately invoked.
7485 NODE must be `js2-function-node'."
7486 (let ((parent (js2-node-parent node)))
7487 (or
7488 ;; function(){...}();
7489 (and (js2-call-node-p parent)
7490 (eq node (js2-call-node-target parent)))
7491 (and (js2-paren-node-p parent)
7492 ;; (function(){...})();
7493 (or (js2-call-node-p (setq parent (js2-node-parent parent)))
7494 ;; (function(){...}).call(this);
7495 (and (js2-prop-get-node-p parent)
7496 (member (js2-name-node-name (js2-prop-get-node-right parent))
7497 '("call" "apply"))
7498 (js2-call-node-p (js2-node-parent parent))))))))
7499
7500 (defun js2-browse-postprocess-chains ()
7501 "Modify function-declaration name chains after parsing finishes.
7502 Some of the information is only available after the parse tree is complete.
7503 For instance, processing a nested scope requires a parent function node."
7504 (let (result fn parent-qname p elem)
7505 (dolist (entry js2-imenu-recorder)
7506 ;; function node goes first
7507 (cl-destructuring-bind (current-fn &rest (&whole chain head &rest)) entry
7508 ;; Examine head's defining scope:
7509 ;; Pre-processed chain, or top-level/external, keep as-is.
7510 (if (or (stringp head) (js2-node-top-level-decl-p head))
7511 (push chain result)
7512 (when (js2-this-or-super-node-p head)
7513 (setq chain (cdr chain))) ; discard this-node
7514 (when (setq fn (js2-node-parent-script-or-fn current-fn))
7515 (setq parent-qname (gethash fn js2-imenu-function-map 'not-found))
7516 (when (eq parent-qname 'not-found)
7517 ;; anonymous function expressions are not recorded
7518 ;; during the parse, so we need to handle this case here
7519 (setq parent-qname
7520 (if (js2-wrapper-function-p fn)
7521 (let ((grandparent (js2-node-parent-script-or-fn fn)))
7522 (if (js2-ast-root-p grandparent)
7523 nil
7524 (gethash grandparent js2-imenu-function-map 'skip)))
7525 'skip))
7526 (puthash fn parent-qname js2-imenu-function-map))
7527 (if (eq parent-qname 'skip)
7528 ;; We don't show it, let's record that fact.
7529 (remhash current-fn js2-imenu-function-map)
7530 ;; Prepend parent fn qname to this chain.
7531 (let ((qname (append parent-qname chain)))
7532 (puthash current-fn (butlast qname) js2-imenu-function-map)
7533 (push qname result)))))))
7534 ;; Collect chains obtained by third-party code.
7535 (let (js2-imenu-recorder)
7536 (run-hooks 'js2-build-imenu-callbacks)
7537 (dolist (entry js2-imenu-recorder)
7538 (push (cdr entry) result)))
7539 ;; Finally replace each node in each chain with its name.
7540 (dolist (chain result)
7541 (setq p chain)
7542 (while p
7543 (if (js2-node-p (setq elem (car p)))
7544 (setcar p (js2-node-qname-component elem)))
7545 (setq p (cdr p))))
7546 result))
7547
7548 ;; Merge name chains into a trie-like tree structure of nested lists.
7549 ;; To simplify construction of the trie, we first build it out using the rule
7550 ;; that the trie consists of lists of pairs. Each pair is a 2-element array:
7551 ;; [key, num-or-list]. The second element can be a number; if so, this key
7552 ;; is a leaf-node with only one value. (I.e. there is only one declaration
7553 ;; associated with the key at this level.) Otherwise the second element is
7554 ;; a list of pairs, with the rule applied recursively. This symmetry permits
7555 ;; a simple recursive formulation.
7556 ;;
7557 ;; js2-mode is building the data structure for imenu. The imenu documentation
7558 ;; claims that it's the structure above, but in practice it wants the children
7559 ;; at the same list level as the key for that level, which is how I've drawn
7560 ;; the "Expected final result" above. We'll postprocess the trie to remove the
7561 ;; list wrapper around the children at each level.
7562 ;;
7563 ;; A completed nested imenu-alist entry looks like this:
7564 ;; '(("foo"
7565 ;; ("<definition>" . 7)
7566 ;; ("bar"
7567 ;; ("a" . 40)
7568 ;; ("b" . 60))))
7569 ;;
7570 ;; In particular, the documentation for `imenu--index-alist' says that
7571 ;; a nested sub-alist element looks like (INDEX-NAME SUB-ALIST).
7572 ;; The sub-alist entries immediately follow INDEX-NAME, the head of the list.
7573
7574 (defun js2-treeify (lst)
7575 "Convert (a b c d) to (a ((b ((c d)))))."
7576 (if (null (cddr lst)) ; list length <= 2
7577 lst
7578 (list (car lst) (list (js2-treeify (cdr lst))))))
7579
7580 (defun js2-build-alist-trie (chains trie)
7581 "Merge declaration name chains into a trie-like alist structure for imenu.
7582 CHAINS is the qname chain list produced during parsing. TRIE is a
7583 list of elements built up so far."
7584 (let (head tail pos branch kids)
7585 (dolist (chain chains)
7586 (setq head (car chain)
7587 tail (cdr chain)
7588 pos (if (numberp (car tail)) (car tail))
7589 branch (js2-find-if (lambda (n)
7590 (string= (car n) head))
7591 trie)
7592 kids (cl-second branch))
7593 (cond
7594 ;; case 1: this key isn't in the trie yet
7595 ((null branch)
7596 (if trie
7597 (setcdr (last trie) (list (js2-treeify chain)))
7598 (setq trie (list (js2-treeify chain)))))
7599 ;; case 2: key is present with a single number entry: replace w/ list
7600 ;; ("a1" 10) + ("a1" 20) => ("a1" (("<definition>" 10)
7601 ;; ("<definition>" 20)))
7602 ((numberp kids)
7603 (setcar (cdr branch)
7604 (list (list "<definition-1>" kids)
7605 (if pos
7606 (list "<definition-2>" pos)
7607 (js2-treeify tail)))))
7608 ;; case 3: key is there (with kids), and we're a number entry
7609 (pos
7610 (setcdr (last kids)
7611 (list
7612 (list (format "<definition-%d>"
7613 (1+ (cl-loop for kid in kids
7614 count (eq ?< (aref (car kid) 0)))))
7615 pos))))
7616 ;; case 4: key is there with kids, need to merge in our chain
7617 (t
7618 (js2-build-alist-trie (list tail) kids))))
7619 trie))
7620
7621 (defun js2-flatten-trie (trie)
7622 "Convert TRIE to imenu-format.
7623 Recurses through nodes, and for each one whose second element is a list,
7624 appends the list's flattened elements to the current element. Also
7625 changes the tails into conses. For instance, this pre-flattened trie
7626
7627 '(a ((b 20)
7628 (c ((d 30)
7629 (e 40)))))
7630
7631 becomes
7632
7633 '(a (b . 20)
7634 (c (d . 30)
7635 (e . 40)))
7636
7637 Note that the root of the trie has no key, just a list of chains.
7638 This is also true for the value of any key with multiple children,
7639 e.g. key 'c' in the example above."
7640 (cond
7641 ((listp (car trie))
7642 (mapcar #'js2-flatten-trie trie))
7643 (t
7644 (if (numberp (cl-second trie))
7645 (cons (car trie) (cl-second trie))
7646 ;; else pop list and append its kids
7647 (apply #'append (list (car trie)) (js2-flatten-trie (cdr trie)))))))
7648
7649 (defun js2-build-imenu-index ()
7650 "Turn `js2-imenu-recorder' into an imenu data structure."
7651 (when (eq js2-imenu-recorder 'empty)
7652 (setq js2-imenu-recorder nil))
7653 (let* ((chains (js2-browse-postprocess-chains))
7654 (result (js2-build-alist-trie chains nil)))
7655 (js2-flatten-trie result)))
7656
7657 (defun js2-test-print-chains (chains)
7658 "Print a list of qname chains.
7659 Each element of CHAINS is a list of the form (NODE [NODE *] pos);
7660 i.e. one or more nodes, and an integer position as the list tail."
7661 (mapconcat (lambda (chain)
7662 (concat "("
7663 (mapconcat (lambda (elem)
7664 (if (js2-node-p elem)
7665 (or (js2-node-qname-component elem)
7666 "nil")
7667 (number-to-string elem)))
7668 chain
7669 " ")
7670 ")"))
7671 chains
7672 "\n"))
7673
7674 ;;; Parser
7675
7676 (defconst js2-version "1.8.5"
7677 "Version of JavaScript supported.")
7678
7679 (defun js2-record-face (face &optional token)
7680 "Record a style run of FACE for TOKEN or the current token."
7681 (unless token (setq token (js2-current-token)))
7682 (js2-set-face (js2-token-beg token) (js2-token-end token) face 'record))
7683
7684 (defsubst js2-node-end (n)
7685 "Computes the absolute end of node N.
7686 Use with caution! Assumes `js2-node-pos' is -absolute-, which
7687 is only true until the node is added to its parent; i.e., while parsing."
7688 (+ (js2-node-pos n)
7689 (js2-node-len n)))
7690
7691 (defun js2-record-comment (token)
7692 "Record a comment in `js2-scanned-comments'."
7693 (let ((ct (js2-token-comment-type token))
7694 (beg (js2-token-beg token))
7695 (end (js2-token-end token)))
7696 (push (make-js2-comment-node :len (- end beg)
7697 :format ct)
7698 js2-scanned-comments)
7699 (when js2-parse-ide-mode
7700 (js2-record-face (if (eq ct 'jsdoc)
7701 'font-lock-doc-face
7702 'font-lock-comment-face)
7703 token)
7704 (when (memq ct '(html preprocessor))
7705 ;; Tell cc-engine the bounds of the comment.
7706 (js2-record-text-property beg (1- end) 'c-in-sws t)))))
7707
7708 (defun js2-peek-token ()
7709 "Return the next token type without consuming it.
7710 If `js2-ti-lookahead' is positive, return the type of next token
7711 from `js2-ti-tokens'. Otherwise, call `js2-get-token'."
7712 (if (not (zerop js2-ti-lookahead))
7713 (js2-token-type
7714 (aref js2-ti-tokens (mod (1+ js2-ti-tokens-cursor) js2-ti-ntokens)))
7715 (let ((tt (js2-get-token-internal nil)))
7716 (js2-unget-token)
7717 tt)))
7718
7719 (defalias 'js2-next-token 'js2-get-token)
7720
7721 (defun js2-match-token (match &optional dont-unget)
7722 "Get next token and return t if it matches MATCH, a bytecode.
7723 Returns nil and consumes nothing if MATCH is not the next token."
7724 (if (/= (js2-get-token) match)
7725 (ignore (unless dont-unget (js2-unget-token)))
7726 t))
7727
7728 (defun js2-match-contextual-kwd (name)
7729 "Consume and return t if next token is `js2-NAME', and its
7730 string is NAME. Returns nil and keeps current token otherwise."
7731 (if (js2-contextual-kwd-p (progn (js2-get-token)
7732 (js2-current-token))
7733 name)
7734 (progn (js2-record-face 'font-lock-keyword-face) t)
7735 (js2-unget-token)
7736 nil))
7737
7738 (defun js2-contextual-kwd-p (token name)
7739 "Return t if TOKEN is `js2-NAME', and its string is NAME."
7740 (and (= (js2-token-type token) js2-NAME)
7741 (string= (js2-token-string token) name)))
7742
7743 (defun js2-match-async-function ()
7744 (when (and (js2-contextual-kwd-p (js2-current-token) "async")
7745 (= (js2-peek-token) js2-FUNCTION))
7746 (js2-record-face 'font-lock-keyword-face)
7747 (js2-get-token)
7748 t))
7749
7750 (defun js2-match-async-arrow-function ()
7751 (when (and (js2-contextual-kwd-p (js2-current-token) "async")
7752 (/= (js2-peek-token) js2-FUNCTION))
7753 (js2-record-face 'font-lock-keyword-face)
7754 (js2-get-token)
7755 t))
7756
7757 (defun js2-match-await (tt)
7758 (when (and (= tt js2-NAME)
7759 (js2-contextual-kwd-p (js2-current-token) "await"))
7760 (js2-record-face 'font-lock-keyword-face)
7761 (let ((beg (js2-current-token-beg))
7762 (end (js2-current-token-end)))
7763 (js2-get-token)
7764 (unless (and (js2-inside-function)
7765 (js2-function-node-async js2-current-script-or-fn))
7766 (js2-report-error "msg.bad.await" nil
7767 beg (- end beg))))
7768 t))
7769
7770 (defun js2-get-prop-name-token ()
7771 (js2-get-token (and (>= js2-language-version 170) 'KEYWORD_IS_NAME)))
7772
7773 (defun js2-match-prop-name ()
7774 "Consume token and return t if next token is a valid property name.
7775 If `js2-language-version' is >= 180, a keyword or reserved word
7776 is considered valid name as well."
7777 (if (eq js2-NAME (js2-get-prop-name-token))
7778 t
7779 (js2-unget-token)
7780 nil))
7781
7782 (defun js2-must-match-prop-name (msg-id &optional pos len)
7783 (if (js2-match-prop-name)
7784 t
7785 (js2-report-error msg-id nil pos len)
7786 nil))
7787
7788 (defun js2-peek-token-or-eol ()
7789 "Return js2-EOL if the next token immediately follows a newline.
7790 Else returns the next token. Used in situations where we don't
7791 consider certain token types valid if they are preceded by a newline.
7792 One example is the postfix ++ or -- operator, which has to be on the
7793 same line as its operand."
7794 (let ((tt (js2-get-token))
7795 (follows-eol (js2-token-follows-eol-p (js2-current-token))))
7796 (js2-unget-token)
7797 (if follows-eol
7798 js2-EOL
7799 tt)))
7800
7801 (defun js2-must-match (token msg-id &optional pos len)
7802 "Match next token to token code TOKEN, or record a syntax error.
7803 MSG-ID is the error message to report if the match fails.
7804 Returns t on match, nil if no match."
7805 (if (js2-match-token token t)
7806 t
7807 (js2-report-error msg-id nil pos len)
7808 (js2-unget-token)
7809 nil))
7810
7811 (defun js2-must-match-name (msg-id)
7812 (if (js2-match-token js2-NAME t)
7813 t
7814 (if (eq (js2-current-token-type) js2-RESERVED)
7815 (js2-report-error "msg.reserved.id" (js2-current-token-string))
7816 (js2-report-error msg-id)
7817 (js2-unget-token))
7818 nil))
7819
7820 (defsubst js2-inside-function ()
7821 (cl-plusp js2-nesting-of-function))
7822
7823 (defun js2-set-requires-activation ()
7824 (if (js2-function-node-p js2-current-script-or-fn)
7825 (setf (js2-function-node-needs-activation js2-current-script-or-fn) t)))
7826
7827 (defun js2-check-activation-name (name _token)
7828 (when (js2-inside-function)
7829 ;; skip language-version 1.2 check from Rhino
7830 (if (or (string= "arguments" name)
7831 (and js2-compiler-activation-names ; only used in codegen
7832 (gethash name js2-compiler-activation-names)))
7833 (js2-set-requires-activation))))
7834
7835 (defun js2-set-is-generator ()
7836 (let ((fn-node js2-current-script-or-fn))
7837 (when (and (js2-function-node-p fn-node)
7838 (not (js2-function-node-generator-type fn-node)))
7839 (setf (js2-function-node-generator-type js2-current-script-or-fn) 'LEGACY))))
7840
7841 (defun js2-must-have-xml ()
7842 (unless js2-compiler-xml-available
7843 (js2-report-error "msg.XML.not.available")))
7844
7845 (defun js2-push-scope (scope)
7846 "Push SCOPE, a `js2-scope', onto the lexical scope chain."
7847 (cl-assert (js2-scope-p scope))
7848 (cl-assert (null (js2-scope-parent-scope scope)))
7849 (cl-assert (not (eq js2-current-scope scope)))
7850 (setf (js2-scope-parent-scope scope) js2-current-scope
7851 js2-current-scope scope))
7852
7853 (defsubst js2-pop-scope ()
7854 (setq js2-current-scope
7855 (js2-scope-parent-scope js2-current-scope)))
7856
7857 (defun js2-enter-loop (loop-node)
7858 (push loop-node js2-loop-set)
7859 (push loop-node js2-loop-and-switch-set)
7860 (js2-push-scope loop-node)
7861 ;; Tell the current labeled statement (if any) its statement,
7862 ;; and set the jump target of the first label to the loop.
7863 ;; These are used in `js2-parse-continue' to verify that the
7864 ;; continue target is an actual labeled loop. (And for codegen.)
7865 (when js2-labeled-stmt
7866 (setf (js2-labeled-stmt-node-stmt js2-labeled-stmt) loop-node
7867 (js2-label-node-loop (car (js2-labeled-stmt-node-labels
7868 js2-labeled-stmt))) loop-node)))
7869
7870 (defun js2-exit-loop ()
7871 (pop js2-loop-set)
7872 (pop js2-loop-and-switch-set)
7873 (js2-pop-scope))
7874
7875 (defsubst js2-enter-switch (switch-node)
7876 (push switch-node js2-loop-and-switch-set))
7877
7878 (defsubst js2-exit-switch ()
7879 (pop js2-loop-and-switch-set))
7880
7881 (defsubst js2-get-directive (node)
7882 "Return NODE's value if it is a directive, nil otherwise.
7883
7884 A directive is an otherwise-meaningless expression statement
7885 consisting of a string literal, such as \"use strict\"."
7886 (and (js2-expr-stmt-node-p node)
7887 (js2-string-node-p (setq node (js2-expr-stmt-node-expr node)))
7888 (js2-string-node-value node)))
7889
7890 (defun js2-parse (&optional buf cb)
7891 "Tell the js2 parser to parse a region of JavaScript.
7892
7893 BUF is a buffer or buffer name containing the code to parse.
7894 Call `narrow-to-region' first to parse only part of the buffer.
7895
7896 The returned AST root node is given some additional properties:
7897 `node-count' - total number of nodes in the AST
7898 `buffer' - BUF. The buffer it refers to may change or be killed,
7899 so the value is not necessarily reliable.
7900
7901 An optional callback CB can be specified to report parsing
7902 progress. If `(functionp CB)' returns t, it will be called with
7903 the current line number once before parsing begins, then again
7904 each time the lexer reaches a new line number.
7905
7906 CB can also be a list of the form `(symbol cb ...)' to specify
7907 multiple callbacks with different criteria. Each symbol is a
7908 criterion keyword, and the following element is the callback to
7909 call
7910
7911 :line - called whenever the line number changes
7912 :token - called for each new token consumed
7913
7914 The list of criteria could be extended to include entering or
7915 leaving a statement, an expression, or a function definition."
7916 (if (and cb (not (functionp cb)))
7917 (error "criteria callbacks not yet implemented"))
7918 (let ((inhibit-point-motion-hooks t)
7919 (js2-compiler-xml-available (>= js2-language-version 160))
7920 ;; This is a recursive-descent parser, so give it a big stack.
7921 (max-lisp-eval-depth (max max-lisp-eval-depth 3000))
7922 (max-specpdl-size (max max-specpdl-size 3000))
7923 (case-fold-search nil)
7924 ast)
7925 (with-current-buffer (or buf (current-buffer))
7926 (setq js2-scanned-comments nil
7927 js2-parsed-errors nil
7928 js2-parsed-warnings nil
7929 js2-imenu-recorder nil
7930 js2-imenu-function-map nil
7931 js2-label-set nil)
7932 (js2-init-scanner)
7933 (setq ast (js2-do-parse))
7934 (unless js2-ts-hit-eof
7935 (js2-report-error "msg.got.syntax.errors" (length js2-parsed-errors)))
7936 (setf (js2-ast-root-errors ast) js2-parsed-errors
7937 (js2-ast-root-warnings ast) js2-parsed-warnings)
7938 ;; if we didn't find any declarations, put a dummy in this list so we
7939 ;; don't end up re-parsing the buffer in `js2-mode-create-imenu-index'
7940 (unless js2-imenu-recorder
7941 (setq js2-imenu-recorder 'empty))
7942 (run-hooks 'js2-parse-finished-hook)
7943 ast)))
7944
7945 ;; Corresponds to Rhino's Parser.parse() method.
7946 (defun js2-do-parse ()
7947 "Parse current buffer starting from current point.
7948 Scanner should be initialized."
7949 (let ((pos js2-ts-cursor)
7950 (end js2-ts-cursor) ; in case file is empty
7951 root n tt
7952 (in-directive-prologue t)
7953 (js2-in-use-strict-directive js2-in-use-strict-directive)
7954 directive)
7955 ;; initialize buffer-local parsing vars
7956 (setf root (make-js2-ast-root :buffer (buffer-name) :pos pos)
7957 js2-current-script-or-fn root
7958 js2-current-scope root
7959 js2-nesting-of-function 0
7960 js2-labeled-stmt nil
7961 js2-recorded-identifiers nil ; for js2-highlight
7962 js2-in-use-strict-directive nil)
7963 (while (/= (setq tt (js2-get-token)) js2-EOF)
7964 (if (= tt js2-FUNCTION)
7965 (progn
7966 (setq n (if js2-called-by-compile-function
7967 (js2-parse-function-expr)
7968 (js2-parse-function-stmt))))
7969 ;; not a function - parse a statement
7970 (js2-unget-token)
7971 (setq n (js2-parse-statement))
7972 (when in-directive-prologue
7973 (setq directive (js2-get-directive n))
7974 (cond
7975 ((null directive)
7976 (setq in-directive-prologue nil))
7977 ((string= directive "use strict")
7978 (setq js2-in-use-strict-directive t)))))
7979 ;; add function or statement to script
7980 (setq end (js2-node-end n))
7981 (js2-block-node-push root n))
7982 ;; add comments to root in lexical order
7983 (when js2-scanned-comments
7984 ;; if we find a comment beyond end of normal kids, use its end
7985 (setq end (max end (js2-node-end (cl-first js2-scanned-comments))))
7986 (dolist (comment js2-scanned-comments)
7987 (push comment (js2-ast-root-comments root))
7988 (js2-node-add-children root comment)))
7989 (setf (js2-node-len root) (- end pos))
7990 (setq js2-mode-ast root) ; Make sure this is available for callbacks.
7991 ;; Give extensions a chance to muck with things before highlighting starts.
7992 (let ((js2-additional-externs js2-additional-externs))
7993 (save-excursion
7994 (run-hooks 'js2-post-parse-callbacks))
7995 (js2-highlight-undeclared-vars))
7996 root))
7997
7998 (defun js2-parse-function-closure-body (fn-node)
7999 "Parse a JavaScript 1.8 function closure body."
8000 (let ((js2-nesting-of-function (1+ js2-nesting-of-function)))
8001 (if js2-ts-hit-eof
8002 (js2-report-error "msg.no.brace.body" nil
8003 (js2-node-pos fn-node)
8004 (- js2-ts-cursor (js2-node-pos fn-node)))
8005 (js2-node-add-children fn-node
8006 (setf (js2-function-node-body fn-node)
8007 (js2-parse-expr t))))))
8008
8009 (defun js2-parse-function-body (fn-node)
8010 (js2-must-match js2-LC "msg.no.brace.body"
8011 (js2-node-pos fn-node)
8012 (- js2-ts-cursor (js2-node-pos fn-node)))
8013 (let ((pos (js2-current-token-beg)) ; LC position
8014 (pn (make-js2-block-node)) ; starts at LC position
8015 tt
8016 end
8017 not-in-directive-prologue
8018 node
8019 directive)
8020 (cl-incf js2-nesting-of-function)
8021 (unwind-protect
8022 (while (not (or (= (setq tt (js2-peek-token)) js2-ERROR)
8023 (= tt js2-EOF)
8024 (= tt js2-RC)))
8025 (js2-block-node-push
8026 pn
8027 (if (/= tt js2-FUNCTION)
8028 (if not-in-directive-prologue
8029 (js2-parse-statement)
8030 (setq node (js2-parse-statement)
8031 directive (js2-get-directive node))
8032 (cond
8033 ((null directive)
8034 (setq not-in-directive-prologue t))
8035 ((string= directive "use strict")
8036 ;; Back up and reparse the function, because new rules apply
8037 ;; to the function name and parameters.
8038 (when (not js2-in-use-strict-directive)
8039 (setq js2-in-use-strict-directive t)
8040 (throw 'reparse t))))
8041 node)
8042 (js2-get-token)
8043 (js2-parse-function-stmt))))
8044 (cl-decf js2-nesting-of-function))
8045 (setq end (js2-current-token-end)) ; assume no curly and leave at current token
8046 (if (js2-must-match js2-RC "msg.no.brace.after.body" pos)
8047 (setq end (js2-current-token-end)))
8048 (setf (js2-node-pos pn) pos
8049 (js2-node-len pn) (- end pos))
8050 (setf (js2-function-node-body fn-node) pn)
8051 (js2-node-add-children fn-node pn)
8052 pn))
8053
8054 (defun js2-define-destruct-symbols (node decl-type face &optional ignore-not-in-block)
8055 "Declare and fontify destructuring parameters inside NODE.
8056 NODE is either `js2-array-node', `js2-object-node', or `js2-name-node'.
8057
8058 Return a list of `js2-name-node' nodes representing the symbols
8059 declared; probably to check them for errors."
8060 (let (name-nodes)
8061 (cond
8062 ((js2-name-node-p node)
8063 (let (leftpos)
8064 (js2-define-symbol decl-type (js2-name-node-name node)
8065 node ignore-not-in-block)
8066 (when face
8067 (js2-set-face (setq leftpos (js2-node-abs-pos node))
8068 (+ leftpos (js2-node-len node))
8069 face 'record))
8070 (list node)))
8071 ((js2-object-node-p node)
8072 (dolist (elem (js2-object-node-elems node))
8073 ;; js2-infix-node-p catches both object prop node and initialized
8074 ;; binding element (which is directly an infix node).
8075 (when (js2-infix-node-p elem)
8076 (push (js2-define-destruct-symbols
8077 (js2-infix-node-left elem)
8078 decl-type face ignore-not-in-block)
8079 name-nodes)))
8080 (apply #'append (nreverse name-nodes)))
8081 ((js2-array-node-p node)
8082 (dolist (elem (js2-array-node-elems node))
8083 (when elem
8084 (if (js2-infix-node-p elem) (setq elem (js2-infix-node-left elem)))
8085 (push (js2-define-destruct-symbols
8086 elem decl-type face ignore-not-in-block)
8087 name-nodes)))
8088 (apply #'append (nreverse name-nodes)))
8089 (t (js2-report-error "msg.no.parm" nil (js2-node-abs-pos node)
8090 (js2-node-len node))
8091 nil))))
8092
8093 (defvar js2-illegal-strict-identifiers
8094 '("eval" "arguments")
8095 "Identifiers not allowed as variables in strict mode.")
8096
8097 (defun js2-check-strict-identifier (name-node)
8098 "Check that NAME-NODE makes a legal strict mode identifier."
8099 (when js2-in-use-strict-directive
8100 (let ((param-name (js2-name-node-name name-node)))
8101 (when (member param-name js2-illegal-strict-identifiers)
8102 (js2-report-error "msg.bad.id.strict" param-name
8103 (js2-node-abs-pos name-node) (js2-node-len name-node))))))
8104
8105 (defun js2-check-strict-function-params (preceding-params params)
8106 "Given PRECEDING-PARAMS in a function's parameter list, check
8107 for strict mode errors caused by PARAMS."
8108 (when js2-in-use-strict-directive
8109 (dolist (param params)
8110 (let ((param-name (js2-name-node-name param)))
8111 (js2-check-strict-identifier param)
8112 (when (cl-some (lambda (param)
8113 (string= (js2-name-node-name param) param-name))
8114 preceding-params)
8115 (js2-report-error "msg.dup.param.strict" param-name
8116 (js2-node-abs-pos param) (js2-node-len param)))))))
8117
8118 (defun js2-parse-function-params (function-type fn-node pos)
8119 "Parse the parameters of a function of FUNCTION-TYPE
8120 represented by FN-NODE at POS."
8121 (if (js2-match-token js2-RP)
8122 (setf (js2-function-node-rp fn-node) (- (js2-current-token-beg) pos))
8123 (let ((paren-free-arrow (and (eq function-type 'FUNCTION_ARROW)
8124 (eq (js2-current-token-type) js2-NAME)))
8125 params param
8126 param-name-nodes new-param-name-nodes
8127 rest-param-at)
8128 (when paren-free-arrow
8129 (js2-unget-token))
8130 (cl-loop for tt = (js2-peek-token)
8131 do
8132 (cond
8133 ;; destructuring param
8134 ((and (not paren-free-arrow)
8135 (or (= tt js2-LB) (= tt js2-LC)))
8136 (js2-get-token)
8137 (setq param (js2-parse-destruct-primary-expr)
8138 new-param-name-nodes (js2-define-destruct-symbols
8139 param js2-LP 'js2-function-param))
8140 (js2-check-strict-function-params param-name-nodes new-param-name-nodes)
8141 (setq param-name-nodes (append param-name-nodes new-param-name-nodes)))
8142 ;; variable name
8143 (t
8144 (when (and (>= js2-language-version 200)
8145 (not paren-free-arrow)
8146 (js2-match-token js2-TRIPLEDOT)
8147 (not rest-param-at))
8148 ;; to report errors if there are more parameters
8149 (setq rest-param-at (length params)))
8150 (js2-must-match-name "msg.no.parm")
8151 (js2-record-face 'js2-function-param)
8152 (setq param (js2-create-name-node))
8153 (js2-define-symbol js2-LP (js2-current-token-string) param)
8154 (js2-check-strict-function-params param-name-nodes (list param))
8155 (setq param-name-nodes (append param-name-nodes (list param)))))
8156 ;; default parameter value
8157 (when (and (not rest-param-at)
8158 (>= js2-language-version 200)
8159 (js2-match-token js2-ASSIGN))
8160 (cl-assert (not paren-free-arrow))
8161 (let* ((pos (js2-node-pos param))
8162 (tt (js2-current-token-type))
8163 (op-pos (- (js2-current-token-beg) pos))
8164 (left param)
8165 (right (js2-parse-assign-expr))
8166 (len (- (js2-node-end right) pos)))
8167 (setq param (make-js2-assign-node
8168 :type tt :pos pos :len len :op-pos op-pos
8169 :left left :right right))
8170 (js2-node-add-children param left right)))
8171 (push param params)
8172 (when (and rest-param-at (> (length params) (1+ rest-param-at)))
8173 (js2-report-error "msg.param.after.rest" nil
8174 (js2-node-pos param) (js2-node-len param)))
8175 while
8176 (js2-match-token js2-COMMA))
8177 (when (and (not paren-free-arrow)
8178 (js2-must-match js2-RP "msg.no.paren.after.parms"))
8179 (setf (js2-function-node-rp fn-node) (- (js2-current-token-beg) pos)))
8180 (when rest-param-at
8181 (setf (js2-function-node-rest-p fn-node) t))
8182 (dolist (p params)
8183 (js2-node-add-children fn-node p)
8184 (push p (js2-function-node-params fn-node))))))
8185
8186 (defun js2-check-inconsistent-return-warning (fn-node name)
8187 "Possibly show inconsistent-return warning.
8188 Last token scanned is the close-curly for the function body."
8189 (when (and js2-mode-show-strict-warnings
8190 js2-strict-inconsistent-return-warning
8191 (not (js2-has-consistent-return-usage
8192 (js2-function-node-body fn-node))))
8193 ;; Have it extend from close-curly to bol or beginning of block.
8194 (let ((pos (save-excursion
8195 (goto-char (js2-current-token-end))
8196 (max (js2-node-abs-pos (js2-function-node-body fn-node))
8197 (point-at-bol))))
8198 (end (js2-current-token-end)))
8199 (if (cl-plusp (js2-name-node-length name))
8200 (js2-add-strict-warning "msg.no.return.value"
8201 (js2-name-node-name name) pos end)
8202 (js2-add-strict-warning "msg.anon.no.return.value" nil pos end)))))
8203
8204 (defun js2-parse-function-stmt (&optional async-p)
8205 (let ((pos (js2-current-token-beg))
8206 (star-p (js2-match-token js2-MUL)))
8207 (js2-must-match-name "msg.unnamed.function.stmt")
8208 (let ((name (js2-create-name-node t))
8209 pn member-expr)
8210 (cond
8211 ((js2-match-token js2-LP)
8212 (js2-parse-function 'FUNCTION_STATEMENT pos star-p async-p name))
8213 (js2-allow-member-expr-as-function-name
8214 (setq member-expr (js2-parse-member-expr-tail nil name))
8215 (js2-parse-highlight-member-expr-fn-name member-expr)
8216 (js2-must-match js2-LP "msg.no.paren.parms")
8217 (setf pn (js2-parse-function 'FUNCTION_STATEMENT pos star-p async-p)
8218 (js2-function-node-member-expr pn) member-expr)
8219 pn)
8220 (t
8221 (js2-report-error "msg.no.paren.parms")
8222 (make-js2-error-node))))))
8223
8224 (defun js2-parse-async-function-stmt ()
8225 (js2-parse-function-stmt t))
8226
8227 (defun js2-parse-function-expr (&optional async-p)
8228 (let ((pos (js2-current-token-beg))
8229 (star-p (js2-match-token js2-MUL))
8230 name)
8231 (when (js2-match-token js2-NAME)
8232 (setq name (js2-create-name-node t)))
8233 (js2-must-match js2-LP "msg.no.paren.parms")
8234 (js2-parse-function 'FUNCTION_EXPRESSION pos star-p async-p name)))
8235
8236 (defun js2-parse-function-internal (function-type pos star-p &optional async-p name)
8237 (let (fn-node lp)
8238 (if (= (js2-current-token-type) js2-LP) ; eventually matched LP?
8239 (setq lp (js2-current-token-beg)))
8240 (setf fn-node (make-js2-function-node :pos pos
8241 :name name
8242 :form function-type
8243 :lp (if lp (- lp pos))
8244 :generator-type (and star-p 'STAR)
8245 :async async-p))
8246 (when name
8247 (js2-set-face (js2-node-pos name) (js2-node-end name)
8248 'font-lock-function-name-face 'record)
8249 (when (and (eq function-type 'FUNCTION_STATEMENT)
8250 (cl-plusp (js2-name-node-length name)))
8251 ;; Function statements define a symbol in the enclosing scope
8252 (js2-define-symbol js2-FUNCTION (js2-name-node-name name) fn-node))
8253 (when js2-in-use-strict-directive
8254 (js2-check-strict-identifier name)))
8255 (if (or (js2-inside-function) (cl-plusp js2-nesting-of-with))
8256 ;; 1. Nested functions are not affected by the dynamic scope flag
8257 ;; as dynamic scope is already a parent of their scope.
8258 ;; 2. Functions defined under the with statement also immune to
8259 ;; this setup, in which case dynamic scope is ignored in favor
8260 ;; of the with object.
8261 (setf (js2-function-node-ignore-dynamic fn-node) t))
8262 ;; dynamically bind all the per-function variables
8263 (let ((js2-current-script-or-fn fn-node)
8264 (js2-current-scope fn-node)
8265 (js2-nesting-of-with 0)
8266 (js2-end-flags 0)
8267 js2-label-set
8268 js2-loop-set
8269 js2-loop-and-switch-set)
8270 (js2-parse-function-params function-type fn-node pos)
8271 (when (eq function-type 'FUNCTION_ARROW)
8272 (js2-must-match js2-ARROW "msg.bad.arrow.args"))
8273 (if (and (>= js2-language-version 180)
8274 (/= (js2-peek-token) js2-LC))
8275 (js2-parse-function-closure-body fn-node)
8276 (js2-parse-function-body fn-node))
8277 (js2-check-inconsistent-return-warning fn-node name)
8278
8279 (when name
8280 (js2-node-add-children fn-node name)
8281 ;; Function expressions define a name only in the body of the
8282 ;; function, and only if not hidden by a parameter name
8283 (when (and (eq function-type 'FUNCTION_EXPRESSION)
8284 (null (js2-scope-get-symbol js2-current-scope
8285 (js2-name-node-name name))))
8286 (js2-define-symbol js2-FUNCTION
8287 (js2-name-node-name name)
8288 fn-node))
8289 (when (eq function-type 'FUNCTION_STATEMENT)
8290 (js2-record-imenu-functions fn-node))))
8291
8292 (setf (js2-node-len fn-node) (- js2-ts-cursor pos))
8293 ;; Rhino doesn't do this, but we need it for finding undeclared vars.
8294 ;; We wait until after parsing the function to set its parent scope,
8295 ;; since `js2-define-symbol' needs the defining-scope check to stop
8296 ;; at the function boundary when checking for redeclarations.
8297 (setf (js2-scope-parent-scope fn-node) js2-current-scope)
8298 fn-node))
8299
8300 (defun js2-parse-function (function-type pos star-p &optional async-p name)
8301 "Function parser. FUNCTION-TYPE is a symbol, POS is the
8302 beginning of the first token (function keyword, unless it's an
8303 arrow function), NAME is js2-name-node."
8304 (let ((continue t)
8305 ts-state
8306 fn-node
8307 ;; Preserve strict state outside this function.
8308 (js2-in-use-strict-directive js2-in-use-strict-directive))
8309 ;; Parse multiple times if a new strict mode directive is discovered in the
8310 ;; function body, as new rules will be retroactively applied to the legality
8311 ;; of function names and parameters.
8312 (while continue
8313 (setq ts-state (make-js2-ts-state))
8314 (setq continue (catch 'reparse
8315 (setq fn-node (js2-parse-function-internal
8316 function-type pos star-p async-p name))
8317 ;; Don't continue.
8318 nil))
8319 (when continue
8320 (js2-ts-seek ts-state)))
8321 fn-node))
8322
8323 (defun js2-parse-statements (&optional parent)
8324 "Parse a statement list. Last token consumed must be js2-LC.
8325
8326 PARENT can be a `js2-block-node', in which case the statements are
8327 appended to PARENT. Otherwise a new `js2-block-node' is created
8328 and returned.
8329
8330 This function does not match the closing js2-RC: the caller
8331 matches the RC so it can provide a suitable error message if not
8332 matched. This means it's up to the caller to set the length of
8333 the node to include the closing RC. The node start pos is set to
8334 the absolute buffer start position, and the caller should fix it
8335 up to be relative to the parent node. All children of this block
8336 node are given relative start positions and correct lengths."
8337 (let ((pn (or parent (make-js2-block-node)))
8338 tt)
8339 (while (and (> (setq tt (js2-peek-token)) js2-EOF)
8340 (/= tt js2-RC))
8341 (js2-block-node-push pn (js2-parse-statement)))
8342 pn))
8343
8344 (defun js2-parse-statement ()
8345 (let (pn beg end)
8346 ;; coarse-grained user-interrupt check - needs work
8347 (and js2-parse-interruptable-p
8348 (zerop (% (cl-incf js2-parse-stmt-count)
8349 js2-statements-per-pause))
8350 (input-pending-p)
8351 (throw 'interrupted t))
8352 (setq pn (js2-statement-helper))
8353 ;; no-side-effects warning check
8354 (unless (js2-node-has-side-effects pn)
8355 (setq end (js2-node-end pn))
8356 (save-excursion
8357 (goto-char end)
8358 (setq beg (max (js2-node-pos pn) (point-at-bol))))
8359 (js2-add-strict-warning "msg.no.side.effects" nil beg end))
8360 pn))
8361
8362 ;; These correspond to the switch cases in Parser.statementHelper
8363 (defconst js2-parsers
8364 (let ((parsers (make-vector js2-num-tokens
8365 #'js2-parse-expr-stmt)))
8366 (aset parsers js2-BREAK #'js2-parse-break)
8367 (aset parsers js2-CLASS #'js2-parse-class-stmt)
8368 (aset parsers js2-CONST #'js2-parse-const-var)
8369 (aset parsers js2-CONTINUE #'js2-parse-continue)
8370 (aset parsers js2-DEBUGGER #'js2-parse-debugger)
8371 (aset parsers js2-DEFAULT #'js2-parse-default-xml-namespace)
8372 (aset parsers js2-DO #'js2-parse-do)
8373 (aset parsers js2-EXPORT #'js2-parse-export)
8374 (aset parsers js2-FOR #'js2-parse-for)
8375 (aset parsers js2-FUNCTION #'js2-parse-function-stmt)
8376 (aset parsers js2-IF #'js2-parse-if)
8377 (aset parsers js2-IMPORT #'js2-parse-import)
8378 (aset parsers js2-LC #'js2-parse-block)
8379 (aset parsers js2-LET #'js2-parse-let-stmt)
8380 (aset parsers js2-NAME #'js2-parse-name-or-label)
8381 (aset parsers js2-RETURN #'js2-parse-ret-yield)
8382 (aset parsers js2-SEMI #'js2-parse-semi)
8383 (aset parsers js2-SWITCH #'js2-parse-switch)
8384 (aset parsers js2-THROW #'js2-parse-throw)
8385 (aset parsers js2-TRY #'js2-parse-try)
8386 (aset parsers js2-VAR #'js2-parse-const-var)
8387 (aset parsers js2-WHILE #'js2-parse-while)
8388 (aset parsers js2-WITH #'js2-parse-with)
8389 (aset parsers js2-YIELD #'js2-parse-ret-yield)
8390 parsers)
8391 "A vector mapping token types to parser functions.")
8392
8393 (defun js2-parse-warn-missing-semi (beg end)
8394 (and js2-mode-show-strict-warnings
8395 js2-strict-missing-semi-warning
8396 (js2-add-strict-warning
8397 "msg.missing.semi" nil
8398 ;; back up to beginning of statement or line
8399 (max beg (save-excursion
8400 (goto-char end)
8401 (point-at-bol)))
8402 end)))
8403
8404 (defconst js2-no-semi-insertion
8405 (list js2-IF
8406 js2-SWITCH
8407 js2-WHILE
8408 js2-DO
8409 js2-FOR
8410 js2-TRY
8411 js2-WITH
8412 js2-LC
8413 js2-ERROR
8414 js2-SEMI
8415 js2-CLASS
8416 js2-FUNCTION
8417 js2-EXPORT)
8418 "List of tokens that don't do automatic semicolon insertion.")
8419
8420 (defconst js2-autoinsert-semi-and-warn
8421 (list js2-ERROR js2-EOF js2-RC))
8422
8423 (defun js2-statement-helper ()
8424 (let* ((tt (js2-get-token))
8425 (first-tt tt)
8426 (async-stmt (js2-match-async-function))
8427 (parser (if (= tt js2-ERROR)
8428 #'js2-parse-semi
8429 (if async-stmt
8430 #'js2-parse-async-function-stmt
8431 (aref js2-parsers tt))))
8432 pn)
8433 ;; If the statement is set, then it's been told its label by now.
8434 (and js2-labeled-stmt
8435 (js2-labeled-stmt-node-stmt js2-labeled-stmt)
8436 (setq js2-labeled-stmt nil))
8437 (setq pn (funcall parser))
8438 ;; Don't do auto semi insertion for certain statement types.
8439 (unless (or (memq first-tt js2-no-semi-insertion)
8440 (js2-labeled-stmt-node-p pn)
8441 async-stmt)
8442 (js2-auto-insert-semicolon pn))
8443 pn))
8444
8445 (defun js2-auto-insert-semicolon (pn)
8446 (let* ((tt (js2-get-token))
8447 (pos (js2-node-pos pn)))
8448 (cond
8449 ((= tt js2-SEMI)
8450 ;; extend the node bounds to include the semicolon.
8451 (setf (js2-node-len pn) (- (js2-current-token-end) pos)))
8452 ((memq tt js2-autoinsert-semi-and-warn)
8453 (js2-unget-token) ; Not ';', do not consume.
8454 ;; Autoinsert ;
8455 (js2-parse-warn-missing-semi pos (js2-node-end pn)))
8456 (t
8457 (if (not (js2-token-follows-eol-p (js2-current-token)))
8458 ;; Report error if no EOL or autoinsert ';' otherwise
8459 (js2-report-error "msg.no.semi.stmt")
8460 (js2-parse-warn-missing-semi pos (js2-node-end pn)))
8461 (js2-unget-token) ; Not ';', do not consume.
8462 ))))
8463
8464 (defun js2-parse-condition ()
8465 "Parse a parenthesized boolean expression, e.g. in an if- or while-stmt.
8466 The parens are discarded and the expression node is returned.
8467 The `pos' field of the return value is set to an absolute position
8468 that must be fixed up by the caller.
8469 Return value is a list (EXPR LP RP), with absolute paren positions."
8470 (let (pn lp rp)
8471 (if (js2-must-match js2-LP "msg.no.paren.cond")
8472 (setq lp (js2-current-token-beg)))
8473 (setq pn (js2-parse-expr))
8474 (if (js2-must-match js2-RP "msg.no.paren.after.cond")
8475 (setq rp (js2-current-token-beg)))
8476 ;; Report strict warning on code like "if (a = 7) ..."
8477 (if (and js2-strict-cond-assign-warning
8478 (js2-assign-node-p pn))
8479 (js2-add-strict-warning "msg.equal.as.assign" nil
8480 (js2-node-pos pn)
8481 (+ (js2-node-pos pn)
8482 (js2-node-len pn))))
8483 (list pn lp rp)))
8484
8485 (defun js2-parse-if ()
8486 "Parser for if-statement. Last matched token must be js2-IF."
8487 (let ((pos (js2-current-token-beg))
8488 cond if-true if-false else-pos end pn)
8489 (setq cond (js2-parse-condition)
8490 if-true (js2-parse-statement)
8491 if-false (if (js2-match-token js2-ELSE)
8492 (progn
8493 (setq else-pos (- (js2-current-token-beg) pos))
8494 (js2-parse-statement)))
8495 end (js2-node-end (or if-false if-true))
8496 pn (make-js2-if-node :pos pos
8497 :len (- end pos)
8498 :condition (car cond)
8499 :then-part if-true
8500 :else-part if-false
8501 :else-pos else-pos
8502 :lp (js2-relpos (cl-second cond) pos)
8503 :rp (js2-relpos (cl-third cond) pos)))
8504 (js2-node-add-children pn (car cond) if-true if-false)
8505 pn))
8506
8507 (defun js2-parse-import ()
8508 "Parse import statement. The current token must be js2-IMPORT."
8509 (unless (js2-ast-root-p js2-current-scope)
8510 (js2-report-error "msg.mod.import.decl.at.top.level"))
8511 (let ((beg (js2-current-token-beg)))
8512 (cond ((js2-match-token js2-STRING)
8513 (make-js2-import-node
8514 :pos beg
8515 :len (- (js2-current-token-end) beg)
8516 :module-id (js2-current-token-string)))
8517 (t
8518 (let* ((import-clause (js2-parse-import-clause))
8519 (from-clause (and import-clause (js2-parse-from-clause)))
8520 (module-id (when from-clause (js2-from-clause-node-module-id from-clause)))
8521 (node (make-js2-import-node
8522 :pos beg
8523 :len (- (js2-current-token-end) beg)
8524 :import import-clause
8525 :from from-clause
8526 :module-id module-id)))
8527 (when import-clause
8528 (js2-node-add-children node import-clause))
8529 (when from-clause
8530 (js2-node-add-children node from-clause))
8531 node)))))
8532
8533 (defun js2-parse-import-clause ()
8534 "Parse the bindings in an import statement.
8535 This can take many forms:
8536
8537 ImportedDefaultBinding -> 'foo'
8538 NameSpaceImport -> '* as lib'
8539 NamedImports -> '{foo as bar, bang}'
8540 ImportedDefaultBinding , NameSpaceImport -> 'foo, * as lib'
8541 ImportedDefaultBinding , NamedImports -> 'foo, {bar, baz as bif}'
8542
8543 Try to match namespace imports and named imports first because nothing can
8544 come after them. If it is an imported default binding, then it could have named
8545 imports or a namespace import that follows it.
8546 "
8547 (let* ((beg (js2-current-token-beg))
8548 (clause (make-js2-import-clause-node
8549 :pos beg))
8550 (children (list)))
8551 (cond
8552 ((js2-match-token js2-MUL)
8553 (let ((ns-import (js2-parse-namespace-import)))
8554 (when ns-import
8555 (let ((name-node (js2-namespace-import-node-name ns-import)))
8556 (js2-define-symbol
8557 js2-LET (js2-name-node-name name-node) name-node t)))
8558 (setf (js2-import-clause-node-namespace-import clause) ns-import)
8559 (push ns-import children)))
8560 ((js2-match-token js2-LC)
8561 (let ((imports (js2-parse-export-bindings t)))
8562 (setf (js2-import-clause-node-named-imports clause) imports)
8563 (dolist (import imports)
8564 (push import children)
8565 (let ((name-node (js2-export-binding-node-local-name import)))
8566 (when name-node
8567 (js2-define-symbol
8568 js2-LET (js2-name-node-name name-node) name-node t))))))
8569 ((= (js2-peek-token) js2-NAME)
8570 (let ((binding (js2-maybe-parse-export-binding)))
8571 (let ((node-name (js2-export-binding-node-local-name binding)))
8572 (js2-define-symbol js2-LET (js2-name-node-name node-name) node-name t))
8573 (setf (js2-import-clause-node-default-binding clause) binding)
8574 (push binding children))
8575 (when (js2-match-token js2-COMMA)
8576 (cond
8577 ((js2-match-token js2-MUL)
8578 (let ((ns-import (js2-parse-namespace-import)))
8579 (let ((name-node (js2-namespace-import-node-name ns-import)))
8580 (js2-define-symbol
8581 js2-LET (js2-name-node-name name-node) name-node t))
8582 (setf (js2-import-clause-node-namespace-import clause) ns-import)
8583 (push ns-import children)))
8584 ((js2-match-token js2-LC)
8585 (let ((imports (js2-parse-export-bindings t)))
8586 (setf (js2-import-clause-node-named-imports clause) imports)
8587 (dolist (import imports)
8588 (push import children)
8589 (let ((name-node (js2-export-binding-node-local-name import)))
8590 (when name-node
8591 (js2-define-symbol
8592 js2-LET (js2-name-node-name name-node) name-node t))))))
8593 (t (js2-report-error "msg.syntax")))))
8594 (t (js2-report-error "msg.mod.declaration.after.import")))
8595 (setf (js2-node-len clause) (- (js2-current-token-end) beg))
8596 (apply #'js2-node-add-children clause children)
8597 clause))
8598
8599 (defun js2-parse-namespace-import ()
8600 "Parse a namespace import expression such as '* as bar'.
8601 The current token must be js2-MUL."
8602 (let ((beg (js2-current-token-beg)))
8603 (when (js2-must-match js2-NAME "msg.syntax")
8604 (if (equal "as" (js2-current-token-string))
8605 (when (js2-must-match-prop-name "msg.syntax")
8606 (let ((node (make-js2-namespace-import-node
8607 :pos beg
8608 :len (- (js2-current-token-end) beg)
8609 :name (make-js2-name-node
8610 :pos (js2-current-token-beg)
8611 :len (js2-current-token-end)
8612 :name (js2-current-token-string)))))
8613 (js2-node-add-children node (js2-namespace-import-node-name node))
8614 node))
8615 (js2-unget-token)
8616 (js2-report-error "msg.syntax")))))
8617
8618
8619 (defun js2-parse-from-clause ()
8620 "Parse the from clause in an import or export statement. E.g. from 'src/lib'"
8621 (when (js2-must-match-name "msg.mod.from.after.import.spec.set")
8622 (let ((beg (js2-current-token-beg)))
8623 (if (equal "from" (js2-current-token-string))
8624 (cond
8625 ((js2-match-token js2-STRING)
8626 (make-js2-from-clause-node
8627 :pos beg
8628 :len (- (js2-current-token-end) beg)
8629 :module-id (js2-current-token-string)
8630 :metadata-p nil))
8631 ((js2-match-token js2-THIS)
8632 (when (js2-must-match-name "msg.mod.spec.after.from")
8633 (if (equal "module" (js2-current-token-string))
8634 (make-js2-from-clause-node
8635 :pos beg
8636 :len (- (js2-current-token-end) beg)
8637 :module-id "this"
8638 :metadata-p t)
8639 (js2-unget-token)
8640 (js2-unget-token)
8641 (js2-report-error "msg.mod.spec.after.from")
8642 nil)))
8643 (t (js2-report-error "msg.mod.spec.after.from") nil))
8644 (js2-unget-token)
8645 (js2-report-error "msg.mod.from.after.import.spec.set")
8646 nil))))
8647
8648 (defun js2-parse-export-bindings (&optional import-p)
8649 "Parse a list of export binding expressions such as {}, {foo, bar}, and
8650 {foo as bar, baz as bang}. The current token must be
8651 js2-LC. Return a lisp list of js2-export-binding-node"
8652 (let ((bindings (list)))
8653 (while
8654 (let ((binding (js2-maybe-parse-export-binding)))
8655 (when binding
8656 (push binding bindings))
8657 (js2-match-token js2-COMMA)))
8658 (when (js2-must-match js2-RC (if import-p
8659 "msg.mod.rc.after.import.spec.list"
8660 "msg.mod.rc.after.export.spec.list"))
8661 (reverse bindings))))
8662
8663 (defun js2-maybe-parse-export-binding ()
8664 "Attempt to parse a binding expression found inside an import/export statement.
8665 This can take the form of either as single js2-NAME token as in 'foo' or as in a
8666 rebinding expression 'bar as foo'. If it matches, it will return an instance of
8667 js2-export-binding-node and consume all the tokens. If it does not match, it
8668 consumes no tokens."
8669 (let ((extern-name (when (js2-match-prop-name) (js2-current-token-string)))
8670 (beg (js2-current-token-beg))
8671 (extern-name-len (js2-current-token-len))
8672 (is-reserved-name (or (= (js2-current-token-type) js2-RESERVED)
8673 (aref js2-kwd-tokens (js2-current-token-type)))))
8674 (if extern-name
8675 (let ((as (and (js2-match-token js2-NAME) (js2-current-token-string))))
8676 (if (and as (equal "as" (js2-current-token-string)))
8677 (let ((name
8678 (or
8679 (and (js2-match-token js2-DEFAULT) "default")
8680 (and (js2-match-token js2-NAME) (js2-current-token-string)))))
8681 (if name
8682 (let ((node (make-js2-export-binding-node
8683 :pos beg
8684 :len (- (js2-current-token-end) beg)
8685 :local-name (make-js2-name-node
8686 :name name
8687 :pos (js2-current-token-beg)
8688 :len (js2-current-token-len))
8689 :extern-name (make-js2-name-node
8690 :name extern-name
8691 :pos beg
8692 :len extern-name-len))))
8693 (js2-node-add-children
8694 node
8695 (js2-export-binding-node-local-name node)
8696 (js2-export-binding-node-extern-name node))
8697 node)
8698 (js2-unget-token)
8699 nil))
8700 (when as (js2-unget-token))
8701 (let* ((name-node (make-js2-name-node
8702 :name (js2-current-token-string)
8703 :pos (js2-current-token-beg)
8704 :len (js2-current-token-len)))
8705 (node (make-js2-export-binding-node
8706 :pos (js2-current-token-beg)
8707 :len (js2-current-token-len)
8708 :local-name name-node
8709 :extern-name name-node)))
8710 (when is-reserved-name
8711 (js2-report-error "msg.mod.as.after.reserved.word" extern-name))
8712 (js2-node-add-children node name-node)
8713 node)))
8714 nil)))
8715
8716 (defun js2-parse-switch ()
8717 "Parser for switch-statement. Last matched token must be js2-SWITCH."
8718 (let ((pos (js2-current-token-beg))
8719 tt pn discriminant has-default case-expr case-node
8720 case-pos cases stmt lp)
8721 (if (js2-must-match js2-LP "msg.no.paren.switch")
8722 (setq lp (js2-current-token-beg)))
8723 (setq discriminant (js2-parse-expr)
8724 pn (make-js2-switch-node :discriminant discriminant
8725 :pos pos
8726 :lp (js2-relpos lp pos)))
8727 (js2-node-add-children pn discriminant)
8728 (js2-enter-switch pn)
8729 (unwind-protect
8730 (progn
8731 (if (js2-must-match js2-RP "msg.no.paren.after.switch")
8732 (setf (js2-switch-node-rp pn) (- (js2-current-token-beg) pos)))
8733 (js2-must-match js2-LC "msg.no.brace.switch")
8734 (catch 'break
8735 (while t
8736 (setq tt (js2-next-token)
8737 case-pos (js2-current-token-beg))
8738 (cond
8739 ((= tt js2-RC)
8740 (setf (js2-node-len pn) (- (js2-current-token-end) pos))
8741 (throw 'break nil)) ; done
8742 ((= tt js2-CASE)
8743 (setq case-expr (js2-parse-expr))
8744 (js2-must-match js2-COLON "msg.no.colon.case"))
8745 ((= tt js2-DEFAULT)
8746 (if has-default
8747 (js2-report-error "msg.double.switch.default"))
8748 (setq has-default t
8749 case-expr nil)
8750 (js2-must-match js2-COLON "msg.no.colon.case"))
8751 (t
8752 (js2-report-error "msg.bad.switch")
8753 (throw 'break nil)))
8754 (setq case-node (make-js2-case-node :pos case-pos
8755 :len (- (js2-current-token-end) case-pos)
8756 :expr case-expr))
8757 (js2-node-add-children case-node case-expr)
8758 (while (and (/= (setq tt (js2-peek-token)) js2-RC)
8759 (/= tt js2-CASE)
8760 (/= tt js2-DEFAULT)
8761 (/= tt js2-EOF))
8762 (setf stmt (js2-parse-statement)
8763 (js2-node-len case-node) (- (js2-node-end stmt) case-pos))
8764 (js2-block-node-push case-node stmt))
8765 (push case-node cases)))
8766 ;; add cases last, as pushing reverses the order to be correct
8767 (dolist (kid cases)
8768 (js2-node-add-children pn kid)
8769 (push kid (js2-switch-node-cases pn)))
8770 pn) ; return value
8771 (js2-exit-switch))))
8772
8773 (defun js2-parse-while ()
8774 "Parser for while-statement. Last matched token must be js2-WHILE."
8775 (let ((pos (js2-current-token-beg))
8776 (pn (make-js2-while-node))
8777 cond body)
8778 (js2-enter-loop pn)
8779 (unwind-protect
8780 (progn
8781 (setf cond (js2-parse-condition)
8782 (js2-while-node-condition pn) (car cond)
8783 body (js2-parse-statement)
8784 (js2-while-node-body pn) body
8785 (js2-node-len pn) (- (js2-node-end body) pos)
8786 (js2-while-node-lp pn) (js2-relpos (cl-second cond) pos)
8787 (js2-while-node-rp pn) (js2-relpos (cl-third cond) pos))
8788 (js2-node-add-children pn body (car cond)))
8789 (js2-exit-loop))
8790 pn))
8791
8792 (defun js2-parse-do ()
8793 "Parser for do-statement. Last matched token must be js2-DO."
8794 (let ((pos (js2-current-token-beg))
8795 (pn (make-js2-do-node))
8796 cond body end)
8797 (js2-enter-loop pn)
8798 (unwind-protect
8799 (progn
8800 (setq body (js2-parse-statement))
8801 (js2-must-match js2-WHILE "msg.no.while.do")
8802 (setf (js2-do-node-while-pos pn) (- (js2-current-token-beg) pos)
8803 cond (js2-parse-condition)
8804 (js2-do-node-condition pn) (car cond)
8805 (js2-do-node-body pn) body
8806 end js2-ts-cursor
8807 (js2-do-node-lp pn) (js2-relpos (cl-second cond) pos)
8808 (js2-do-node-rp pn) (js2-relpos (cl-third cond) pos))
8809 (js2-node-add-children pn (car cond) body))
8810 (js2-exit-loop))
8811 ;; Always auto-insert semicolon to follow SpiderMonkey:
8812 ;; It is required by ECMAScript but is ignored by the rest of
8813 ;; world; see bug 238945
8814 (if (js2-match-token js2-SEMI)
8815 (setq end js2-ts-cursor))
8816 (setf (js2-node-len pn) (- end pos))
8817 pn))
8818
8819 (defun js2-parse-export ()
8820 "Parse an export statement.
8821 The Last matched token must be js2-EXPORT. Currently, the 'default' and 'expr'
8822 expressions should only be either hoistable expressions (function or generator)
8823 or assignment expressions, but there is no checking to enforce that and so it
8824 will parse without error a small subset of
8825 invalid export statements."
8826 (unless (js2-ast-root-p js2-current-scope)
8827 (js2-report-error "msg.mod.export.decl.at.top.level"))
8828 (let ((beg (js2-current-token-beg))
8829 (children (list))
8830 exports-list from-clause declaration default)
8831 (cond
8832 ((js2-match-token js2-MUL)
8833 (setq from-clause (js2-parse-from-clause))
8834 (when from-clause
8835 (push from-clause children)))
8836 ((js2-match-token js2-LC)
8837 (setq exports-list (js2-parse-export-bindings))
8838 (when exports-list
8839 (dolist (export exports-list)
8840 (push export children)))
8841 (when (js2-match-token js2-NAME)
8842 (if (equal "from" (js2-current-token-string))
8843 (progn
8844 (js2-unget-token)
8845 (setq from-clause (js2-parse-from-clause)))
8846 (js2-unget-token))))
8847 ((js2-match-token js2-DEFAULT)
8848 (setq default (cond ((js2-match-token js2-CLASS)
8849 (js2-parse-class-stmt))
8850 ((js2-match-token js2-NAME)
8851 (if (js2-match-async-function)
8852 (js2-parse-async-function-stmt)
8853 (js2-unget-token)
8854 (js2-parse-expr)))
8855 ((js2-match-token js2-FUNCTION)
8856 (js2-parse-function-stmt))
8857 (t (js2-parse-expr)))))
8858 ((or (js2-match-token js2-VAR) (js2-match-token js2-CONST) (js2-match-token js2-LET))
8859 (setq declaration (js2-parse-variables (js2-current-token-type) (js2-current-token-beg))))
8860 ((js2-match-token js2-CLASS)
8861 (setq declaration (js2-parse-class-stmt)))
8862 ((js2-match-token js2-NAME)
8863 (setq declaration
8864 (if (js2-match-async-function)
8865 (js2-parse-async-function-stmt)
8866 (js2-unget-token)
8867 (js2-parse-expr))))
8868 ((js2-match-token js2-FUNCTION)
8869 (setq declaration (js2-parse-function-stmt)))
8870 (t
8871 (setq declaration (js2-parse-expr))))
8872 (when from-clause
8873 (push from-clause children))
8874 (when declaration
8875 (push declaration children)
8876 (when (not (or (js2-function-node-p declaration)
8877 (js2-class-node-p declaration)))
8878 (js2-auto-insert-semicolon declaration)))
8879 (when default
8880 (push default children)
8881 (when (not (or (js2-function-node-p default)
8882 (js2-class-node-p default)))
8883 (js2-auto-insert-semicolon default)))
8884 (let ((node (make-js2-export-node
8885 :pos beg
8886 :len (- (js2-current-token-end) beg)
8887 :exports-list exports-list
8888 :from-clause from-clause
8889 :declaration declaration
8890 :default default)))
8891 (apply #'js2-node-add-children node children)
8892 node)))
8893
8894 (defun js2-parse-for ()
8895 "Parse a for, for-in or for each-in statement.
8896 Last matched token must be js2-FOR."
8897 (let ((for-pos (js2-current-token-beg))
8898 (tmp-scope (make-js2-scope))
8899 pn is-for-each is-for-in-or-of is-for-of
8900 in-pos each-pos tmp-pos
8901 init ; Node init is also foo in 'foo in object'.
8902 cond ; Node cond is also object in 'foo in object'.
8903 incr ; 3rd section of for-loop initializer.
8904 body tt lp rp)
8905 ;; See if this is a for each () instead of just a for ()
8906 (when (js2-match-token js2-NAME)
8907 (if (string= "each" (js2-current-token-string))
8908 (progn
8909 (setq is-for-each t
8910 each-pos (- (js2-current-token-beg) for-pos)) ; relative
8911 (js2-record-face 'font-lock-keyword-face))
8912 (js2-report-error "msg.no.paren.for")))
8913 (if (js2-must-match js2-LP "msg.no.paren.for")
8914 (setq lp (- (js2-current-token-beg) for-pos)))
8915 (setq tt (js2-get-token))
8916 ;; Capture identifiers inside parens. We can't create the node
8917 ;; (and use it as the current scope) until we know its type.
8918 (js2-push-scope tmp-scope)
8919 (unwind-protect
8920 (progn
8921 ;; parse init clause
8922 (let ((js2-in-for-init t)) ; set as dynamic variable
8923 (cond
8924 ((= tt js2-SEMI)
8925 (js2-unget-token)
8926 (setq init (make-js2-empty-expr-node)))
8927 ((or (= tt js2-VAR) (= tt js2-LET) (= tt js2-CONST))
8928 (setq init (js2-parse-variables tt (js2-current-token-beg))))
8929 (t
8930 (js2-unget-token)
8931 (setq init (js2-parse-expr)))))
8932 (if (or (js2-match-token js2-IN)
8933 (and (>= js2-language-version 200)
8934 (js2-match-contextual-kwd "of")
8935 (setq is-for-of t)))
8936 (setq is-for-in-or-of t
8937 in-pos (- (js2-current-token-beg) for-pos)
8938 ;; scope of iteration target object is not the scope we've created above.
8939 ;; stash current scope temporary.
8940 cond (let ((js2-current-scope (js2-scope-parent-scope js2-current-scope)))
8941 (js2-parse-expr))) ; object over which we're iterating
8942 ;; else ordinary for loop - parse cond and incr
8943 (js2-must-match js2-SEMI "msg.no.semi.for")
8944 (setq cond (if (= (js2-peek-token) js2-SEMI)
8945 (make-js2-empty-expr-node) ; no loop condition
8946 (js2-parse-expr)))
8947 (js2-must-match js2-SEMI "msg.no.semi.for.cond")
8948 (setq tmp-pos (js2-current-token-end)
8949 incr (if (= (js2-peek-token) js2-RP)
8950 (make-js2-empty-expr-node :pos tmp-pos)
8951 (js2-parse-expr)))))
8952 (js2-pop-scope))
8953 (if (js2-must-match js2-RP "msg.no.paren.for.ctrl")
8954 (setq rp (- (js2-current-token-beg) for-pos)))
8955 (if (not is-for-in-or-of)
8956 (setq pn (make-js2-for-node :init init
8957 :condition cond
8958 :update incr
8959 :lp lp
8960 :rp rp))
8961 ;; cond could be null if 'in obj' got eaten by the init node.
8962 (if (js2-infix-node-p init)
8963 ;; it was (foo in bar) instead of (var foo in bar)
8964 (setq cond (js2-infix-node-right init)
8965 init (js2-infix-node-left init))
8966 (if (and (js2-var-decl-node-p init)
8967 (> (length (js2-var-decl-node-kids init)) 1))
8968 (js2-report-error "msg.mult.index")))
8969 (setq pn (make-js2-for-in-node :iterator init
8970 :object cond
8971 :in-pos in-pos
8972 :foreach-p is-for-each
8973 :each-pos each-pos
8974 :forof-p is-for-of
8975 :lp lp
8976 :rp rp)))
8977 ;; Transplant the declarations.
8978 (setf (js2-scope-symbol-table pn)
8979 (js2-scope-symbol-table tmp-scope))
8980 (unwind-protect
8981 (progn
8982 (js2-enter-loop pn)
8983 ;; We have to parse the body -after- creating the loop node,
8984 ;; so that the loop node appears in the js2-loop-set, allowing
8985 ;; break/continue statements to find the enclosing loop.
8986 (setf body (js2-parse-statement)
8987 (js2-loop-node-body pn) body
8988 (js2-node-pos pn) for-pos
8989 (js2-node-len pn) (- (js2-node-end body) for-pos))
8990 (js2-node-add-children pn init cond incr body))
8991 ;; finally
8992 (js2-exit-loop))
8993 pn))
8994
8995 (defun js2-parse-try ()
8996 "Parse a try statement. Last matched token must be js2-TRY."
8997 (let ((try-pos (js2-current-token-beg))
8998 try-end
8999 try-block
9000 catch-blocks
9001 finally-block
9002 saw-default-catch
9003 peek)
9004 (if (/= (js2-peek-token) js2-LC)
9005 (js2-report-error "msg.no.brace.try"))
9006 (setq try-block (js2-parse-statement)
9007 try-end (js2-node-end try-block)
9008 peek (js2-peek-token))
9009 (cond
9010 ((= peek js2-CATCH)
9011 (while (js2-match-token js2-CATCH)
9012 (let* ((catch-pos (js2-current-token-beg))
9013 (catch-node (make-js2-catch-node :pos catch-pos))
9014 param
9015 guard-kwd
9016 catch-cond
9017 lp rp)
9018 (if saw-default-catch
9019 (js2-report-error "msg.catch.unreachable"))
9020 (if (js2-must-match js2-LP "msg.no.paren.catch")
9021 (setq lp (- (js2-current-token-beg) catch-pos)))
9022 (js2-push-scope catch-node)
9023 (let ((tt (js2-peek-token)))
9024 (cond
9025 ;; Destructuring pattern:
9026 ;; catch ({ message, file }) { ... }
9027 ((or (= tt js2-LB) (= tt js2-LC))
9028 (js2-get-token)
9029 (setq param (js2-parse-destruct-primary-expr))
9030 (js2-define-destruct-symbols param js2-LET nil))
9031 ;; Simple name.
9032 (t
9033 (js2-must-match-name "msg.bad.catchcond")
9034 (setq param (js2-create-name-node))
9035 (js2-define-symbol js2-LET (js2-current-token-string) param)
9036 (js2-check-strict-identifier param))))
9037 ;; Catch condition.
9038 (if (js2-match-token js2-IF)
9039 (setq guard-kwd (- (js2-current-token-beg) catch-pos)
9040 catch-cond (js2-parse-expr))
9041 (setq saw-default-catch t))
9042 (if (js2-must-match js2-RP "msg.bad.catchcond")
9043 (setq rp (- (js2-current-token-beg) catch-pos)))
9044 (js2-must-match js2-LC "msg.no.brace.catchblock")
9045 (js2-parse-statements catch-node)
9046 (if (js2-must-match js2-RC "msg.no.brace.after.body")
9047 (setq try-end (js2-current-token-end)))
9048 (js2-pop-scope)
9049 (setf (js2-node-len catch-node) (- try-end catch-pos)
9050 (js2-catch-node-param catch-node) param
9051 (js2-catch-node-guard-expr catch-node) catch-cond
9052 (js2-catch-node-guard-kwd catch-node) guard-kwd
9053 (js2-catch-node-lp catch-node) lp
9054 (js2-catch-node-rp catch-node) rp)
9055 (js2-node-add-children catch-node param catch-cond)
9056 (push catch-node catch-blocks))))
9057 ((/= peek js2-FINALLY)
9058 (js2-must-match js2-FINALLY "msg.try.no.catchfinally"
9059 (js2-node-pos try-block)
9060 (- (setq try-end (js2-node-end try-block))
9061 (js2-node-pos try-block)))))
9062 (when (js2-match-token js2-FINALLY)
9063 (let ((finally-pos (js2-current-token-beg))
9064 (block (js2-parse-statement)))
9065 (setq try-end (js2-node-end block)
9066 finally-block (make-js2-finally-node :pos finally-pos
9067 :len (- try-end finally-pos)
9068 :body block))
9069 (js2-node-add-children finally-block block)))
9070 (let ((pn (make-js2-try-node :pos try-pos
9071 :len (- try-end try-pos)
9072 :try-block try-block
9073 :finally-block finally-block)))
9074 (js2-node-add-children pn try-block finally-block)
9075 ;; Push them onto the try-node, which reverses and corrects their order.
9076 (dolist (cb catch-blocks)
9077 (js2-node-add-children pn cb)
9078 (push cb (js2-try-node-catch-clauses pn)))
9079 pn)))
9080
9081 (defun js2-parse-throw ()
9082 "Parser for throw-statement. Last matched token must be js2-THROW."
9083 (let ((pos (js2-current-token-beg))
9084 expr pn)
9085 (if (= (js2-peek-token-or-eol) js2-EOL)
9086 ;; ECMAScript does not allow new lines before throw expression,
9087 ;; see bug 256617
9088 (js2-report-error "msg.bad.throw.eol"))
9089 (setq expr (js2-parse-expr)
9090 pn (make-js2-throw-node :pos pos
9091 :len (- (js2-node-end expr) pos)
9092 :expr expr))
9093 (js2-node-add-children pn expr)
9094 pn))
9095
9096 (defun js2-match-jump-label-name (label-name)
9097 "If break/continue specified a label, return that label's labeled stmt.
9098 Returns the corresponding `js2-labeled-stmt-node', or if LABEL-NAME
9099 does not match an existing label, reports an error and returns nil."
9100 (let ((bundle (cdr (assoc label-name js2-label-set))))
9101 (if (null bundle)
9102 (js2-report-error "msg.undef.label"))
9103 bundle))
9104
9105 (defun js2-parse-break ()
9106 "Parser for break-statement. Last matched token must be js2-BREAK."
9107 (let ((pos (js2-current-token-beg))
9108 (end (js2-current-token-end))
9109 break-target ; statement to break from
9110 break-label ; in "break foo", name-node representing the foo
9111 labels ; matching labeled statement to break to
9112 pn)
9113 (when (eq (js2-peek-token-or-eol) js2-NAME)
9114 (js2-get-token)
9115 (setq break-label (js2-create-name-node)
9116 end (js2-node-end break-label)
9117 ;; matchJumpLabelName only matches if there is one
9118 labels (js2-match-jump-label-name (js2-current-token-string))
9119 break-target (if labels (car (js2-labeled-stmt-node-labels labels)))))
9120 (unless (or break-target break-label)
9121 ;; no break target specified - try for innermost enclosing loop/switch
9122 (if (null js2-loop-and-switch-set)
9123 (unless break-label
9124 (js2-report-error "msg.bad.break" nil pos (length "break")))
9125 (setq break-target (car js2-loop-and-switch-set))))
9126 (setq pn (make-js2-break-node :pos pos
9127 :len (- end pos)
9128 :label break-label
9129 :target break-target))
9130 (js2-node-add-children pn break-label) ; but not break-target
9131 pn))
9132
9133 (defun js2-parse-continue ()
9134 "Parser for continue-statement. Last matched token must be js2-CONTINUE."
9135 (let ((pos (js2-current-token-beg))
9136 (end (js2-current-token-end))
9137 label ; optional user-specified label, a `js2-name-node'
9138 labels ; current matching labeled stmt, if any
9139 target ; the `js2-loop-node' target of this continue stmt
9140 pn)
9141 (when (= (js2-peek-token-or-eol) js2-NAME)
9142 (js2-get-token)
9143 (setq label (js2-create-name-node)
9144 end (js2-node-end label)
9145 ;; matchJumpLabelName only matches if there is one
9146 labels (js2-match-jump-label-name (js2-current-token-string))))
9147 (cond
9148 ((null labels) ; no current label to go to
9149 (if (null js2-loop-set) ; no loop to continue to
9150 (js2-report-error "msg.continue.outside" nil pos
9151 (length "continue"))
9152 (setq target (car js2-loop-set)))) ; innermost enclosing loop
9153 (t
9154 (if (js2-loop-node-p (js2-labeled-stmt-node-stmt labels))
9155 (setq target (js2-labeled-stmt-node-stmt labels))
9156 (js2-report-error "msg.continue.nonloop" nil pos (- end pos)))))
9157 (setq pn (make-js2-continue-node :pos pos
9158 :len (- end pos)
9159 :label label
9160 :target target))
9161 (js2-node-add-children pn label) ; but not target - it's not our child
9162 pn))
9163
9164 (defun js2-parse-with ()
9165 "Parser for with-statement. Last matched token must be js2-WITH."
9166 (when js2-in-use-strict-directive
9167 (js2-report-error "msg.no.with.strict"))
9168 (let ((pos (js2-current-token-beg))
9169 obj body pn lp rp)
9170 (if (js2-must-match js2-LP "msg.no.paren.with")
9171 (setq lp (js2-current-token-beg)))
9172 (setq obj (js2-parse-expr))
9173 (if (js2-must-match js2-RP "msg.no.paren.after.with")
9174 (setq rp (js2-current-token-beg)))
9175 (let ((js2-nesting-of-with (1+ js2-nesting-of-with)))
9176 (setq body (js2-parse-statement)))
9177 (setq pn (make-js2-with-node :pos pos
9178 :len (- (js2-node-end body) pos)
9179 :object obj
9180 :body body
9181 :lp (js2-relpos lp pos)
9182 :rp (js2-relpos rp pos)))
9183 (js2-node-add-children pn obj body)
9184 pn))
9185
9186 (defun js2-parse-const-var ()
9187 "Parser for var- or const-statement.
9188 Last matched token must be js2-CONST or js2-VAR."
9189 (let ((tt (js2-current-token-type))
9190 (pos (js2-current-token-beg))
9191 expr pn)
9192 (setq expr (js2-parse-variables tt (js2-current-token-beg))
9193 pn (make-js2-expr-stmt-node :pos pos
9194 :len (- (js2-node-end expr) pos)
9195 :expr expr))
9196 (js2-node-add-children pn expr)
9197 pn))
9198
9199 (defun js2-wrap-with-expr-stmt (pos expr &optional add-child)
9200 (let ((pn (make-js2-expr-stmt-node :pos pos
9201 :len (js2-node-len expr)
9202 :type (if (js2-inside-function)
9203 js2-EXPR_VOID
9204 js2-EXPR_RESULT)
9205 :expr expr)))
9206 (if add-child
9207 (js2-node-add-children pn expr))
9208 pn))
9209
9210 (defun js2-parse-let-stmt ()
9211 "Parser for let-statement. Last matched token must be js2-LET."
9212 (let ((pos (js2-current-token-beg))
9213 expr pn)
9214 (if (= (js2-peek-token) js2-LP)
9215 ;; let expression in statement context
9216 (setq expr (js2-parse-let pos 'statement)
9217 pn (js2-wrap-with-expr-stmt pos expr t))
9218 ;; else we're looking at a statement like let x=6, y=7;
9219 (setf expr (js2-parse-variables js2-LET pos)
9220 pn (js2-wrap-with-expr-stmt pos expr t)
9221 (js2-node-type pn) js2-EXPR_RESULT))
9222 pn))
9223
9224 (defun js2-parse-ret-yield ()
9225 (js2-parse-return-or-yield (js2-current-token-type) nil))
9226
9227 (defconst js2-parse-return-stmt-enders
9228 (list js2-SEMI js2-RC js2-EOF js2-EOL js2-ERROR js2-RB js2-RP js2-YIELD))
9229
9230 (defsubst js2-now-all-set (before after mask)
9231 "Return whether or not the bits in the mask have changed to all set.
9232 BEFORE is bits before change, AFTER is bits after change, and MASK is
9233 the mask for bits. Returns t if all the bits in the mask are set in AFTER
9234 but not BEFORE."
9235 (and (/= (logand before mask) mask)
9236 (= (logand after mask) mask)))
9237
9238 (defun js2-parse-return-or-yield (tt expr-context)
9239 (let* ((pos (js2-current-token-beg))
9240 (end (js2-current-token-end))
9241 (before js2-end-flags)
9242 (inside-function (js2-inside-function))
9243 (gen-type (and inside-function (js2-function-node-generator-type
9244 js2-current-script-or-fn)))
9245 e ret name yield-star-p)
9246 (unless inside-function
9247 (js2-report-error (if (eq tt js2-RETURN)
9248 "msg.bad.return"
9249 "msg.bad.yield")))
9250 (when (and inside-function
9251 (eq gen-type 'STAR)
9252 (js2-match-token js2-MUL))
9253 (setq yield-star-p t))
9254 ;; This is ugly, but we don't want to require a semicolon.
9255 (unless (memq (js2-peek-token-or-eol) js2-parse-return-stmt-enders)
9256 (setq e (js2-parse-expr)
9257 end (js2-node-end e)))
9258 (cond
9259 ((eq tt js2-RETURN)
9260 (js2-set-flag js2-end-flags (if (null e)
9261 js2-end-returns
9262 js2-end-returns-value))
9263 (setq ret (make-js2-return-node :pos pos
9264 :len (- end pos)
9265 :retval e))
9266 (js2-node-add-children ret e)
9267 ;; See if we need a strict mode warning.
9268 ;; TODO: The analysis done by `js2-has-consistent-return-usage' is
9269 ;; more thorough and accurate than this before/after flag check.
9270 ;; E.g. if there's a finally-block that always returns, we shouldn't
9271 ;; show a warning generated by inconsistent returns in the catch blocks.
9272 ;; Basically `js2-has-consistent-return-usage' needs to keep more state,
9273 ;; so we know which returns/yields to highlight, and we should get rid of
9274 ;; all the checking in `js2-parse-return-or-yield'.
9275 (if (and js2-strict-inconsistent-return-warning
9276 (js2-now-all-set before js2-end-flags
9277 (logior js2-end-returns js2-end-returns-value)))
9278 (js2-add-strict-warning "msg.return.inconsistent" nil pos end)))
9279 ((eq gen-type 'COMPREHENSION)
9280 ;; FIXME: We should probably switch to saving and using lastYieldOffset,
9281 ;; like SpiderMonkey does.
9282 (js2-report-error "msg.syntax" nil pos 5))
9283 (t
9284 (setq ret (make-js2-yield-node :pos pos
9285 :len (- end pos)
9286 :value e
9287 :star-p yield-star-p))
9288 (js2-node-add-children ret e)
9289 (unless expr-context
9290 (setq e ret
9291 ret (js2-wrap-with-expr-stmt pos e t))
9292 (js2-set-requires-activation)
9293 (js2-set-is-generator))))
9294 ;; see if we are mixing yields and value returns.
9295 (when (and inside-function
9296 (js2-flag-set-p js2-end-flags js2-end-returns-value)
9297 (eq (js2-function-node-generator-type js2-current-script-or-fn)
9298 'LEGACY))
9299 (setq name (js2-function-name js2-current-script-or-fn))
9300 (if (zerop (length name))
9301 (js2-report-error "msg.anon.generator.returns" nil pos (- end pos))
9302 (js2-report-error "msg.generator.returns" name pos (- end pos))))
9303 ret))
9304
9305 (defun js2-parse-debugger ()
9306 (make-js2-keyword-node :type js2-DEBUGGER))
9307
9308 (defun js2-parse-block ()
9309 "Parser for a curly-delimited statement block.
9310 Last token matched must be `js2-LC'."
9311 (let ((pos (js2-current-token-beg))
9312 (pn (make-js2-scope)))
9313 (js2-push-scope pn)
9314 (unwind-protect
9315 (progn
9316 (js2-parse-statements pn)
9317 (js2-must-match js2-RC "msg.no.brace.block")
9318 (setf (js2-node-len pn) (- (js2-current-token-end) pos)))
9319 (js2-pop-scope))
9320 pn))
9321
9322 ;; For `js2-ERROR' too, to have a node for error recovery to work on.
9323 (defun js2-parse-semi ()
9324 "Parse a statement or handle an error.
9325 Current token type is `js2-SEMI' or `js2-ERROR'."
9326 (let ((tt (js2-current-token-type)) pos len)
9327 (if (eq tt js2-SEMI)
9328 (make-js2-empty-expr-node :len 1)
9329 (setq pos (js2-current-token-beg)
9330 len (- (js2-current-token-end) pos))
9331 (js2-report-error "msg.syntax" nil pos len)
9332 (make-js2-error-node :pos pos :len len))))
9333
9334 (defun js2-parse-default-xml-namespace ()
9335 "Parse a `default xml namespace = <expr>' e4x statement."
9336 (let ((pos (js2-current-token-beg))
9337 end len expr unary)
9338 (js2-must-have-xml)
9339 (js2-set-requires-activation)
9340 (setq len (- js2-ts-cursor pos))
9341 (unless (and (js2-match-token js2-NAME)
9342 (string= (js2-current-token-string) "xml"))
9343 (js2-report-error "msg.bad.namespace" nil pos len))
9344 (unless (and (js2-match-token js2-NAME)
9345 (string= (js2-current-token-string) "namespace"))
9346 (js2-report-error "msg.bad.namespace" nil pos len))
9347 (unless (js2-match-token js2-ASSIGN)
9348 (js2-report-error "msg.bad.namespace" nil pos len))
9349 (setq expr (js2-parse-expr)
9350 end (js2-node-end expr)
9351 unary (make-js2-unary-node :type js2-DEFAULTNAMESPACE
9352 :pos pos
9353 :len (- end pos)
9354 :operand expr))
9355 (js2-node-add-children unary expr)
9356 (make-js2-expr-stmt-node :pos pos
9357 :len (- end pos)
9358 :expr unary)))
9359
9360 (defun js2-record-label (label bundle)
9361 ;; current token should be colon that `js2-parse-primary-expr' left untouched
9362 (js2-get-token)
9363 (let ((name (js2-label-node-name label))
9364 labeled-stmt
9365 dup)
9366 (when (setq labeled-stmt (cdr (assoc name js2-label-set)))
9367 ;; flag both labels if possible when used in editing mode
9368 (if (and js2-parse-ide-mode
9369 (setq dup (js2-get-label-by-name labeled-stmt name)))
9370 (js2-report-error "msg.dup.label" nil
9371 (js2-node-abs-pos dup) (js2-node-len dup)))
9372 (js2-report-error "msg.dup.label" nil
9373 (js2-node-pos label) (js2-node-len label)))
9374 (js2-labeled-stmt-node-add-label bundle label)
9375 (js2-node-add-children bundle label)
9376 ;; Add one reference to the bundle per label in `js2-label-set'
9377 (push (cons name bundle) js2-label-set)))
9378
9379 (defun js2-parse-name-or-label ()
9380 "Parser for identifier or label. Last token matched must be js2-NAME.
9381 Called when we found a name in a statement context. If it's a label, we gather
9382 up any following labels and the next non-label statement into a
9383 `js2-labeled-stmt-node' bundle and return that. Otherwise we parse an
9384 expression and return it wrapped in a `js2-expr-stmt-node'."
9385 (let ((pos (js2-current-token-beg))
9386 expr stmt bundle
9387 (continue t))
9388 ;; set check for label and call down to `js2-parse-primary-expr'
9389 (setq expr (js2-maybe-parse-label))
9390 (if (null expr)
9391 ;; Parse the non-label expression and wrap with expression stmt.
9392 (js2-wrap-with-expr-stmt pos (js2-parse-expr) t)
9393 ;; else parsed a label
9394 (setq bundle (make-js2-labeled-stmt-node :pos pos))
9395 (js2-record-label expr bundle)
9396 ;; look for more labels
9397 (while (and continue (= (js2-get-token) js2-NAME))
9398 (if (setq expr (js2-maybe-parse-label))
9399 (js2-record-label expr bundle)
9400 (setq expr (js2-parse-expr)
9401 stmt (js2-wrap-with-expr-stmt (js2-node-pos expr) expr t)
9402 continue nil)
9403 (js2-auto-insert-semicolon stmt)))
9404 ;; no more labels; now parse the labeled statement
9405 (unwind-protect
9406 (unless stmt
9407 (let ((js2-labeled-stmt bundle)) ; bind dynamically
9408 (js2-unget-token)
9409 (setq stmt (js2-statement-helper))))
9410 ;; remove the labels for this statement from the global set
9411 (dolist (label (js2-labeled-stmt-node-labels bundle))
9412 (setq js2-label-set (remove label js2-label-set))))
9413 (setf (js2-labeled-stmt-node-stmt bundle) stmt
9414 (js2-node-len bundle) (- (js2-node-end stmt) pos))
9415 (js2-node-add-children bundle stmt)
9416 bundle)))
9417
9418 (defun js2-maybe-parse-label ()
9419 (cl-assert (= (js2-current-token-type) js2-NAME))
9420 (let (label-pos
9421 (next-tt (js2-get-token))
9422 (label-end (js2-current-token-end)))
9423 ;; Do not consume colon, it is used as unwind indicator
9424 ;; to return to statementHelper.
9425 (js2-unget-token)
9426 (if (= next-tt js2-COLON)
9427 (prog2
9428 (setq label-pos (js2-current-token-beg))
9429 (make-js2-label-node :pos label-pos
9430 :len (- label-end label-pos)
9431 :name (js2-current-token-string))
9432 (js2-set-face label-pos
9433 label-end
9434 'font-lock-variable-name-face 'record))
9435 ;; Backtrack from the name token, too.
9436 (js2-unget-token)
9437 nil)))
9438
9439 (defun js2-parse-expr-stmt ()
9440 "Default parser in statement context, if no recognized statement found."
9441 (js2-wrap-with-expr-stmt (js2-current-token-beg)
9442 (progn
9443 (js2-unget-token)
9444 (js2-parse-expr)) t))
9445
9446 (defun js2-parse-variables (decl-type pos)
9447 "Parse a comma-separated list of variable declarations.
9448 Could be a 'var', 'const' or 'let' expression, possibly in a for-loop initializer.
9449
9450 DECL-TYPE is a token value: either VAR, CONST, or LET depending on context.
9451 For 'var' or 'const', the keyword should be the token last scanned.
9452
9453 POS is the position where the node should start. It's sometimes the
9454 var/const/let keyword, and other times the beginning of the first token
9455 in the first variable declaration.
9456
9457 Returns the parsed `js2-var-decl-node' expression node."
9458 (let* ((result (make-js2-var-decl-node :decl-type decl-type
9459 :pos pos))
9460 destructuring kid-pos tt init name end nbeg nend vi
9461 (continue t))
9462 ;; Example:
9463 ;; var foo = {a: 1, b: 2}, bar = [3, 4];
9464 ;; var {b: s2, a: s1} = foo, x = 6, y, [s3, s4] = bar;
9465 ;; var {a, b} = baz;
9466 (while continue
9467 (setq destructuring nil
9468 name nil
9469 tt (js2-get-token)
9470 kid-pos (js2-current-token-beg)
9471 end (js2-current-token-end)
9472 init nil)
9473 (if (or (= tt js2-LB) (= tt js2-LC))
9474 ;; Destructuring assignment, e.g., var [a, b] = ...
9475 (setq destructuring (js2-parse-destruct-primary-expr)
9476 end (js2-node-end destructuring))
9477 ;; Simple variable name
9478 (js2-unget-token)
9479 (when (js2-must-match-name "msg.bad.var")
9480 (setq name (js2-create-name-node)
9481 nbeg (js2-current-token-beg)
9482 nend (js2-current-token-end)
9483 end nend)
9484 (js2-define-symbol decl-type (js2-current-token-string) name js2-in-for-init)
9485 (js2-check-strict-identifier name)))
9486 (when (js2-match-token js2-ASSIGN)
9487 (setq init (js2-parse-assign-expr)
9488 end (js2-node-end init))
9489 (js2-record-imenu-functions init name))
9490 (when name
9491 (js2-set-face nbeg nend (if (js2-function-node-p init)
9492 'font-lock-function-name-face
9493 'font-lock-variable-name-face)
9494 'record))
9495 (setq vi (make-js2-var-init-node :pos kid-pos
9496 :len (- end kid-pos)
9497 :type decl-type))
9498 (if destructuring
9499 (progn
9500 (if (and (null init) (not js2-in-for-init))
9501 (js2-report-error "msg.destruct.assign.no.init"))
9502 (js2-define-destruct-symbols destructuring
9503 decl-type
9504 'font-lock-variable-name-face)
9505 (setf (js2-var-init-node-target vi) destructuring))
9506 (setf (js2-var-init-node-target vi) name))
9507 (setf (js2-var-init-node-initializer vi) init)
9508 (js2-node-add-children vi name destructuring init)
9509 (js2-block-node-push result vi)
9510 (unless (js2-match-token js2-COMMA)
9511 (setq continue nil)))
9512 (setf (js2-node-len result) (- end pos))
9513 result))
9514
9515 (defun js2-parse-let (pos &optional stmt-p)
9516 "Parse a let expression or statement.
9517 A let-expression is of the form `let (vars) expr'.
9518 A let-statement is of the form `let (vars) {statements}'.
9519 The third form of let is a variable declaration list, handled
9520 by `js2-parse-variables'."
9521 (let ((pn (make-js2-let-node :pos pos))
9522 beg vars body)
9523 (if (js2-must-match js2-LP "msg.no.paren.after.let")
9524 (setf (js2-let-node-lp pn) (- (js2-current-token-beg) pos)))
9525 (js2-push-scope pn)
9526 (unwind-protect
9527 (progn
9528 (setq vars (js2-parse-variables js2-LET (js2-current-token-beg)))
9529 (if (js2-must-match js2-RP "msg.no.paren.let")
9530 (setf (js2-let-node-rp pn) (- (js2-current-token-beg) pos)))
9531 (if (and stmt-p (js2-match-token js2-LC))
9532 ;; let statement
9533 (progn
9534 (setf beg (js2-current-token-beg) ; position stmt at LC
9535 body (js2-parse-statements))
9536 (js2-must-match js2-RC "msg.no.curly.let")
9537 (setf (js2-node-len body) (- (js2-current-token-end) beg)
9538 (js2-node-len pn) (- (js2-current-token-end) pos)
9539 (js2-let-node-body pn) body
9540 (js2-node-type pn) js2-LET))
9541 ;; let expression
9542 (setf body (js2-parse-expr)
9543 (js2-node-len pn) (- (js2-node-end body) pos)
9544 (js2-let-node-body pn) body))
9545 (setf (js2-let-node-vars pn) vars)
9546 (js2-node-add-children pn vars body))
9547 (js2-pop-scope))
9548 pn))
9549
9550 (defun js2-define-new-symbol (decl-type name node &optional scope)
9551 (js2-scope-put-symbol (or scope js2-current-scope)
9552 name
9553 (make-js2-symbol decl-type name node)))
9554
9555 (defun js2-define-symbol (decl-type name &optional node ignore-not-in-block)
9556 "Define a symbol in the current scope.
9557 If NODE is non-nil, it is the AST node associated with the symbol."
9558 (let* ((defining-scope (js2-get-defining-scope js2-current-scope name))
9559 (symbol (if defining-scope
9560 (js2-scope-get-symbol defining-scope name)))
9561 (sdt (if symbol (js2-symbol-decl-type symbol) -1))
9562 (pos (if node (js2-node-abs-pos node)))
9563 (len (if node (js2-node-len node))))
9564 (cond
9565 ((and symbol ; already defined
9566 (or (if js2-in-use-strict-directive
9567 ;; two const-bound vars in this block have same name
9568 (and (= sdt js2-CONST)
9569 (eq defining-scope js2-current-scope))
9570 (or (= sdt js2-CONST) ; old version is const
9571 (= decl-type js2-CONST))) ; new version is const
9572 ;; two let-bound vars in this block have same name
9573 (and (= sdt js2-LET)
9574 (eq defining-scope js2-current-scope))))
9575 (js2-report-error
9576 (cond
9577 ((= sdt js2-CONST) "msg.const.redecl")
9578 ((= sdt js2-LET) "msg.let.redecl")
9579 ((= sdt js2-VAR) "msg.var.redecl")
9580 ((= sdt js2-FUNCTION) "msg.function.redecl")
9581 (t "msg.parm.redecl"))
9582 name pos len))
9583 ((or (= decl-type js2-LET)
9584 ;; strict mode const is scoped to the current LexicalEnvironment
9585 (and js2-in-use-strict-directive
9586 (= decl-type js2-CONST)))
9587 (if (and (= decl-type js2-LET)
9588 (not ignore-not-in-block)
9589 (or (= (js2-node-type js2-current-scope) js2-IF)
9590 (js2-loop-node-p js2-current-scope)))
9591 (js2-report-error "msg.let.decl.not.in.block")
9592 (js2-define-new-symbol decl-type name node)))
9593 ((or (= decl-type js2-VAR)
9594 (= decl-type js2-FUNCTION)
9595 ;; sloppy mode const is scoped to the current VariableEnvironment
9596 (and (not js2-in-use-strict-directive)
9597 (= decl-type js2-CONST)))
9598 (if symbol
9599 (if (and js2-strict-var-redeclaration-warning (= sdt js2-VAR))
9600 (js2-add-strict-warning "msg.var.redecl" name)
9601 (if (and js2-strict-var-hides-function-arg-warning (= sdt js2-LP))
9602 (js2-add-strict-warning "msg.var.hides.arg" name)))
9603 (js2-define-new-symbol decl-type name node
9604 js2-current-script-or-fn)))
9605 ((= decl-type js2-LP)
9606 (if symbol
9607 ;; must be duplicate parameter. Second parameter hides the
9608 ;; first, so go ahead and add the second pararameter
9609 (js2-report-warning "msg.dup.parms" name))
9610 (js2-define-new-symbol decl-type name node))
9611 (t (js2-code-bug)))))
9612
9613 (defun js2-parse-paren-expr-or-generator-comp ()
9614 (let ((px-pos (js2-current-token-beg)))
9615 (cond
9616 ((and (>= js2-language-version 200)
9617 (js2-match-token js2-FOR))
9618 (js2-parse-generator-comp px-pos))
9619 ((and (>= js2-language-version 200)
9620 (js2-match-token js2-RP))
9621 ;; Not valid expression syntax, but this is valid in an arrow
9622 ;; function with no params: () => body.
9623 (if (eq (js2-peek-token) js2-ARROW)
9624 ;; Return whatever, it will hopefully be rewinded and
9625 ;; reparsed when we reach the =>.
9626 (make-js2-keyword-node :type js2-NULL)
9627 (js2-report-error "msg.syntax")
9628 (make-js2-error-node)))
9629 (t
9630 (let* ((js2-in-for-init nil)
9631 (expr (js2-parse-expr))
9632 (pn (make-js2-paren-node :pos px-pos
9633 :expr expr)))
9634 (js2-node-add-children pn (js2-paren-node-expr pn))
9635 (js2-must-match js2-RP "msg.no.paren")
9636 (setf (js2-node-len pn) (- (js2-current-token-end) px-pos))
9637 pn)))))
9638
9639 (defun js2-parse-expr (&optional oneshot)
9640 (let* ((pn (js2-parse-assign-expr))
9641 (pos (js2-node-pos pn))
9642 left
9643 right
9644 op-pos)
9645 (while (and (not oneshot)
9646 (js2-match-token js2-COMMA))
9647 (setq op-pos (- (js2-current-token-beg) pos)) ; relative
9648 (if (= (js2-peek-token) js2-YIELD)
9649 (js2-report-error "msg.yield.parenthesized"))
9650 (setq right (js2-parse-assign-expr)
9651 left pn
9652 pn (make-js2-infix-node :type js2-COMMA
9653 :pos pos
9654 :len (- js2-ts-cursor pos)
9655 :op-pos op-pos
9656 :left left
9657 :right right))
9658 (js2-node-add-children pn left right))
9659 pn))
9660
9661 (defun js2-parse-assign-expr ()
9662 (let ((tt (js2-get-token))
9663 (pos (js2-current-token-beg))
9664 pn left right op-pos
9665 ts-state recorded-identifiers parsed-errors
9666 async-p)
9667 (if (= tt js2-YIELD)
9668 (js2-parse-return-or-yield tt t)
9669 ;; TODO(mooz): Bit confusing.
9670 ;; If we meet `async` token and it's not part of `async
9671 ;; function`, then this `async` is for a succeeding async arrow
9672 ;; function.
9673 ;; Since arrow function parsing doesn't rely on neither
9674 ;; `js2-parse-function-stmt' nor `js2-parse-function-expr' that
9675 ;; interpret `async` token, we trash `async` and just remember
9676 ;; we met `async` keyword to `async-p'.
9677 (when (js2-match-async-arrow-function)
9678 (setq async-p t))
9679 ;; Save the tokenizer state in case we find an arrow function
9680 ;; and have to rewind.
9681 (setq ts-state (make-js2-ts-state)
9682 recorded-identifiers js2-recorded-identifiers
9683 parsed-errors js2-parsed-errors)
9684 ;; not yield - parse assignment expression
9685 (setq pn (js2-parse-cond-expr)
9686 tt (js2-get-token))
9687 (cond
9688 ((and (<= js2-first-assign tt)
9689 (<= tt js2-last-assign))
9690 ;; tt express assignment (=, |=, ^=, ..., %=)
9691 (setq op-pos (- (js2-current-token-beg) pos) ; relative
9692 left pn)
9693 ;; The assigned node could be a js2-prop-get-node (foo.bar = 0), we only
9694 ;; care about assignment to strict variable names.
9695 (when (js2-name-node-p left)
9696 (js2-check-strict-identifier left))
9697 (setq right (js2-parse-assign-expr)
9698 pn (make-js2-assign-node :type tt
9699 :pos pos
9700 :len (- (js2-node-end right) pos)
9701 :op-pos op-pos
9702 :left left
9703 :right right))
9704 (when js2-parse-ide-mode
9705 (js2-highlight-assign-targets pn left right)
9706 (js2-record-imenu-functions right left))
9707 ;; do this last so ide checks above can use absolute positions
9708 (js2-node-add-children pn left right))
9709 ((and (= tt js2-ARROW)
9710 (>= js2-language-version 200))
9711 (js2-ts-seek ts-state)
9712 (setq js2-recorded-identifiers recorded-identifiers
9713 js2-parsed-errors parsed-errors)
9714 (setq pn (js2-parse-function 'FUNCTION_ARROW (js2-current-token-beg) nil async-p)))
9715 (t
9716 (js2-unget-token)))
9717 pn)))
9718
9719 (defun js2-parse-cond-expr ()
9720 (let ((pos (js2-current-token-beg))
9721 (pn (js2-parse-or-expr))
9722 test-expr
9723 if-true
9724 if-false
9725 q-pos
9726 c-pos)
9727 (when (js2-match-token js2-HOOK)
9728 (setq q-pos (- (js2-current-token-beg) pos)
9729 if-true (let (js2-in-for-init) (js2-parse-assign-expr)))
9730 (js2-must-match js2-COLON "msg.no.colon.cond")
9731 (setq c-pos (- (js2-current-token-beg) pos)
9732 if-false (js2-parse-assign-expr)
9733 test-expr pn
9734 pn (make-js2-cond-node :pos pos
9735 :len (- (js2-node-end if-false) pos)
9736 :test-expr test-expr
9737 :true-expr if-true
9738 :false-expr if-false
9739 :q-pos q-pos
9740 :c-pos c-pos))
9741 (js2-node-add-children pn test-expr if-true if-false))
9742 pn))
9743
9744 (defun js2-make-binary (type left parser &optional no-get)
9745 "Helper for constructing a binary-operator AST node.
9746 LEFT is the left-side-expression, already parsed, and the
9747 binary operator should have just been matched.
9748 PARSER is a function to call to parse the right operand,
9749 or a `js2-node' struct if it has already been parsed.
9750 FIXME: The latter option is unused?"
9751 (let* ((pos (js2-node-pos left))
9752 (op-pos (- (js2-current-token-beg) pos))
9753 (right (if (js2-node-p parser)
9754 parser
9755 (unless no-get (js2-get-token))
9756 (funcall parser)))
9757 (pn (make-js2-infix-node :type type
9758 :pos pos
9759 :len (- (js2-node-end right) pos)
9760 :op-pos op-pos
9761 :left left
9762 :right right)))
9763 (js2-node-add-children pn left right)
9764 pn))
9765
9766 (defun js2-parse-or-expr ()
9767 (let ((pn (js2-parse-and-expr)))
9768 (when (js2-match-token js2-OR)
9769 (setq pn (js2-make-binary js2-OR
9770 pn
9771 'js2-parse-or-expr)))
9772 pn))
9773
9774 (defun js2-parse-and-expr ()
9775 (let ((pn (js2-parse-bit-or-expr)))
9776 (when (js2-match-token js2-AND)
9777 (setq pn (js2-make-binary js2-AND
9778 pn
9779 'js2-parse-and-expr)))
9780 pn))
9781
9782 (defun js2-parse-bit-or-expr ()
9783 (let ((pn (js2-parse-bit-xor-expr)))
9784 (while (js2-match-token js2-BITOR)
9785 (setq pn (js2-make-binary js2-BITOR
9786 pn
9787 'js2-parse-bit-xor-expr)))
9788 pn))
9789
9790 (defun js2-parse-bit-xor-expr ()
9791 (let ((pn (js2-parse-bit-and-expr)))
9792 (while (js2-match-token js2-BITXOR)
9793 (setq pn (js2-make-binary js2-BITXOR
9794 pn
9795 'js2-parse-bit-and-expr)))
9796 pn))
9797
9798 (defun js2-parse-bit-and-expr ()
9799 (let ((pn (js2-parse-eq-expr)))
9800 (while (js2-match-token js2-BITAND)
9801 (setq pn (js2-make-binary js2-BITAND
9802 pn
9803 'js2-parse-eq-expr)))
9804 pn))
9805
9806 (defconst js2-parse-eq-ops
9807 (list js2-EQ js2-NE js2-SHEQ js2-SHNE))
9808
9809 (defun js2-parse-eq-expr ()
9810 (let ((pn (js2-parse-rel-expr))
9811 tt)
9812 (while (memq (setq tt (js2-get-token)) js2-parse-eq-ops)
9813 (setq pn (js2-make-binary tt
9814 pn
9815 'js2-parse-rel-expr)))
9816 (js2-unget-token)
9817 pn))
9818
9819 (defconst js2-parse-rel-ops
9820 (list js2-IN js2-INSTANCEOF js2-LE js2-LT js2-GE js2-GT))
9821
9822 (defun js2-parse-rel-expr ()
9823 (let ((pn (js2-parse-shift-expr))
9824 (continue t)
9825 tt)
9826 (while continue
9827 (setq tt (js2-get-token))
9828 (cond
9829 ((and js2-in-for-init (= tt js2-IN))
9830 (js2-unget-token)
9831 (setq continue nil))
9832 ((memq tt js2-parse-rel-ops)
9833 (setq pn (js2-make-binary tt pn 'js2-parse-shift-expr)))
9834 (t
9835 (js2-unget-token)
9836 (setq continue nil))))
9837 pn))
9838
9839 (defconst js2-parse-shift-ops
9840 (list js2-LSH js2-URSH js2-RSH))
9841
9842 (defun js2-parse-shift-expr ()
9843 (let ((pn (js2-parse-add-expr))
9844 tt
9845 (continue t))
9846 (while continue
9847 (setq tt (js2-get-token))
9848 (if (memq tt js2-parse-shift-ops)
9849 (setq pn (js2-make-binary tt pn 'js2-parse-add-expr))
9850 (js2-unget-token)
9851 (setq continue nil)))
9852 pn))
9853
9854 (defun js2-parse-add-expr ()
9855 (let ((pn (js2-parse-mul-expr))
9856 tt
9857 (continue t))
9858 (while continue
9859 (setq tt (js2-get-token))
9860 (if (or (= tt js2-ADD) (= tt js2-SUB))
9861 (setq pn (js2-make-binary tt pn 'js2-parse-mul-expr))
9862 (js2-unget-token)
9863 (setq continue nil)))
9864 pn))
9865
9866 (defconst js2-parse-mul-ops
9867 (list js2-MUL js2-DIV js2-MOD))
9868
9869 (defun js2-parse-mul-expr ()
9870 (let ((pn (js2-parse-unary-expr))
9871 tt
9872 (continue t))
9873 (while continue
9874 (setq tt (js2-get-token))
9875 (if (memq tt js2-parse-mul-ops)
9876 (setq pn (js2-make-binary tt pn 'js2-parse-unary-expr))
9877 (js2-unget-token)
9878 (setq continue nil)))
9879 pn))
9880
9881 (defun js2-make-unary (type parser &rest args)
9882 "Make a unary node of type TYPE.
9883 PARSER is either a node (for postfix operators) or a function to call
9884 to parse the operand (for prefix operators)."
9885 (let* ((pos (js2-current-token-beg))
9886 (postfix (js2-node-p parser))
9887 (expr (if postfix
9888 parser
9889 (apply parser args)))
9890 end
9891 pn)
9892 (if postfix ; e.g. i++
9893 (setq pos (js2-node-pos expr)
9894 end (js2-current-token-end))
9895 (setq end (js2-node-end expr)))
9896 (setq pn (make-js2-unary-node :type type
9897 :pos pos
9898 :len (- end pos)
9899 :operand expr))
9900 (js2-node-add-children pn expr)
9901 pn))
9902
9903 (defun js2-make-await ()
9904 "Make an await node."
9905 (let* ((pos (js2-current-token-beg))
9906 (expr (js2-parse-unary-expr))
9907 (end (js2-node-end expr))
9908 pn)
9909 (setq pn (make-js2-await-node :pos pos
9910 :len (- end pos)
9911 :operand expr))
9912 (js2-node-add-children pn expr)
9913 pn))
9914
9915 (defconst js2-incrementable-node-types
9916 (list js2-NAME js2-GETPROP js2-GETELEM js2-GET_REF js2-CALL)
9917 "Node types that can be the operand of a ++ or -- operator.")
9918
9919 (defun js2-check-bad-inc-dec (tt beg end unary)
9920 (unless (memq (js2-node-type (js2-unary-node-operand unary))
9921 js2-incrementable-node-types)
9922 (js2-report-error (if (= tt js2-INC)
9923 "msg.bad.incr"
9924 "msg.bad.decr")
9925 nil beg (- end beg))))
9926
9927 (defun js2-parse-unary-expr ()
9928 (let ((tt (js2-current-token-type))
9929 pn expr beg end)
9930 (cond
9931 ((or (= tt js2-VOID)
9932 (= tt js2-NOT)
9933 (= tt js2-BITNOT)
9934 (= tt js2-TYPEOF))
9935 (js2-get-token)
9936 (js2-make-unary tt 'js2-parse-unary-expr))
9937 ((= tt js2-ADD)
9938 (js2-get-token)
9939 ;; Convert to special POS token in decompiler and parse tree
9940 (js2-make-unary js2-POS 'js2-parse-unary-expr))
9941 ((= tt js2-SUB)
9942 (js2-get-token)
9943 ;; Convert to special NEG token in decompiler and parse tree
9944 (js2-make-unary js2-NEG 'js2-parse-unary-expr))
9945 ((or (= tt js2-INC)
9946 (= tt js2-DEC))
9947 (js2-get-token)
9948 (prog1
9949 (setq beg (js2-current-token-beg)
9950 end (js2-current-token-end)
9951 expr (js2-make-unary tt 'js2-parse-member-expr t))
9952 (js2-check-bad-inc-dec tt beg end expr)))
9953 ((= tt js2-DELPROP)
9954 (js2-get-token)
9955 (js2-make-unary js2-DELPROP 'js2-parse-unary-expr))
9956 ((js2-match-await tt)
9957 (js2-make-unary js2-AWAIT 'js2-parse-unary-expr))
9958 ((= tt js2-ERROR)
9959 (js2-get-token)
9960 (make-js2-error-node)) ; try to continue
9961 ((and (= tt js2-LT)
9962 js2-compiler-xml-available)
9963 ;; XML stream encountered in expression.
9964 (js2-parse-member-expr-tail t (js2-parse-xml-initializer)))
9965 (t
9966 (setq pn (js2-parse-member-expr t)
9967 ;; Don't look across a newline boundary for a postfix incop.
9968 tt (js2-peek-token-or-eol))
9969 (when (or (= tt js2-INC) (= tt js2-DEC))
9970 (js2-get-token)
9971 (setf expr pn
9972 pn (js2-make-unary tt expr))
9973 (js2-node-set-prop pn 'postfix t)
9974 (js2-check-bad-inc-dec tt (js2-current-token-beg) (js2-current-token-end) pn))
9975 pn))))
9976
9977 (defun js2-parse-xml-initializer ()
9978 "Parse an E4X XML initializer.
9979 I'm parsing it the way Rhino parses it, but without the tree-rewriting.
9980 Then I'll postprocess the result, depending on whether we're in IDE
9981 mode or codegen mode, and generate the appropriate rewritten AST.
9982 IDE mode uses a rich AST that models the XML structure. Codegen mode
9983 just concatenates everything and makes a new XML or XMLList out of it."
9984 (let ((tt (js2-get-first-xml-token))
9985 pn-xml pn expr kids expr-pos
9986 (continue t)
9987 (first-token t))
9988 (when (not (or (= tt js2-XML) (= tt js2-XMLEND)))
9989 (js2-report-error "msg.syntax"))
9990 (setq pn-xml (make-js2-xml-node))
9991 (while continue
9992 (if first-token
9993 (setq first-token nil)
9994 (setq tt (js2-get-next-xml-token)))
9995 (cond
9996 ;; js2-XML means we found a {expr} in the XML stream.
9997 ;; The token string is the XML up to the left-curly.
9998 ((= tt js2-XML)
9999 (push (make-js2-string-node :pos (js2-current-token-beg)
10000 :len (- js2-ts-cursor (js2-current-token-beg)))
10001 kids)
10002 (js2-must-match js2-LC "msg.syntax")
10003 (setq expr-pos js2-ts-cursor
10004 expr (if (eq (js2-peek-token) js2-RC)
10005 (make-js2-empty-expr-node :pos expr-pos)
10006 (js2-parse-expr)))
10007 (js2-must-match js2-RC "msg.syntax")
10008 (setq pn (make-js2-xml-js-expr-node :pos (js2-node-pos expr)
10009 :len (js2-node-len expr)
10010 :expr expr))
10011 (js2-node-add-children pn expr)
10012 (push pn kids))
10013 ;; a js2-XMLEND token means we hit the final close-tag.
10014 ((= tt js2-XMLEND)
10015 (push (make-js2-string-node :pos (js2-current-token-beg)
10016 :len (- js2-ts-cursor (js2-current-token-beg)))
10017 kids)
10018 (dolist (kid (nreverse kids))
10019 (js2-block-node-push pn-xml kid))
10020 (setf (js2-node-len pn-xml) (- js2-ts-cursor
10021 (js2-node-pos pn-xml))
10022 continue nil))
10023 (t
10024 (js2-report-error "msg.syntax")
10025 (setq continue nil))))
10026 pn-xml))
10027
10028
10029 (defun js2-parse-argument-list ()
10030 "Parse an argument list and return it as a Lisp list of nodes.
10031 Returns the list in reverse order. Consumes the right-paren token."
10032 (let (result)
10033 (unless (js2-match-token js2-RP)
10034 (cl-loop do
10035 (let ((tt (js2-get-token)))
10036 (if (= tt js2-YIELD)
10037 (js2-report-error "msg.yield.parenthesized"))
10038 (if (and (= tt js2-TRIPLEDOT)
10039 (>= js2-language-version 200))
10040 (push (js2-make-unary tt 'js2-parse-assign-expr) result)
10041 (js2-unget-token)
10042 (push (js2-parse-assign-expr) result)))
10043 while
10044 (js2-match-token js2-COMMA))
10045 (js2-must-match js2-RP "msg.no.paren.arg")
10046 result)))
10047
10048 (defun js2-parse-member-expr (&optional allow-call-syntax)
10049 (let ((tt (js2-current-token-type))
10050 pn pos target args beg end init)
10051 (if (/= tt js2-NEW)
10052 (setq pn (js2-parse-primary-expr))
10053 ;; parse a 'new' expression
10054 (js2-get-token)
10055 (setq pos (js2-current-token-beg)
10056 beg pos
10057 target (js2-parse-member-expr)
10058 end (js2-node-end target)
10059 pn (make-js2-new-node :pos pos
10060 :target target
10061 :len (- end pos)))
10062 (js2-highlight-function-call (js2-current-token))
10063 (js2-node-add-children pn target)
10064 (when (js2-match-token js2-LP)
10065 ;; Add the arguments to pn, if any are supplied.
10066 (setf beg pos ; start of "new" keyword
10067 pos (js2-current-token-beg)
10068 args (nreverse (js2-parse-argument-list))
10069 (js2-new-node-args pn) args
10070 end (js2-current-token-end)
10071 (js2-new-node-lp pn) (- pos beg)
10072 (js2-new-node-rp pn) (- end 1 beg))
10073 (apply #'js2-node-add-children pn args))
10074 (when (and js2-allow-rhino-new-expr-initializer
10075 (js2-match-token js2-LC))
10076 (setf init (js2-parse-object-literal)
10077 end (js2-node-end init)
10078 (js2-new-node-initializer pn) init)
10079 (js2-node-add-children pn init))
10080 (setf (js2-node-len pn) (- end beg))) ; end outer if
10081 (js2-parse-member-expr-tail allow-call-syntax pn)))
10082
10083 (defun js2-parse-member-expr-tail (allow-call-syntax pn)
10084 "Parse a chain of property/array accesses or function calls.
10085 Includes parsing for E4X operators like `..' and `.@'.
10086 If ALLOW-CALL-SYNTAX is nil, stops when we encounter a left-paren.
10087 Returns an expression tree that includes PN, the parent node."
10088 (let (tt
10089 (continue t))
10090 (while continue
10091 (setq tt (js2-get-token))
10092 (cond
10093 ((or (= tt js2-DOT) (= tt js2-DOTDOT))
10094 (setq pn (js2-parse-property-access tt pn)))
10095 ((= tt js2-DOTQUERY)
10096 (setq pn (js2-parse-dot-query pn)))
10097 ((= tt js2-LB)
10098 (setq pn (js2-parse-element-get pn)))
10099 ((= tt js2-LP)
10100 (js2-unget-token)
10101 (if allow-call-syntax
10102 (setq pn (js2-parse-function-call pn))
10103 (setq continue nil)))
10104 ((= tt js2-TEMPLATE_HEAD)
10105 (setq pn (js2-parse-tagged-template pn (js2-parse-template-literal))))
10106 ((= tt js2-NO_SUBS_TEMPLATE)
10107 (setq pn (js2-parse-tagged-template pn (make-js2-string-node :type tt))))
10108 (t
10109 (js2-unget-token)
10110 (setq continue nil)))
10111 (if (>= js2-highlight-level 2)
10112 (js2-parse-highlight-member-expr-node pn)))
10113 pn))
10114
10115 (defun js2-parse-tagged-template (tag-node tpl-node)
10116 "Parse tagged template expression."
10117 (let* ((beg (js2-node-pos tag-node))
10118 (pn (make-js2-tagged-template-node :beg beg
10119 :len (- (js2-current-token-end) beg)
10120 :tag tag-node
10121 :template tpl-node)))
10122 (js2-node-add-children pn tag-node tpl-node)
10123 pn))
10124
10125 (defun js2-parse-dot-query (pn)
10126 "Parse a dot-query expression, e.g. foo.bar.(@name == 2)
10127 Last token parsed must be `js2-DOTQUERY'."
10128 (let ((pos (js2-node-pos pn))
10129 op-pos expr end)
10130 (js2-must-have-xml)
10131 (js2-set-requires-activation)
10132 (setq op-pos (js2-current-token-beg)
10133 expr (js2-parse-expr)
10134 end (js2-node-end expr)
10135 pn (make-js2-xml-dot-query-node :left pn
10136 :pos pos
10137 :op-pos op-pos
10138 :right expr))
10139 (js2-node-add-children pn
10140 (js2-xml-dot-query-node-left pn)
10141 (js2-xml-dot-query-node-right pn))
10142 (if (js2-must-match js2-RP "msg.no.paren")
10143 (setf (js2-xml-dot-query-node-rp pn) (js2-current-token-beg)
10144 end (js2-current-token-end)))
10145 (setf (js2-node-len pn) (- end pos))
10146 pn))
10147
10148 (defun js2-parse-element-get (pn)
10149 "Parse an element-get expression, e.g. foo[bar].
10150 Last token parsed must be `js2-RB'."
10151 (let ((lb (js2-current-token-beg))
10152 (pos (js2-node-pos pn))
10153 rb expr)
10154 (setq expr (js2-parse-expr))
10155 (if (js2-must-match js2-RB "msg.no.bracket.index")
10156 (setq rb (js2-current-token-beg)))
10157 (setq pn (make-js2-elem-get-node :target pn
10158 :pos pos
10159 :element expr
10160 :lb (js2-relpos lb pos)
10161 :rb (js2-relpos rb pos)
10162 :len (- (js2-current-token-end) pos)))
10163 (js2-node-add-children pn
10164 (js2-elem-get-node-target pn)
10165 (js2-elem-get-node-element pn))
10166 pn))
10167
10168 (defun js2-highlight-function-call (token)
10169 (when (eq (js2-token-type token) js2-NAME)
10170 (js2-record-face 'js2-function-call token)))
10171
10172 (defun js2-parse-function-call (pn)
10173 (js2-highlight-function-call (js2-current-token))
10174 (js2-get-token)
10175 (let (args
10176 (pos (js2-node-pos pn)))
10177 (setq pn (make-js2-call-node :pos pos
10178 :target pn
10179 :lp (- (js2-current-token-beg) pos)))
10180 (js2-node-add-children pn (js2-call-node-target pn))
10181 ;; Add the arguments to pn, if any are supplied.
10182 (setf args (nreverse (js2-parse-argument-list))
10183 (js2-call-node-rp pn) (- (js2-current-token-beg) pos)
10184 (js2-call-node-args pn) args)
10185 (apply #'js2-node-add-children pn args)
10186 (setf (js2-node-len pn) (- js2-ts-cursor pos))
10187 pn))
10188
10189 (defun js2-parse-property-access (tt pn)
10190 "Parse a property access, XML descendants access, or XML attr access."
10191 (let ((member-type-flags 0)
10192 (dot-pos (js2-current-token-beg))
10193 (dot-len (if (= tt js2-DOTDOT) 2 1))
10194 name
10195 ref ; right side of . or .. operator
10196 result)
10197 (when (= tt js2-DOTDOT)
10198 (js2-must-have-xml)
10199 (setq member-type-flags js2-descendants-flag))
10200 (if (not js2-compiler-xml-available)
10201 (progn
10202 (js2-must-match-prop-name "msg.no.name.after.dot")
10203 (setq name (js2-create-name-node t js2-GETPROP)
10204 result (make-js2-prop-get-node :left pn
10205 :pos (js2-current-token-beg)
10206 :right name
10207 :len (js2-current-token-len)))
10208 (js2-node-add-children result pn name)
10209 result)
10210 ;; otherwise look for XML operators
10211 (setf result (if (= tt js2-DOT)
10212 (make-js2-prop-get-node)
10213 (make-js2-infix-node :type js2-DOTDOT))
10214 (js2-node-pos result) (js2-node-pos pn)
10215 (js2-infix-node-op-pos result) dot-pos
10216 (js2-infix-node-left result) pn ; do this after setting position
10217 tt (js2-get-prop-name-token))
10218 (cond
10219 ;; handles: name, ns::name, ns::*, ns::[expr]
10220 ((= tt js2-NAME)
10221 (setq ref (js2-parse-property-name -1 nil member-type-flags)))
10222 ;; handles: *, *::name, *::*, *::[expr]
10223 ((= tt js2-MUL)
10224 (setq ref (js2-parse-property-name nil "*" member-type-flags)))
10225 ;; handles: '@attr', '@ns::attr', '@ns::*', '@ns::[expr]', etc.
10226 ((= tt js2-XMLATTR)
10227 (setq result (js2-parse-attribute-access)))
10228 (t
10229 (js2-report-error "msg.no.name.after.dot" nil dot-pos dot-len)))
10230 (if ref
10231 (setf (js2-node-len result) (- (js2-node-end ref)
10232 (js2-node-pos result))
10233 (js2-infix-node-right result) ref))
10234 (if (js2-infix-node-p result)
10235 (js2-node-add-children result
10236 (js2-infix-node-left result)
10237 (js2-infix-node-right result)))
10238 result)))
10239
10240 (defun js2-parse-attribute-access ()
10241 "Parse an E4X XML attribute expression.
10242 This includes expressions of the forms:
10243
10244 @attr @ns::attr @ns::*
10245 @* @*::attr @*::*
10246 @[expr] @*::[expr] @ns::[expr]
10247
10248 Called if we peeked an '@' token."
10249 (let ((tt (js2-get-prop-name-token))
10250 (at-pos (js2-current-token-beg)))
10251 (cond
10252 ;; handles: @name, @ns::name, @ns::*, @ns::[expr]
10253 ((= tt js2-NAME)
10254 (js2-parse-property-name at-pos nil 0))
10255 ;; handles: @*, @*::name, @*::*, @*::[expr]
10256 ((= tt js2-MUL)
10257 (js2-parse-property-name (js2-current-token-beg) "*" 0))
10258 ;; handles @[expr]
10259 ((= tt js2-LB)
10260 (js2-parse-xml-elem-ref at-pos))
10261 (t
10262 (js2-report-error "msg.no.name.after.xmlAttr")
10263 ;; Avoid cascaded errors that happen if we make an error node here.
10264 (js2-parse-property-name (js2-current-token-beg) "" 0)))))
10265
10266 (defun js2-parse-property-name (at-pos s member-type-flags)
10267 "Check if :: follows name in which case it becomes qualified name.
10268
10269 AT-POS is a natural number if we just read an '@' token, else nil.
10270 S is the name or string that was matched: an identifier, 'throw' or '*'.
10271 MEMBER-TYPE-FLAGS is a bit set tracking whether we're a '.' or '..' child.
10272
10273 Returns a `js2-xml-ref-node' if it's an attribute access, a child of a '..'
10274 operator, or the name is followed by ::. For a plain name, returns a
10275 `js2-name-node'. Returns a `js2-error-node' for malformed XML expressions."
10276 (let ((pos (or at-pos (js2-current-token-beg)))
10277 colon-pos
10278 (name (js2-create-name-node t (js2-current-token-type) s))
10279 ns tt pn)
10280 (catch 'return
10281 (when (js2-match-token js2-COLONCOLON)
10282 (setq ns name
10283 colon-pos (js2-current-token-beg)
10284 tt (js2-get-prop-name-token))
10285 (cond
10286 ;; handles name::name
10287 ((= tt js2-NAME)
10288 (setq name (js2-create-name-node)))
10289 ;; handles name::*
10290 ((= tt js2-MUL)
10291 (setq name (js2-create-name-node nil nil "*")))
10292 ;; handles name::[expr]
10293 ((= tt js2-LB)
10294 (throw 'return (js2-parse-xml-elem-ref at-pos ns colon-pos)))
10295 (t
10296 (js2-report-error "msg.no.name.after.coloncolon"))))
10297 (if (and (null ns) (zerop member-type-flags))
10298 name
10299 (prog1
10300 (setq pn
10301 (make-js2-xml-prop-ref-node :pos pos
10302 :len (- (js2-node-end name) pos)
10303 :at-pos at-pos
10304 :colon-pos colon-pos
10305 :propname name))
10306 (js2-node-add-children pn name))))))
10307
10308 (defun js2-parse-xml-elem-ref (at-pos &optional namespace colon-pos)
10309 "Parse the [expr] portion of an xml element reference.
10310 For instance, @[expr], @*::[expr], or ns::[expr]."
10311 (let* ((lb (js2-current-token-beg))
10312 (pos (or at-pos lb))
10313 rb
10314 (expr (js2-parse-expr))
10315 (end (js2-node-end expr))
10316 pn)
10317 (if (js2-must-match js2-RB "msg.no.bracket.index")
10318 (setq rb (js2-current-token-beg)
10319 end (js2-current-token-end)))
10320 (prog1
10321 (setq pn
10322 (make-js2-xml-elem-ref-node :pos pos
10323 :len (- end pos)
10324 :namespace namespace
10325 :colon-pos colon-pos
10326 :at-pos at-pos
10327 :expr expr
10328 :lb (js2-relpos lb pos)
10329 :rb (js2-relpos rb pos)))
10330 (js2-node-add-children pn namespace expr))))
10331
10332 (defun js2-parse-destruct-primary-expr ()
10333 (let ((js2-is-in-destructuring t))
10334 (js2-parse-primary-expr)))
10335
10336 (defun js2-parse-primary-expr ()
10337 "Parse a literal (leaf) expression of some sort.
10338 Includes complex literals such as functions, object-literals,
10339 array-literals, array comprehensions and regular expressions."
10340 (let (tt node)
10341 (setq tt (js2-current-token-type))
10342 (cond
10343 ((= tt js2-CLASS)
10344 (js2-parse-class-expr))
10345 ((= tt js2-FUNCTION)
10346 (js2-parse-function-expr))
10347 ((js2-match-async-function)
10348 (js2-parse-function-expr t))
10349 ((= tt js2-LB)
10350 (js2-parse-array-comp-or-literal))
10351 ((= tt js2-LC)
10352 (js2-parse-object-literal))
10353 ((= tt js2-LET)
10354 (js2-parse-let (js2-current-token-beg)))
10355 ((= tt js2-LP)
10356 (js2-parse-paren-expr-or-generator-comp))
10357 ((= tt js2-XMLATTR)
10358 (js2-must-have-xml)
10359 (js2-parse-attribute-access))
10360 ((= tt js2-NAME)
10361 (js2-parse-name tt))
10362 ((= tt js2-NUMBER)
10363 (setq node (make-js2-number-node))
10364 (when (and js2-in-use-strict-directive
10365 (= (js2-number-node-num-base node) 8)
10366 (js2-number-node-legacy-octal-p node))
10367 (js2-report-error "msg.no.octal.strict"))
10368 node)
10369 ((or (= tt js2-STRING) (= tt js2-NO_SUBS_TEMPLATE))
10370 (make-js2-string-node :type tt))
10371 ((= tt js2-TEMPLATE_HEAD)
10372 (js2-parse-template-literal))
10373 ((or (= tt js2-DIV) (= tt js2-ASSIGN_DIV))
10374 ;; Got / or /= which in this context means a regexp literal
10375 (let ((px-pos (js2-current-token-beg))
10376 (flags (js2-read-regexp tt))
10377 (end (js2-current-token-end)))
10378 (prog1
10379 (make-js2-regexp-node :pos px-pos
10380 :len (- end px-pos)
10381 :value (js2-current-token-string)
10382 :flags flags)
10383 (js2-set-face px-pos end 'font-lock-string-face 'record)
10384 (js2-record-text-property px-pos end 'syntax-table '(2)))))
10385 ((or (= tt js2-NULL)
10386 (= tt js2-THIS)
10387 (= tt js2-SUPER)
10388 (= tt js2-FALSE)
10389 (= tt js2-TRUE))
10390 (make-js2-keyword-node :type tt))
10391 ((= tt js2-TRIPLEDOT)
10392 ;; Likewise, only valid in an arrow function with a rest param.
10393 (if (and (js2-match-token js2-NAME)
10394 (js2-match-token js2-RP)
10395 (eq (js2-peek-token) js2-ARROW))
10396 (progn
10397 (js2-unget-token) ; Put back the right paren.
10398 ;; See the previous case.
10399 (make-js2-keyword-node :type js2-NULL))
10400 (js2-report-error "msg.syntax")
10401 (make-js2-error-node)))
10402 ((= tt js2-RESERVED)
10403 (js2-report-error "msg.reserved.id")
10404 (make-js2-name-node))
10405 ((= tt js2-ERROR)
10406 ;; the scanner or one of its subroutines reported the error.
10407 (make-js2-error-node))
10408 ((= tt js2-EOF)
10409 (let* ((px-pos (point-at-bol))
10410 (len (- js2-ts-cursor px-pos)))
10411 (js2-report-error "msg.unexpected.eof" nil px-pos len))
10412 (make-js2-error-node :pos (1- js2-ts-cursor)))
10413 (t
10414 (js2-report-error "msg.syntax")
10415 (make-js2-error-node)))))
10416
10417 (defun js2-parse-template-literal ()
10418 (let ((beg (js2-current-token-beg))
10419 (kids (list (make-js2-string-node :type js2-TEMPLATE_HEAD)))
10420 (tt js2-TEMPLATE_HEAD))
10421 (while (eq tt js2-TEMPLATE_HEAD)
10422 (push (js2-parse-expr) kids)
10423 (js2-must-match js2-RC "msg.syntax")
10424 (setq tt (js2-get-token 'TEMPLATE_TAIL))
10425 (push (make-js2-string-node :type tt) kids))
10426 (setq kids (nreverse kids))
10427 (let ((tpl (make-js2-template-node :beg beg
10428 :len (- (js2-current-token-end) beg)
10429 :kids kids)))
10430 (apply #'js2-node-add-children tpl kids)
10431 tpl)))
10432
10433 (defun js2-parse-name (_tt)
10434 (let ((name (js2-current-token-string))
10435 node)
10436 (setq node (if js2-compiler-xml-available
10437 (js2-parse-property-name nil name 0)
10438 (js2-create-name-node 'check-activation nil name)))
10439 (if js2-highlight-external-variables
10440 (js2-record-name-node node))
10441 node))
10442
10443 (defun js2-parse-warn-trailing-comma (msg pos elems comma-pos)
10444 (js2-add-strict-warning
10445 msg nil
10446 ;; back up from comma to beginning of line or array/objlit
10447 (max (if elems
10448 (js2-node-pos (car elems))
10449 pos)
10450 (save-excursion
10451 (goto-char comma-pos)
10452 (back-to-indentation)
10453 (point)))
10454 comma-pos))
10455
10456 (defun js2-parse-array-comp-or-literal ()
10457 (let ((pos (js2-current-token-beg)))
10458 (if (and (>= js2-language-version 200)
10459 (js2-match-token js2-FOR))
10460 (js2-parse-array-comp pos)
10461 (js2-parse-array-literal pos))))
10462
10463 (defun js2-parse-array-literal (pos)
10464 (let ((after-lb-or-comma t)
10465 after-comma tt elems pn
10466 (continue t))
10467 (unless js2-is-in-destructuring
10468 (js2-push-scope (make-js2-scope))) ; for the legacy array comp
10469 (while continue
10470 (setq tt (js2-get-token))
10471 (cond
10472 ;; comma
10473 ((= tt js2-COMMA)
10474 (setq after-comma (js2-current-token-end))
10475 (if (not after-lb-or-comma)
10476 (setq after-lb-or-comma t)
10477 (push nil elems)))
10478 ;; end of array
10479 ((or (= tt js2-RB)
10480 (= tt js2-EOF)) ; prevent infinite loop
10481 (if (= tt js2-EOF)
10482 (js2-report-error "msg.no.bracket.arg" nil pos))
10483 (when (and after-comma (< js2-language-version 170))
10484 (js2-parse-warn-trailing-comma "msg.array.trailing.comma"
10485 pos (remove nil elems) after-comma))
10486 (setq continue nil
10487 pn (make-js2-array-node :pos pos
10488 :len (- js2-ts-cursor pos)
10489 :elems (nreverse elems)))
10490 (apply #'js2-node-add-children pn (js2-array-node-elems pn)))
10491 ;; destructuring binding
10492 (js2-is-in-destructuring
10493 (push (cond
10494 ((and (= tt js2-NAME)
10495 (= js2-ASSIGN (js2-peek-token)))
10496 ;; a=defaultValue
10497 (js2-parse-initialized-binding (js2-parse-name js2-NAME)))
10498 ((or (= tt js2-LC)
10499 (= tt js2-LB)
10500 (= tt js2-NAME))
10501 ;; [a, b, c] | {a, b, c} | {a:x, b:y, c:z} | a
10502 (js2-parse-destruct-primary-expr))
10503 ;; invalid pattern
10504 (t
10505 (js2-report-error "msg.bad.var")
10506 (make-js2-error-node)))
10507 elems)
10508 (setq after-lb-or-comma nil
10509 after-comma nil))
10510 ;; array comp
10511 ((and (>= js2-language-version 170)
10512 (= tt js2-FOR) ; check for array comprehension
10513 (not after-lb-or-comma) ; "for" can't follow a comma
10514 elems ; must have at least 1 element
10515 (not (cdr elems))) ; but no 2nd element
10516 (js2-unget-token)
10517 (setf continue nil
10518 pn (js2-parse-legacy-array-comp (car elems) pos)))
10519 ;; another element
10520 (t
10521 (unless after-lb-or-comma
10522 (js2-report-error "msg.no.bracket.arg"))
10523 (if (and (= tt js2-TRIPLEDOT)
10524 (>= js2-language-version 200))
10525 ;; spread operator
10526 (push (js2-make-unary tt 'js2-parse-assign-expr)
10527 elems)
10528 (js2-unget-token)
10529 (push (js2-parse-assign-expr) elems))
10530 (setq after-lb-or-comma nil
10531 after-comma nil))))
10532 (unless js2-is-in-destructuring
10533 (js2-pop-scope))
10534 pn))
10535
10536 (defun js2-parse-legacy-array-comp (expr pos)
10537 "Parse a legacy array comprehension (JavaScript 1.7).
10538 EXPR is the first expression after the opening left-bracket.
10539 POS is the beginning of the LB token preceding EXPR.
10540 We should have just parsed the 'for' keyword before calling this function."
10541 (let ((current-scope js2-current-scope)
10542 loops first filter result)
10543 (unwind-protect
10544 (progn
10545 (while (js2-match-token js2-FOR)
10546 (let ((loop (make-js2-comp-loop-node)))
10547 (js2-push-scope loop)
10548 (push loop loops)
10549 (js2-parse-comp-loop loop)))
10550 ;; First loop takes expr scope's parent.
10551 (setf (js2-scope-parent-scope (setq first (car (last loops))))
10552 (js2-scope-parent-scope current-scope))
10553 ;; Set expr scope's parent to the last loop.
10554 (setf (js2-scope-parent-scope current-scope) (car loops))
10555 (if (/= (js2-get-token) js2-IF)
10556 (js2-unget-token)
10557 (setq filter (js2-parse-condition))))
10558 (dotimes (_ (1- (length loops)))
10559 (js2-pop-scope)))
10560 (js2-must-match js2-RB "msg.no.bracket.arg" pos)
10561 (setq result (make-js2-comp-node :pos pos
10562 :len (- js2-ts-cursor pos)
10563 :result expr
10564 :loops (nreverse loops)
10565 :filters (and filter (list (car filter)))
10566 :form 'LEGACY_ARRAY))
10567 ;; Set comp loop's parent to the last loop.
10568 ;; TODO: Get rid of the bogus expr scope.
10569 (setf (js2-scope-parent-scope result) first)
10570 (apply #'js2-node-add-children result expr (car filter)
10571 (js2-comp-node-loops result))
10572 result))
10573
10574 (defun js2-parse-array-comp (pos)
10575 "Parse an ES6 array comprehension.
10576 POS is the beginning of the LB token.
10577 We should have just parsed the 'for' keyword before calling this function."
10578 (let ((pn (js2-parse-comprehension pos 'ARRAY)))
10579 (js2-must-match js2-RB "msg.no.bracket.arg" pos)
10580 pn))
10581
10582 (defun js2-parse-generator-comp (pos)
10583 (let* ((js2-nesting-of-function (1+ js2-nesting-of-function))
10584 (js2-current-script-or-fn
10585 (make-js2-function-node :generator-type 'COMPREHENSION))
10586 (pn (js2-parse-comprehension pos 'STAR_GENERATOR)))
10587 (js2-must-match js2-RP "msg.no.paren" pos)
10588 pn))
10589
10590 (defun js2-parse-comprehension (pos form)
10591 (let (loops filters expr result last)
10592 (unwind-protect
10593 (progn
10594 (js2-unget-token)
10595 (while (js2-match-token js2-FOR)
10596 (let ((loop (make-js2-comp-loop-node)))
10597 (js2-push-scope loop)
10598 (push loop loops)
10599 (js2-parse-comp-loop loop)))
10600 (while (js2-match-token js2-IF)
10601 (push (car (js2-parse-condition)) filters))
10602 (setq expr (js2-parse-assign-expr))
10603 (setq last (car loops)))
10604 (dolist (_ loops)
10605 (js2-pop-scope)))
10606 (setq result (make-js2-comp-node :pos pos
10607 :len (- js2-ts-cursor pos)
10608 :result expr
10609 :loops (nreverse loops)
10610 :filters (nreverse filters)
10611 :form form))
10612 (apply #'js2-node-add-children result (js2-comp-node-loops result))
10613 (apply #'js2-node-add-children result expr (js2-comp-node-filters result))
10614 (setf (js2-scope-parent-scope result) last)
10615 result))
10616
10617 (defun js2-parse-comp-loop (pn &optional only-of-p)
10618 "Parse a 'for [each] (foo [in|of] bar)' expression in an Array comprehension.
10619 The current token should be the initial FOR.
10620 If ONLY-OF-P is non-nil, only the 'for (foo of bar)' form is allowed."
10621 (let ((pos (js2-comp-loop-node-pos pn))
10622 tt iter obj foreach-p forof-p in-pos each-pos lp rp)
10623 (when (and (not only-of-p) (js2-match-token js2-NAME))
10624 (if (string= (js2-current-token-string) "each")
10625 (progn
10626 (setq foreach-p t
10627 each-pos (- (js2-current-token-beg) pos)) ; relative
10628 (js2-record-face 'font-lock-keyword-face))
10629 (js2-report-error "msg.no.paren.for")))
10630 (if (js2-must-match js2-LP "msg.no.paren.for")
10631 (setq lp (- (js2-current-token-beg) pos)))
10632 (setq tt (js2-peek-token))
10633 (cond
10634 ((or (= tt js2-LB)
10635 (= tt js2-LC))
10636 (js2-get-token)
10637 (setq iter (js2-parse-destruct-primary-expr))
10638 (js2-define-destruct-symbols iter js2-LET
10639 'font-lock-variable-name-face t))
10640 ((js2-match-token js2-NAME)
10641 (setq iter (js2-create-name-node)))
10642 (t
10643 (js2-report-error "msg.bad.var")))
10644 ;; Define as a let since we want the scope of the variable to
10645 ;; be restricted to the array comprehension
10646 (if (js2-name-node-p iter)
10647 (js2-define-symbol js2-LET (js2-name-node-name iter) pn t))
10648 (if (or (and (not only-of-p) (js2-match-token js2-IN))
10649 (and (>= js2-language-version 200)
10650 (js2-match-contextual-kwd "of")
10651 (setq forof-p t)))
10652 (setq in-pos (- (js2-current-token-beg) pos))
10653 (js2-report-error "msg.in.after.for.name"))
10654 (setq obj (js2-parse-expr))
10655 (if (js2-must-match js2-RP "msg.no.paren.for.ctrl")
10656 (setq rp (- (js2-current-token-beg) pos)))
10657 (setf (js2-node-pos pn) pos
10658 (js2-node-len pn) (- js2-ts-cursor pos)
10659 (js2-comp-loop-node-iterator pn) iter
10660 (js2-comp-loop-node-object pn) obj
10661 (js2-comp-loop-node-in-pos pn) in-pos
10662 (js2-comp-loop-node-each-pos pn) each-pos
10663 (js2-comp-loop-node-foreach-p pn) foreach-p
10664 (js2-comp-loop-node-forof-p pn) forof-p
10665 (js2-comp-loop-node-lp pn) lp
10666 (js2-comp-loop-node-rp pn) rp)
10667 (js2-node-add-children pn iter obj)
10668 pn))
10669
10670 (defun js2-parse-class-stmt ()
10671 (let ((pos (js2-current-token-beg))
10672 (_ (js2-must-match-name "msg.unnamed.class.stmt"))
10673 (name (js2-create-name-node t)))
10674 (js2-set-face (js2-node-pos name) (js2-node-end name)
10675 'font-lock-function-name-face 'record)
10676 (let ((node (js2-parse-class pos 'CLASS_STATEMENT name)))
10677 (js2-define-symbol js2-FUNCTION
10678 (js2-name-node-name name)
10679 node)
10680 node)))
10681
10682 (defun js2-parse-class-expr ()
10683 (let ((pos (js2-current-token-beg))
10684 name)
10685 (when (js2-match-token js2-NAME)
10686 (setq name (js2-create-name-node t)))
10687 (js2-parse-class pos 'CLASS_EXPRESSION name)))
10688
10689 (defun js2-parse-class (pos form name)
10690 ;; class X [extends ...] {
10691 (let (pn elems extends)
10692 (if (js2-match-token js2-EXTENDS)
10693 (if (= (js2-peek-token) js2-LC)
10694 (js2-report-error "msg.missing.extends")
10695 ;; TODO(sdh): this should be left-hand-side-expr, not assign-expr
10696 (setq extends (js2-parse-assign-expr))
10697 (if (not extends)
10698 (js2-report-error "msg.bad.extends"))))
10699 (js2-must-match js2-LC "msg.no.brace.class")
10700 (setq elems (js2-parse-object-literal-elems t)
10701 pn (make-js2-class-node :pos pos
10702 :len (- js2-ts-cursor pos)
10703 :form form
10704 :name name
10705 :extends extends
10706 :elems elems))
10707 (apply #'js2-node-add-children pn (js2-class-node-elems pn))
10708 pn))
10709
10710 (defun js2-parse-object-literal ()
10711 (let* ((pos (js2-current-token-beg))
10712 (elems (js2-parse-object-literal-elems))
10713 (result (make-js2-object-node :pos pos
10714 :len (- js2-ts-cursor pos)
10715 :elems elems)))
10716 (apply #'js2-node-add-children result (js2-object-node-elems result))
10717 result))
10718
10719 (defun js2-property-key-string (property-node)
10720 "Return the key of PROPERTY-NODE (a `js2-object-prop-node' or
10721 `js2-method-node') as a string, or nil if it can't be
10722 represented as a string (e.g., the key is computed by an
10723 expression)."
10724 (let ((key (js2-infix-node-left property-node)))
10725 (when (js2-computed-prop-name-node-p key)
10726 (setq key (js2-computed-prop-name-node-expr key)))
10727 (cond
10728 ((js2-name-node-p key)
10729 (js2-name-node-name key))
10730 ((js2-string-node-p key)
10731 (js2-string-node-value key))
10732 ((js2-number-node-p key)
10733 (js2-number-node-value key)))))
10734
10735 (defun js2-parse-object-literal-elems (&optional class-p)
10736 (let ((pos (js2-current-token-beg))
10737 (static nil)
10738 (continue t)
10739 tt elems elem
10740 elem-key-string previous-elem-key-string
10741 after-comma previous-token)
10742 (while continue
10743 (setq tt (js2-get-prop-name-token)
10744 static nil
10745 elem nil
10746 previous-token nil)
10747 ;; Handle 'static' keyword only if we're in a class
10748 (when (and class-p (= js2-NAME tt)
10749 (string= "static" (js2-current-token-string)))
10750 (js2-record-face 'font-lock-keyword-face)
10751 (setq static t
10752 tt (js2-get-prop-name-token)))
10753 ;; Handle generator * before the property name for in-line functions
10754 (when (and (>= js2-language-version 200)
10755 (= js2-MUL tt))
10756 (setq previous-token (js2-current-token)
10757 tt (js2-get-prop-name-token)))
10758 ;; Handle getter, setter and async methods
10759 (let ((prop (js2-current-token-string)))
10760 (when (and (>= js2-language-version 200)
10761 (= js2-NAME tt)
10762 (member prop '("get" "set" "async"))
10763 (member (js2-peek-token)
10764 (list js2-NAME js2-STRING js2-NUMBER js2-LB)))
10765 (setq previous-token (js2-current-token)
10766 tt (js2-get-prop-name-token))))
10767 (cond
10768 ;; Found a property (of any sort)
10769 ((member tt (list js2-NAME js2-STRING js2-NUMBER js2-LB))
10770 (setq after-comma nil
10771 elem (js2-parse-named-prop tt pos previous-token))
10772 (if (and (null elem)
10773 (not js2-recover-from-parse-errors))
10774 (setq continue nil)))
10775 ;; Break out of loop, and handle trailing commas.
10776 ((or (= tt js2-RC)
10777 (= tt js2-EOF))
10778 (js2-unget-token)
10779 (setq continue nil)
10780 (if after-comma
10781 (js2-parse-warn-trailing-comma "msg.extra.trailing.comma"
10782 pos elems after-comma)))
10783 ;; Skip semicolons in a class body
10784 ((and class-p
10785 (= tt js2-SEMI))
10786 nil)
10787 (t
10788 (js2-report-error "msg.bad.prop")
10789 (unless js2-recover-from-parse-errors
10790 (setq continue nil)))) ; end switch
10791 ;; Handle static for classes' codegen.
10792 (if static
10793 (if elem (js2-node-set-prop elem 'STATIC t)
10794 (js2-report-error "msg.unexpected.static")))
10795 ;; Handle commas, depending on class-p.
10796 (let ((tok (js2-get-prop-name-token)))
10797 (if (eq tok js2-COMMA)
10798 (if class-p
10799 (js2-report-error "msg.class.unexpected.comma")
10800 (setq after-comma (js2-current-token-end)))
10801 (js2-unget-token)
10802 (unless class-p (setq continue nil))))
10803 (when elem
10804 (when (and js2-in-use-strict-directive
10805 (setq elem-key-string (js2-property-key-string elem))
10806 (cl-some
10807 (lambda (previous-elem)
10808 (and (setq previous-elem-key-string
10809 (js2-property-key-string previous-elem))
10810 ;; Check if the property is a duplicate.
10811 (string= previous-elem-key-string elem-key-string)
10812 ;; But make an exception for getter / setter pairs.
10813 (not (and (js2-method-node-p elem)
10814 (js2-method-node-p previous-elem)
10815 (let ((type (js2-node-get-prop (js2-method-node-right elem) 'METHOD_TYPE))
10816 (previous-type (js2-node-get-prop (js2-method-node-right previous-elem) 'METHOD_TYPE)))
10817 (and (member type '(GET SET))
10818 (member previous-type '(GET SET))
10819 (not (eq type previous-type))))))))
10820 elems))
10821 (js2-report-error "msg.dup.obj.lit.prop.strict"
10822 elem-key-string
10823 (js2-node-abs-pos (js2-infix-node-left elem))
10824 (js2-node-len (js2-infix-node-left elem))))
10825 ;; Append any parsed element.
10826 (push elem elems))) ; end loop
10827 (js2-must-match js2-RC "msg.no.brace.prop")
10828 (nreverse elems)))
10829
10830 (defun js2-parse-named-prop (tt pos previous-token)
10831 "Parse a name, string, or getter/setter object property.
10832 When `js2-is-in-destructuring' is t, forms like {a, b, c} will be permitted."
10833 (let ((key (js2-parse-prop-name tt))
10834 (prop (and previous-token (js2-token-string previous-token)))
10835 (property-type (when previous-token
10836 (if (= (js2-token-type previous-token) js2-MUL)
10837 "*"
10838 (js2-token-string previous-token)))))
10839 (when (member prop '("get" "set" "async"))
10840 (js2-set-face (js2-token-beg previous-token)
10841 (js2-token-end previous-token)
10842 'font-lock-keyword-face 'record)) ; get/set/async
10843 (cond
10844 ;; method definition: {f() {...}}
10845 ((and (= (js2-peek-token) js2-LP)
10846 (>= js2-language-version 200))
10847 (when (js2-name-node-p key) ; highlight function name properties
10848 (js2-record-face 'font-lock-function-name-face))
10849 (js2-parse-method-prop pos key property-type))
10850 ;; binding element with initializer
10851 ((and (= (js2-peek-token) js2-ASSIGN)
10852 (>= js2-language-version 200))
10853 (if (not js2-is-in-destructuring)
10854 (js2-report-error "msg.init.no.destruct"))
10855 (js2-parse-initialized-binding key))
10856 ;; regular prop
10857 (t
10858 (let ((beg (js2-current-token-beg))
10859 (end (js2-current-token-end))
10860 (expr (js2-parse-plain-property key)))
10861 (when (and (= tt js2-NAME)
10862 (not js2-is-in-destructuring)
10863 js2-highlight-external-variables
10864 (js2-node-get-prop expr 'SHORTHAND))
10865 (js2-record-name-node key))
10866 (js2-set-face beg end
10867 (if (js2-function-node-p
10868 (js2-object-prop-node-right expr))
10869 'font-lock-function-name-face
10870 'js2-object-property)
10871 'record)
10872 expr)))))
10873
10874 (defun js2-parse-initialized-binding (name)
10875 "Parse a `SingleNameBinding' with initializer.
10876
10877 `name' is the `BindingIdentifier'."
10878 (when (js2-match-token js2-ASSIGN)
10879 (js2-make-binary js2-ASSIGN name 'js2-parse-assign-expr t)))
10880
10881 (defun js2-parse-prop-name (tt)
10882 (cond
10883 ;; Literal string keys: {'foo': 'bar'}
10884 ((= tt js2-STRING)
10885 (make-js2-string-node))
10886 ;; Handle computed keys: {[Symbol.iterator]: ...}, *[1+2]() {...}},
10887 ;; {[foo + bar]() { ... }}, {[get ['x' + 1]() {...}}
10888 ((and (= tt js2-LB)
10889 (>= js2-language-version 200))
10890 (make-js2-computed-prop-name-node
10891 :expr (prog1 (js2-parse-assign-expr)
10892 (js2-must-match js2-RB "msg.missing.computed.rb"))))
10893 ;; Numeric keys: {12: 'foo'}, {10.7: 'bar'}
10894 ((= tt js2-NUMBER)
10895 (make-js2-number-node))
10896 ;; Unquoted names: {foo: 12}
10897 ((= tt js2-NAME)
10898 (js2-create-name-node))
10899 ;; Anything else is an error
10900 (t (js2-report-error "msg.bad.prop"))))
10901
10902 (defun js2-parse-plain-property (prop)
10903 "Parse a non-getter/setter property in an object literal.
10904 PROP is the node representing the property: a number, name,
10905 string or expression."
10906 (let* ((tt (js2-get-token))
10907 (pos (js2-node-pos prop))
10908 colon expr result)
10909 (cond
10910 ;; Abbreviated property, as in {foo, bar}
10911 ((and (>= js2-language-version 200)
10912 (or (= tt js2-COMMA)
10913 (= tt js2-RC))
10914 (not (js2-number-node-p prop)))
10915 (js2-unget-token)
10916 (setq result (make-js2-object-prop-node
10917 :pos pos
10918 :left prop
10919 :right prop
10920 :op-pos (js2-current-token-len)))
10921 (js2-node-add-children result prop)
10922 (js2-node-set-prop result 'SHORTHAND t)
10923 result)
10924 ;; Normal property
10925 (t
10926 (if (= tt js2-COLON)
10927 (setq colon (- (js2-current-token-beg) pos)
10928 expr (js2-parse-assign-expr))
10929 (js2-report-error "msg.no.colon.prop")
10930 (setq expr (make-js2-error-node)))
10931 (setq result (make-js2-object-prop-node
10932 :pos pos
10933 ;; don't include last consumed token in length
10934 :len (- (+ (js2-node-pos expr)
10935 (js2-node-len expr))
10936 pos)
10937 :left prop
10938 :right expr
10939 :op-pos colon))
10940 (js2-node-add-children result prop expr)
10941 result))))
10942
10943 (defun js2-parse-method-prop (pos prop type-string)
10944 "Parse method property in an object literal or a class body.
10945 JavaScript syntax is:
10946
10947 { foo(...) {...}, get foo() {...}, set foo(x) {...}, *foo(...) {...},
10948 async foo(...) {...} }
10949
10950 and expression closure style is also supported
10951
10952 { get foo() x, set foo(x) _x = x }
10953
10954 POS is the start position of the `get' or `set' keyword.
10955 PROP is the `js2-name-node' representing the property name.
10956 TYPE-STRING is a string `get', `set', `*', or nil, indicating a found keyword."
10957 (let* ((type (or (cdr (assoc type-string '(("get" . GET)
10958 ("set" . SET)
10959 ("async" . ASYNC))))
10960 'FUNCTION))
10961 result end
10962 (fn (js2-parse-function-expr (eq type 'ASYNC))))
10963 ;; it has to be an anonymous function, as we already parsed the name
10964 (if (/= (js2-node-type fn) js2-FUNCTION)
10965 (js2-report-error "msg.bad.prop")
10966 (if (cl-plusp (length (js2-function-name fn)))
10967 (js2-report-error "msg.bad.prop")))
10968 (js2-node-set-prop fn 'METHOD_TYPE type) ; for codegen
10969 (when (string= type-string "*")
10970 (setf (js2-function-node-generator-type fn) 'STAR))
10971 (setq end (js2-node-end fn)
10972 result (make-js2-method-node :pos pos
10973 :len (- end pos)
10974 :left prop
10975 :right fn))
10976 (js2-node-add-children result prop fn)
10977 result))
10978
10979 (defun js2-create-name-node (&optional check-activation-p token string)
10980 "Create a name node using the current token and, optionally, STRING.
10981 And, if CHECK-ACTIVATION-P is non-nil, use the value of TOKEN."
10982 (let* ((beg (js2-current-token-beg))
10983 (tt (js2-current-token-type))
10984 (s (or string
10985 (if (= js2-NAME tt)
10986 (js2-current-token-string)
10987 (js2-tt-name tt))))
10988 name)
10989 (setq name (make-js2-name-node :pos beg
10990 :name s
10991 :len (length s)))
10992 (if check-activation-p
10993 (js2-check-activation-name s (or token js2-NAME)))
10994 name))
10995
10996 ;;; Use AST to extract semantic information
10997
10998 (defun js2-get-element-index-from-array-node (elem array-node &optional hardcoded-array-index)
10999 "Get index of ELEM from ARRAY-NODE or 0 and return it as string."
11000 (let ((idx 0) elems (rlt hardcoded-array-index))
11001 (setq elems (js2-array-node-elems array-node))
11002 (if (and elem (not hardcoded-array-index))
11003 (setq rlt (catch 'nth-elt
11004 (dolist (x elems)
11005 ;; We know the ELEM does belong to ARRAY-NODE,
11006 (if (eq elem x) (throw 'nth-elt idx))
11007 (setq idx (1+ idx)))
11008 0)))
11009 (format "[%s]" rlt)))
11010
11011 (defun js2-print-json-path (&optional hardcoded-array-index)
11012 "Print the path to the JSON value under point, and save it in the kill ring.
11013 If HARDCODED-ARRAY-INDEX provided, array index in JSON path is replaced with it."
11014 (interactive "P")
11015 (let (previous-node current-node
11016 key-name
11017 rlt)
11018
11019 ;; The `js2-node-at-point' starts scanning from AST root node.
11020 ;; So there is no way to optimize it.
11021 (setq current-node (js2-node-at-point))
11022
11023 (while (not (js2-ast-root-p current-node))
11024 (cond
11025 ;; JSON property node
11026 ((js2-object-prop-node-p current-node)
11027 (setq key-name (js2-prop-node-name (js2-object-prop-node-left current-node)))
11028 (if rlt (setq rlt (concat "." key-name rlt))
11029 (setq rlt (concat "." key-name))))
11030
11031 ;; Array node
11032 ((or (js2-array-node-p current-node))
11033 (setq rlt (concat (js2-get-element-index-from-array-node previous-node
11034 current-node
11035 hardcoded-array-index)
11036 rlt)))
11037
11038 ;; Other nodes are ignored
11039 (t))
11040
11041 ;; current node is archived
11042 (setq previous-node current-node)
11043 ;; Get parent node and continue the loop
11044 (setq current-node (js2-node-parent current-node)))
11045
11046 (cond
11047 (rlt
11048 ;; Clean the final result
11049 (setq rlt (replace-regexp-in-string "^\\." "" rlt))
11050 (kill-new rlt)
11051 (message "%s => kill-ring" rlt))
11052 (t
11053 (message "No JSON path found!")))
11054
11055 rlt))
11056
11057 ;;; Indentation support (bouncing)
11058
11059 ;; In recent-enough Emacs, we reuse the indentation code from
11060 ;; `js-mode'. To continue support for the older versions, some code
11061 ;; that was here previously was moved to `js2-old-indent.el'.
11062
11063 ;; Whichever indenter is used, it's often "wrong", however, and needs
11064 ;; to be overridden. The right long-term solution is probably to
11065 ;; emulate (or integrate with) cc-engine, but it's a nontrivial amount
11066 ;; of coding. Even when a parse tree from `js2-parse' is present,
11067 ;; which is not true at the moment the user is typing, computing
11068 ;; indentation is still thousands of lines of code to handle every
11069 ;; possible syntactic edge case.
11070
11071 ;; In the meantime, the compromise solution is that we offer a "bounce
11072 ;; indenter", configured with `js2-bounce-indent-p', which cycles the
11073 ;; current line indent among various likely guess points. This approach
11074 ;; is far from perfect, but should at least make it slightly easier to
11075 ;; move the line towards its desired indentation when manually
11076 ;; overriding Karl's heuristic nesting guesser.
11077
11078 (defun js2-backward-sws ()
11079 "Move backward through whitespace and comments."
11080 (interactive)
11081 (while (forward-comment -1)))
11082
11083 (defun js2-forward-sws ()
11084 "Move forward through whitespace and comments."
11085 (interactive)
11086 (while (forward-comment 1)))
11087
11088 (defun js2-arglist-close ()
11089 "Return non-nil if we're on a line beginning with a close-paren/brace."
11090 (save-excursion
11091 (goto-char (point-at-bol))
11092 (js2-forward-sws)
11093 (looking-at "[])}]")))
11094
11095 (defun js2-indent-looks-like-label-p ()
11096 (goto-char (point-at-bol))
11097 (js2-forward-sws)
11098 (looking-at (concat js2-mode-identifier-re ":")))
11099
11100 (defun js2-indent-in-objlit-p (parse-status)
11101 "Return non-nil if this looks like an object-literal entry."
11102 (let ((start (nth 1 parse-status)))
11103 (and
11104 start
11105 (save-excursion
11106 (and (zerop (forward-line -1))
11107 (not (< (point) start)) ; crossed a {} boundary
11108 (js2-indent-looks-like-label-p)))
11109 (save-excursion
11110 (js2-indent-looks-like-label-p)))))
11111
11112 ;; If prev line looks like foobar({ then we're passing an object
11113 ;; literal to a function call, and people pretty much always want to
11114 ;; de-dent back to the previous line, so move the 'basic-offset'
11115 ;; position to the front.
11116 (defun js2-indent-objlit-arg-p (parse-status)
11117 (save-excursion
11118 (back-to-indentation)
11119 (js2-backward-sws)
11120 (and (eq (1- (point)) (nth 1 parse-status))
11121 (eq (char-before) ?{)
11122 (progn
11123 (forward-char -1)
11124 (skip-chars-backward " \t")
11125 (eq (char-before) ?\()))))
11126
11127 (defun js2-indent-case-block-p ()
11128 (save-excursion
11129 (back-to-indentation)
11130 (js2-backward-sws)
11131 (goto-char (point-at-bol))
11132 (skip-chars-forward " \t")
11133 (looking-at "case\\s-.+:")))
11134
11135 (defun js2-bounce-indent (normal-col parse-status &optional backward)
11136 "Cycle among alternate computed indentation positions.
11137 PARSE-STATUS is the result of `parse-partial-sexp' from the beginning
11138 of the buffer to the current point. NORMAL-COL is the indentation
11139 column computed by the heuristic guesser based on current paren,
11140 bracket, brace and statement nesting. If BACKWARDS, cycle positions
11141 in reverse."
11142 (let ((cur-indent (current-indentation))
11143 (old-buffer-undo-list buffer-undo-list)
11144 ;; Emacs 21 only has `count-lines', not `line-number-at-pos'
11145 (current-line (save-excursion
11146 (forward-line 0) ; move to bol
11147 (1+ (count-lines (point-min) (point)))))
11148 positions pos main-pos anchor arglist-cont same-indent
11149 basic-offset computed-pos)
11150 ;; temporarily don't record undo info, if user requested this
11151 (when js2-mode-indent-inhibit-undo
11152 (setq buffer-undo-list t))
11153 (unwind-protect
11154 (progn
11155 ;; First likely point: indent from beginning of previous code line
11156 (push (setq basic-offset
11157 (+ (save-excursion
11158 (back-to-indentation)
11159 (js2-backward-sws)
11160 (back-to-indentation)
11161 (current-column))
11162 js2-basic-offset))
11163 positions)
11164
11165 ;; (First + epsilon) likely point: indent 2x from beginning of
11166 ;; previous code line. Google does it this way.
11167 (push (setq basic-offset
11168 (+ (save-excursion
11169 (back-to-indentation)
11170 (js2-backward-sws)
11171 (back-to-indentation)
11172 (current-column))
11173 (* 2 js2-basic-offset)))
11174 positions)
11175
11176 ;; Second likely point: indent from assign-expr RHS. This
11177 ;; is just a crude guess based on finding " = " on the previous
11178 ;; line containing actual code.
11179 (setq pos (save-excursion
11180 (forward-line -1)
11181 (goto-char (point-at-bol))
11182 (when (re-search-forward "\\s-+\\(=\\)\\s-+"
11183 (point-at-eol) t)
11184 (goto-char (match-end 1))
11185 (skip-chars-forward " \t\r\n")
11186 (current-column))))
11187 (when pos
11188 (cl-incf pos js2-basic-offset)
11189 (push pos positions))
11190
11191 ;; Third likely point: same indent as previous line of code.
11192 ;; Make it the first likely point if we're not on an
11193 ;; arglist-close line and previous line ends in a comma, or
11194 ;; both this line and prev line look like object-literal
11195 ;; elements.
11196 (setq pos (save-excursion
11197 (goto-char (point-at-bol))
11198 (js2-backward-sws)
11199 (back-to-indentation)
11200 (prog1
11201 (current-column)
11202 ;; while we're here, look for trailing comma
11203 (if (save-excursion
11204 (goto-char (point-at-eol))
11205 (js2-backward-sws)
11206 (eq (char-before) ?,))
11207 (setq arglist-cont (1- (point)))))))
11208 (when pos
11209 (if (and (or arglist-cont
11210 (js2-indent-in-objlit-p parse-status))
11211 (not (js2-arglist-close)))
11212 (setq same-indent pos))
11213 (push pos positions))
11214
11215 ;; Fourth likely point: first preceding code with less indentation.
11216 ;; than the immediately preceding code line.
11217 (setq pos (save-excursion
11218 (back-to-indentation)
11219 (js2-backward-sws)
11220 (back-to-indentation)
11221 (setq anchor (current-column))
11222 (while (and (zerop (forward-line -1))
11223 (>= (progn
11224 (back-to-indentation)
11225 (current-column))
11226 anchor)))
11227 (setq pos (current-column))))
11228 (push pos positions)
11229
11230 ;; nesting-heuristic position, main by default
11231 (push (setq main-pos normal-col) positions)
11232
11233 ;; delete duplicates and sort positions list
11234 (setq positions (sort (delete-dups positions) '<))
11235
11236 ;; comma-list continuation lines: prev line indent takes precedence
11237 (if same-indent
11238 (setq main-pos same-indent))
11239
11240 ;; common special cases where we want to indent in from previous line
11241 (if (or (js2-indent-case-block-p)
11242 (js2-indent-objlit-arg-p parse-status))
11243 (setq main-pos basic-offset))
11244
11245 ;; if bouncing backward, reverse positions list
11246 (if backward
11247 (setq positions (reverse positions)))
11248
11249 ;; record whether we're already sitting on one of the alternatives
11250 (setq pos (member cur-indent positions))
11251
11252 (cond
11253 ;; case 0: we're one one of the alternatives and this is the
11254 ;; first time they've pressed TAB on this line (best-guess).
11255 ((and js2-mode-indent-ignore-first-tab
11256 pos
11257 ;; first time pressing TAB on this line?
11258 (not (eq js2-mode-last-indented-line current-line)))
11259 ;; do nothing
11260 (setq computed-pos nil))
11261 ;; case 1: only one computed position => use it
11262 ((null (cdr positions))
11263 (setq computed-pos 0))
11264 ;; case 2: not on any of the computed spots => use main spot
11265 ((not pos)
11266 (setq computed-pos (js2-position main-pos positions)))
11267 ;; case 3: on last position: cycle to first position
11268 ((null (cdr pos))
11269 (setq computed-pos 0))
11270 ;; case 4: on intermediate position: cycle to next position
11271 (t
11272 (setq computed-pos (js2-position (cl-second pos) positions))))
11273
11274 ;; see if any hooks want to indent; otherwise we do it
11275 (cl-loop with result = nil
11276 for hook in js2-indent-hook
11277 while (null result)
11278 do
11279 (setq result (funcall hook positions computed-pos))
11280 finally do
11281 (unless (or result (null computed-pos))
11282 (indent-line-to (nth computed-pos positions)))))
11283
11284 ;; finally
11285 (if js2-mode-indent-inhibit-undo
11286 (setq buffer-undo-list old-buffer-undo-list))
11287 ;; see commentary for `js2-mode-last-indented-line'
11288 (setq js2-mode-last-indented-line current-line))))
11289
11290 (defun js2-1-line-comment-continuation-p ()
11291 "Return t if we're in a 1-line comment continuation.
11292 If so, we don't ever want to use bounce-indent."
11293 (save-excursion
11294 (and (progn
11295 (forward-line 0)
11296 (looking-at "\\s-*//"))
11297 (progn
11298 (forward-line -1)
11299 (forward-line 0)
11300 (when (looking-at "\\s-*$")
11301 (js2-backward-sws)
11302 (forward-line 0))
11303 (looking-at "\\s-*//")))))
11304
11305 (defun js2-indent-bounce (&optional backward)
11306 "Indent the current line, bouncing between several positions."
11307 (interactive)
11308 (let (parse-status offset indent-col
11309 ;; Don't whine about errors/warnings when we're indenting.
11310 ;; This has to be set before calling parse-partial-sexp below.
11311 (inhibit-point-motion-hooks t))
11312 (setq parse-status (save-excursion
11313 (syntax-ppss (point-at-bol)))
11314 offset (- (point) (save-excursion
11315 (back-to-indentation)
11316 (point))))
11317 ;; Don't touch multiline strings.
11318 (unless (nth 3 parse-status)
11319 (setq indent-col (js2-proper-indentation parse-status))
11320 (cond
11321 ;; It doesn't work well on first line of buffer.
11322 ((and (not (nth 4 parse-status))
11323 (not (js2-same-line (point-min)))
11324 (not (js2-1-line-comment-continuation-p)))
11325 (js2-bounce-indent indent-col parse-status backward))
11326 ;; just indent to the guesser's likely spot
11327 (t (indent-line-to indent-col)))
11328 (when (cl-plusp offset)
11329 (forward-char offset)))))
11330
11331 (defun js2-indent-bounce-backward ()
11332 "Indent the current line, bouncing between positions in reverse."
11333 (interactive)
11334 (js2-indent-bounce t))
11335
11336 (defun js2-indent-region (start end)
11337 "Indent the region, but don't use bounce indenting."
11338 (let ((js2-bounce-indent-p nil)
11339 (indent-region-function nil)
11340 (after-change-functions (remq 'js2-mode-edit
11341 after-change-functions)))
11342 (indent-region start end nil) ; nil for byte-compiler
11343 (js2-mode-edit start end (- end start))))
11344
11345 (defvar js2-minor-mode-map
11346 (let ((map (make-sparse-keymap)))
11347 (define-key map (kbd "C-c C-`") #'js2-next-error)
11348 (define-key map [mouse-1] #'js2-mode-show-node)
11349 map)
11350 "Keymap used when `js2-minor-mode' is active.")
11351
11352 ;;;###autoload
11353 (define-minor-mode js2-minor-mode
11354 "Minor mode for running js2 as a background linter.
11355 This allows you to use a different major mode for JavaScript editing,
11356 such as `js-mode', while retaining the asynchronous error/warning
11357 highlighting features of `js2-mode'."
11358 :group 'js2-mode
11359 :lighter " js-lint"
11360 (if (derived-mode-p 'js2-mode)
11361 (setq js2-minor-mode nil)
11362 (if js2-minor-mode
11363 (js2-minor-mode-enter)
11364 (js2-minor-mode-exit))))
11365
11366 (defun js2-minor-mode-enter ()
11367 "Initialization for `js2-minor-mode'."
11368 (set (make-local-variable 'max-lisp-eval-depth)
11369 (max max-lisp-eval-depth 3000))
11370 (setq next-error-function #'js2-next-error)
11371 (js2-set-default-externs)
11372 ;; Experiment: make reparse-delay longer for longer files.
11373 (if (cl-plusp js2-dynamic-idle-timer-adjust)
11374 (setq js2-idle-timer-delay
11375 (* js2-idle-timer-delay
11376 (/ (point-max) js2-dynamic-idle-timer-adjust))))
11377 (setq js2-mode-buffer-dirty-p t
11378 js2-mode-parsing nil)
11379 (set (make-local-variable 'js2-highlight-level) 0) ; no syntax highlighting
11380 (add-hook 'after-change-functions #'js2-minor-mode-edit nil t)
11381 (add-hook 'change-major-mode-hook #'js2-minor-mode-exit nil t)
11382 (when js2-include-jslint-globals
11383 (add-hook 'js2-post-parse-callbacks 'js2-apply-jslint-globals nil t))
11384 (run-hooks 'js2-init-hook)
11385 (js2-reparse))
11386
11387 (defun js2-minor-mode-exit ()
11388 "Turn off `js2-minor-mode'."
11389 (setq next-error-function nil)
11390 (remove-hook 'after-change-functions #'js2-mode-edit t)
11391 (remove-hook 'change-major-mode-hook #'js2-minor-mode-exit t)
11392 (when js2-mode-node-overlay
11393 (delete-overlay js2-mode-node-overlay)
11394 (setq js2-mode-node-overlay nil))
11395 (js2-remove-overlays)
11396 (remove-hook 'js2-post-parse-callbacks 'js2-apply-jslint-globals t)
11397 (setq js2-mode-ast nil))
11398
11399 (defvar js2-source-buffer nil "Linked source buffer for diagnostics view")
11400 (make-variable-buffer-local 'js2-source-buffer)
11401
11402 (cl-defun js2-display-error-list ()
11403 "Display a navigable buffer listing parse errors/warnings."
11404 (interactive)
11405 (unless (js2-have-errors-p)
11406 (message "No errors")
11407 (cl-return-from js2-display-error-list))
11408 (cl-labels ((annotate-list
11409 (lst type)
11410 "Add diagnostic TYPE and line number to errs list"
11411 (mapcar (lambda (err)
11412 (list err type (line-number-at-pos (nth 1 err))))
11413 lst)))
11414 (let* ((srcbuf (current-buffer))
11415 (errbuf (get-buffer-create "*js-lint*"))
11416 (errors (annotate-list
11417 (when js2-mode-ast (js2-ast-root-errors js2-mode-ast))
11418 'js2-error)) ; must be a valid face name
11419 (warnings (annotate-list
11420 (when js2-mode-ast (js2-ast-root-warnings js2-mode-ast))
11421 'js2-warning)) ; must be a valid face name
11422 (all-errs (sort (append errors warnings)
11423 (lambda (e1 e2) (< (cl-cadar e1) (cl-cadar e2))))))
11424 (with-current-buffer errbuf
11425 (let ((inhibit-read-only t))
11426 (erase-buffer)
11427 (dolist (err all-errs)
11428 (cl-destructuring-bind ((msg-key beg _end &rest) type line) err
11429 (insert-text-button
11430 (format "line %d: %s" line (js2-get-msg msg-key))
11431 'face type
11432 'follow-link "\C-m"
11433 'action 'js2-error-buffer-jump
11434 'js2-msg (js2-get-msg msg-key)
11435 'js2-pos beg)
11436 (insert "\n"))))
11437 (js2-error-buffer-mode)
11438 (setq js2-source-buffer srcbuf)
11439 (pop-to-buffer errbuf)
11440 (goto-char (point-min))
11441 (unless (eobp)
11442 (js2-error-buffer-view))))))
11443
11444 (defvar js2-error-buffer-mode-map
11445 (let ((map (make-sparse-keymap)))
11446 (define-key map "n" #'js2-error-buffer-next)
11447 (define-key map "p" #'js2-error-buffer-prev)
11448 (define-key map (kbd "RET") #'js2-error-buffer-jump)
11449 (define-key map "o" #'js2-error-buffer-view)
11450 (define-key map "q" #'js2-error-buffer-quit)
11451 map)
11452 "Keymap used for js2 diagnostics buffers.")
11453
11454 (defun js2-error-buffer-mode ()
11455 "Major mode for js2 diagnostics buffers.
11456 Selecting an error will jump it to the corresponding source-buffer error.
11457 \\{js2-error-buffer-mode-map}"
11458 (interactive)
11459 (setq major-mode 'js2-error-buffer-mode
11460 mode-name "JS Lint Diagnostics")
11461 (use-local-map js2-error-buffer-mode-map)
11462 (setq truncate-lines t)
11463 (set-buffer-modified-p nil)
11464 (setq buffer-read-only t)
11465 (run-hooks 'js2-error-buffer-mode-hook))
11466
11467 (defun js2-error-buffer-next ()
11468 "Move to next error and view it."
11469 (interactive)
11470 (when (zerop (forward-line 1))
11471 (js2-error-buffer-view)))
11472
11473 (defun js2-error-buffer-prev ()
11474 "Move to previous error and view it."
11475 (interactive)
11476 (when (zerop (forward-line -1))
11477 (js2-error-buffer-view)))
11478
11479 (defun js2-error-buffer-quit ()
11480 "Kill the current buffer."
11481 (interactive)
11482 (kill-buffer))
11483
11484 (defun js2-error-buffer-jump (&rest ignored)
11485 "Jump cursor to current error in source buffer."
11486 (interactive)
11487 (when (js2-error-buffer-view)
11488 (pop-to-buffer js2-source-buffer)))
11489
11490 (defun js2-error-buffer-view ()
11491 "Scroll source buffer to show error at current line."
11492 (interactive)
11493 (cond
11494 ((not (eq major-mode 'js2-error-buffer-mode))
11495 (message "Not in a js2 errors buffer"))
11496 ((not (buffer-live-p js2-source-buffer))
11497 (message "Source buffer has been killed"))
11498 ((not (wholenump (get-text-property (point) 'js2-pos)))
11499 (message "There does not seem to be an error here"))
11500 (t
11501 (let ((pos (get-text-property (point) 'js2-pos))
11502 (msg (get-text-property (point) 'js2-msg)))
11503 (save-selected-window
11504 (pop-to-buffer js2-source-buffer)
11505 (goto-char pos)
11506 (message msg))))))
11507
11508 ;;;###autoload
11509 (define-derived-mode js2-mode js-mode "Javascript-IDE"
11510 "Major mode for editing JavaScript code."
11511 (set (make-local-variable 'max-lisp-eval-depth)
11512 (max max-lisp-eval-depth 3000))
11513 (set (make-local-variable 'indent-line-function) #'js2-indent-line)
11514 (set (make-local-variable 'indent-region-function) #'js2-indent-region)
11515 (set (make-local-variable 'syntax-propertize-function) nil)
11516 (set (make-local-variable 'comment-line-break-function) #'js2-line-break)
11517 (set (make-local-variable 'beginning-of-defun-function) #'js2-beginning-of-defun)
11518 (set (make-local-variable 'end-of-defun-function) #'js2-end-of-defun)
11519 ;; We un-confuse `parse-partial-sexp' by setting syntax-table properties
11520 ;; for characters inside regexp literals.
11521 (set (make-local-variable 'parse-sexp-lookup-properties) t)
11522 ;; this is necessary to make `show-paren-function' work properly
11523 (set (make-local-variable 'parse-sexp-ignore-comments) t)
11524 ;; needed for M-x rgrep, among other things
11525 (put 'js2-mode 'find-tag-default-function #'js2-mode-find-tag)
11526
11527 (setq font-lock-defaults '(nil t))
11528
11529 ;; Experiment: make reparse-delay longer for longer files.
11530 (when (cl-plusp js2-dynamic-idle-timer-adjust)
11531 (setq js2-idle-timer-delay
11532 (* js2-idle-timer-delay
11533 (/ (point-max) js2-dynamic-idle-timer-adjust))))
11534
11535 (add-hook 'change-major-mode-hook #'js2-mode-exit nil t)
11536 (add-hook 'after-change-functions #'js2-mode-edit nil t)
11537 (setq imenu-create-index-function #'js2-mode-create-imenu-index)
11538 (setq next-error-function #'js2-next-error)
11539 (imenu-add-to-menubar (concat "IM-" mode-name))
11540 (add-to-invisibility-spec '(js2-outline . t))
11541 (set (make-local-variable 'line-move-ignore-invisible) t)
11542 (set (make-local-variable 'forward-sexp-function) #'js2-mode-forward-sexp)
11543 (when (fboundp 'cursor-sensor-mode) (cursor-sensor-mode 1))
11544
11545 (setq js2-mode-functions-hidden nil
11546 js2-mode-comments-hidden nil
11547 js2-mode-buffer-dirty-p t
11548 js2-mode-parsing nil)
11549
11550 (js2-set-default-externs)
11551
11552 (when js2-include-jslint-globals
11553 (add-hook 'js2-post-parse-callbacks 'js2-apply-jslint-globals nil t))
11554
11555 (run-hooks 'js2-init-hook)
11556
11557 (js2-reparse))
11558
11559 ;; We may eventually want js2-jsx-mode to derive from js-jsx-mode, but that'd be
11560 ;; a bit more complicated and it doesn't net us much yet.
11561 ;;;###autoload
11562 (define-derived-mode js2-jsx-mode js2-mode "JSX-IDE"
11563 "Major mode for editing JSX code.
11564
11565 To customize the indentation for this mode, set the SGML offset
11566 variables (`sgml-basic-offset' et al) locally, like so:
11567
11568 (defun set-jsx-indentation ()
11569 (setq-local sgml-basic-offset js2-basic-offset))
11570 (add-hook 'js2-jsx-mode-hook #'set-jsx-indentation)"
11571 (set (make-local-variable 'indent-line-function) #'js2-jsx-indent-line))
11572
11573 (defun js2-mode-exit ()
11574 "Exit `js2-mode' and clean up."
11575 (interactive)
11576 (when js2-mode-node-overlay
11577 (delete-overlay js2-mode-node-overlay)
11578 (setq js2-mode-node-overlay nil))
11579 (js2-remove-overlays)
11580 (setq js2-mode-ast nil)
11581 (remove-hook 'change-major-mode-hook #'js2-mode-exit t)
11582 (remove-from-invisibility-spec '(js2-outline . t))
11583 (js2-mode-show-all)
11584 (with-silent-modifications
11585 (js2-clear-face (point-min) (point-max))))
11586
11587 (defun js2-mode-reset-timer ()
11588 "Cancel any existing parse timer and schedule a new one."
11589 (if js2-mode-parse-timer
11590 (cancel-timer js2-mode-parse-timer))
11591 (setq js2-mode-parsing nil)
11592 (let ((timer (timer-create)))
11593 (setq js2-mode-parse-timer timer)
11594 (timer-set-function timer 'js2-mode-idle-reparse (list (current-buffer)))
11595 (timer-set-idle-time timer js2-idle-timer-delay)
11596 ;; http://debbugs.gnu.org/cgi/bugreport.cgi?bug=12326
11597 (timer-activate-when-idle timer nil)))
11598
11599 (defun js2-mode-idle-reparse (buffer)
11600 "Run `js2-reparse' if BUFFER is the current buffer, or schedule
11601 it to be reparsed when the buffer is selected."
11602 (cond ((eq buffer (current-buffer))
11603 (js2-reparse))
11604 ((buffer-live-p buffer)
11605 ;; reparse when the buffer is selected again
11606 (with-current-buffer buffer
11607 (add-hook 'window-configuration-change-hook
11608 #'js2-mode-idle-reparse-inner
11609 nil t)))))
11610
11611 (defun js2-mode-idle-reparse-inner ()
11612 (remove-hook 'window-configuration-change-hook
11613 #'js2-mode-idle-reparse-inner
11614 t)
11615 (js2-reparse))
11616
11617 (defun js2-mode-edit (_beg _end _len)
11618 "Schedule a new parse after buffer is edited.
11619 Buffer edit spans from BEG to END and is of length LEN."
11620 (setq js2-mode-buffer-dirty-p t)
11621 (js2-mode-hide-overlay)
11622 (js2-mode-reset-timer))
11623
11624 (defun js2-minor-mode-edit (_beg _end _len)
11625 "Callback for buffer edits in `js2-mode'.
11626 Schedules a new parse after buffer is edited.
11627 Buffer edit spans from BEG to END and is of length LEN."
11628 (setq js2-mode-buffer-dirty-p t)
11629 (js2-mode-hide-overlay)
11630 (js2-mode-reset-timer))
11631
11632 (defun js2-reparse (&optional force)
11633 "Re-parse current buffer after user finishes some data entry.
11634 If we get any user input while parsing, including cursor motion,
11635 we discard the parse and reschedule it. If FORCE is nil, then the
11636 buffer will only rebuild its `js2-mode-ast' if the buffer is dirty."
11637 (let (time
11638 interrupted-p
11639 (js2-compiler-strict-mode js2-mode-show-strict-warnings))
11640 (unless js2-mode-parsing
11641 (setq js2-mode-parsing t)
11642 (unwind-protect
11643 (when (or js2-mode-buffer-dirty-p force)
11644 (js2-remove-overlays)
11645 (setq js2-mode-buffer-dirty-p nil
11646 js2-mode-fontifications nil
11647 js2-mode-deferred-properties nil)
11648 (if js2-mode-verbose-parse-p
11649 (message "parsing..."))
11650 (setq time
11651 (js2-time
11652 (setq interrupted-p
11653 (catch 'interrupted
11654 (js2-parse)
11655 (with-silent-modifications
11656 ;; if parsing is interrupted, comments and regex
11657 ;; literals stay ignored by `parse-partial-sexp'
11658 (remove-text-properties (point-min) (point-max)
11659 '(syntax-table))
11660 (js2-mode-apply-deferred-properties)
11661 (js2-mode-remove-suppressed-warnings)
11662 (js2-mode-show-warnings)
11663 (js2-mode-show-errors)
11664 (if (>= js2-highlight-level 1)
11665 (js2-highlight-jsdoc js2-mode-ast)))
11666 nil))))
11667 (if interrupted-p
11668 (progn
11669 ;; unfinished parse => try again
11670 (setq js2-mode-buffer-dirty-p t)
11671 (js2-mode-reset-timer))
11672 (if js2-mode-verbose-parse-p
11673 (message "Parse time: %s" time))))
11674 (setq js2-mode-parsing nil)
11675 (unless interrupted-p
11676 (setq js2-mode-parse-timer nil))))))
11677
11678 (defun js2-mode-show-node (event)
11679 "Debugging aid: highlight selected AST node on mouse click."
11680 (interactive "e")
11681 (mouse-set-point event)
11682 (setq deactivate-mark t)
11683 (when js2-mode-show-overlay
11684 (let ((node (js2-node-at-point))
11685 beg end)
11686 (if (null node)
11687 (message "No node found at location %s" (point))
11688 (setq beg (js2-node-abs-pos node)
11689 end (+ beg (js2-node-len node)))
11690 (if js2-mode-node-overlay
11691 (move-overlay js2-mode-node-overlay beg end)
11692 (setq js2-mode-node-overlay (make-overlay beg end))
11693 (overlay-put js2-mode-node-overlay 'font-lock-face 'highlight))
11694 (with-silent-modifications
11695 (if (fboundp 'cursor-sensor-mode)
11696 (put-text-property beg end 'cursor-sensor-functions
11697 '(js2-mode-hide-overlay))
11698 (put-text-property beg end 'point-left #'js2-mode-hide-overlay)))
11699 (message "%s, parent: %s"
11700 (js2-node-short-name node)
11701 (if (js2-node-parent node)
11702 (js2-node-short-name (js2-node-parent node))
11703 "nil"))))))
11704
11705 (defun js2-mode-hide-overlay (&optional arg1 arg2 _arg3)
11706 "Remove the debugging overlay when point moves.
11707 ARG1, ARG2 and ARG3 have different values depending on whether this function
11708 was found on `point-left' or in `cursor-sensor-functions'."
11709 (when js2-mode-node-overlay
11710 (let ((beg (overlay-start js2-mode-node-overlay))
11711 (end (overlay-end js2-mode-node-overlay))
11712 (p2 (if (windowp arg1)
11713 ;; Called from cursor-sensor-functions.
11714 (window-point arg1)
11715 ;; Called from point-left.
11716 arg2)))
11717 ;; Sometimes we're called spuriously.
11718 (unless (and p2
11719 (>= p2 beg)
11720 (<= p2 end))
11721 (with-silent-modifications
11722 (remove-text-properties beg end
11723 '(point-left nil cursor-sensor-functions)))
11724 (delete-overlay js2-mode-node-overlay)
11725 (setq js2-mode-node-overlay nil)))))
11726
11727 (defun js2-mode-reset ()
11728 "Debugging helper: reset everything."
11729 (interactive)
11730 (js2-mode-exit)
11731 (js2-mode))
11732
11733 (defun js2-mode-show-warn-or-err (e face)
11734 "Highlight a warning or error E with FACE.
11735 E is a list of ((MSG-KEY MSG-ARG) BEG LEN OVERRIDE-FACE).
11736 The last element is optional. When present, use instead of FACE."
11737 (let* ((key (cl-first e))
11738 (beg (cl-second e))
11739 (end (+ beg (cl-third e)))
11740 ;; Don't inadvertently go out of bounds.
11741 (beg (max (point-min) (min beg (point-max))))
11742 (end (max (point-min) (min end (point-max))))
11743 (ovl (make-overlay beg end)))
11744 ;; FIXME: Why a mix of overlays and text-properties?
11745 (overlay-put ovl 'font-lock-face (or (cl-fourth e) face))
11746 (overlay-put ovl 'js2-error t)
11747 (put-text-property beg end 'help-echo (js2-get-msg key))
11748 (if (fboundp 'cursor-sensor-mode)
11749 (put-text-property beg end 'cursor-sensor-functions '(js2-echo-error))
11750 (put-text-property beg end 'point-entered #'js2-echo-error))))
11751
11752 (defun js2-remove-overlays ()
11753 "Remove overlays from buffer that have a `js2-error' property."
11754 (let ((beg (point-min))
11755 (end (point-max)))
11756 (save-excursion
11757 (dolist (o (overlays-in beg end))
11758 (when (overlay-get o 'js2-error)
11759 (delete-overlay o))))))
11760
11761 (defun js2-mode-apply-deferred-properties ()
11762 "Apply fontifications and other text properties recorded during parsing."
11763 (when (cl-plusp js2-highlight-level)
11764 ;; We defer clearing faces as long as possible to eliminate flashing.
11765 (js2-clear-face (point-min) (point-max))
11766 ;; Have to reverse the recorded fontifications list so that errors
11767 ;; and warnings overwrite the normal fontifications.
11768 (dolist (f (nreverse js2-mode-fontifications))
11769 (put-text-property (cl-first f) (cl-second f) 'font-lock-face (cl-third f)))
11770 (setq js2-mode-fontifications nil))
11771 (dolist (p js2-mode-deferred-properties)
11772 (apply #'put-text-property p))
11773 (setq js2-mode-deferred-properties nil))
11774
11775 (defun js2-mode-show-errors ()
11776 "Highlight syntax errors."
11777 (when js2-mode-show-parse-errors
11778 (dolist (e (js2-ast-root-errors js2-mode-ast))
11779 (js2-mode-show-warn-or-err e 'js2-error))))
11780
11781 (defun js2-mode-remove-suppressed-warnings ()
11782 "Take suppressed warnings out of the AST warnings list.
11783 This ensures that the counts and `next-error' are correct."
11784 (setf (js2-ast-root-warnings js2-mode-ast)
11785 (js2-delete-if
11786 (lambda (e)
11787 (let ((key (caar e)))
11788 (or
11789 (and (not js2-strict-trailing-comma-warning)
11790 (string-match "trailing\\.comma" key))
11791 (and (not js2-strict-cond-assign-warning)
11792 (string= key "msg.equal.as.assign"))
11793 (and js2-missing-semi-one-line-override
11794 (string= key "msg.missing.semi")
11795 (let* ((beg (cl-second e))
11796 (node (js2-node-at-point beg))
11797 (fn (js2-mode-find-parent-fn node))
11798 (body (and fn (js2-function-node-body fn)))
11799 (lc (and body (js2-node-abs-pos body)))
11800 (rc (and lc (+ lc (js2-node-len body)))))
11801 (and fn
11802 (or (null body)
11803 (save-excursion
11804 (goto-char beg)
11805 (and (js2-same-line lc)
11806 (js2-same-line rc))))))))))
11807 (js2-ast-root-warnings js2-mode-ast))))
11808
11809 (defun js2-mode-show-warnings ()
11810 "Highlight strict-mode warnings."
11811 (when js2-mode-show-strict-warnings
11812 (dolist (e (js2-ast-root-warnings js2-mode-ast))
11813 (js2-mode-show-warn-or-err e 'js2-warning))))
11814
11815 (defun js2-echo-error (arg1 arg2 &optional _arg3)
11816 "Called by point-motion hooks.
11817 ARG1, ARG2 and ARG3 have different values depending on whether this function
11818 was found on `point-entered' or in `cursor-sensor-functions'."
11819 (let* ((new-point (if (windowp arg1)
11820 ;; Called from cursor-sensor-functions.
11821 (window-point arg1)
11822 ;; Called from point-left.
11823 arg2))
11824 (msg (get-text-property new-point 'help-echo)))
11825 (when (and (stringp msg)
11826 (not (active-minibuffer-window))
11827 (not (current-message)))
11828 (message msg))))
11829
11830 (defun js2-line-break (&optional _soft)
11831 "Break line at point and indent, continuing comment if within one.
11832 If inside a string, and `js2-concat-multiline-strings' is not
11833 nil, turn it into concatenation."
11834 (interactive)
11835 (let ((parse-status (syntax-ppss)))
11836 (cond
11837 ;; Check if we're inside a string.
11838 ((nth 3 parse-status)
11839 (if js2-concat-multiline-strings
11840 (js2-mode-split-string parse-status)
11841 (insert "\n")))
11842 ;; Check if inside a block comment.
11843 ((nth 4 parse-status)
11844 (js2-mode-extend-comment (nth 8 parse-status)))
11845 (t
11846 (newline-and-indent)))))
11847
11848 (defun js2-mode-split-string (parse-status)
11849 "Turn a newline in mid-string into a string concatenation.
11850 PARSE-STATUS is as documented in `parse-partial-sexp'."
11851 (let* ((quote-char (nth 3 parse-status))
11852 (at-eol (eq js2-concat-multiline-strings 'eol)))
11853 (insert quote-char)
11854 (insert (if at-eol " +\n" "\n"))
11855 (unless at-eol
11856 (insert "+ "))
11857 (js2-indent-line)
11858 (insert quote-char)
11859 (when (eolp)
11860 (insert quote-char)
11861 (backward-char 1))))
11862
11863 (defun js2-mode-extend-comment (start-pos)
11864 "Indent the line and, when inside a comment block, add comment prefix."
11865 (let (star single col first-line needs-close)
11866 (save-excursion
11867 (back-to-indentation)
11868 (when (< (point) start-pos)
11869 (goto-char start-pos))
11870 (cond
11871 ((looking-at "\\*[^/]")
11872 (setq star t
11873 col (current-column)))
11874 ((looking-at "/\\*")
11875 (setq star t
11876 first-line t
11877 col (1+ (current-column))))
11878 ((looking-at "//")
11879 (setq single t
11880 col (current-column)))))
11881 ;; Heuristic for whether we need to close the comment:
11882 ;; if we've got a parse error here, assume it's an unterminated
11883 ;; comment.
11884 (setq needs-close
11885 (or
11886 (get-char-property (1- (point)) 'js2-error)
11887 ;; The heuristic above doesn't work well when we're
11888 ;; creating a comment and there's another one downstream,
11889 ;; as our parser thinks this one ends at the end of the
11890 ;; next one. (You can have a /* inside a js block comment.)
11891 ;; So just close it if the next non-ws char isn't a *.
11892 (and first-line
11893 (eolp)
11894 (save-excursion
11895 (skip-chars-forward " \t\r\n")
11896 (not (eq (char-after) ?*))))))
11897 (delete-horizontal-space)
11898 (insert "\n")
11899 (cond
11900 (star
11901 (indent-to col)
11902 (insert "* ")
11903 (if (and first-line needs-close)
11904 (save-excursion
11905 (insert "\n")
11906 (indent-to col)
11907 (insert "*/"))))
11908 (single
11909 (indent-to col)
11910 (insert "// ")))
11911 ;; Don't need to extend the comment after all.
11912 (js2-indent-line)))
11913
11914 (defun js2-beginning-of-line ()
11915 "Toggle point between bol and first non-whitespace char in line.
11916 Also moves past comment delimiters when inside comments."
11917 (interactive)
11918 (let (node)
11919 (cond
11920 ((bolp)
11921 (back-to-indentation))
11922 ((looking-at "//")
11923 (skip-chars-forward "/ \t"))
11924 ((and (eq (char-after) ?*)
11925 (setq node (js2-comment-at-point))
11926 (memq (js2-comment-node-format node) '(jsdoc block))
11927 (save-excursion
11928 (skip-chars-backward " \t")
11929 (bolp)))
11930 (skip-chars-forward "\* \t"))
11931 (t
11932 (goto-char (point-at-bol))))))
11933
11934 (defun js2-end-of-line ()
11935 "Toggle point between eol and last non-whitespace char in line."
11936 (interactive)
11937 (if (eolp)
11938 (skip-chars-backward " \t")
11939 (goto-char (point-at-eol))))
11940
11941 (defun js2-mode-wait-for-parse (callback)
11942 "Invoke CALLBACK when parsing is finished.
11943 If parsing is already finished, calls CALLBACK immediately."
11944 (if (not js2-mode-buffer-dirty-p)
11945 (funcall callback)
11946 (push callback js2-mode-pending-parse-callbacks)
11947 (add-hook 'js2-parse-finished-hook #'js2-mode-parse-finished)))
11948
11949 (defun js2-mode-parse-finished ()
11950 "Invoke callbacks in `js2-mode-pending-parse-callbacks'."
11951 ;; We can't let errors propagate up, since it prevents the
11952 ;; `js2-parse' method from completing normally and returning
11953 ;; the ast, which makes things mysteriously not work right.
11954 (unwind-protect
11955 (dolist (cb js2-mode-pending-parse-callbacks)
11956 (condition-case err
11957 (funcall cb)
11958 (error (message "%s" err))))
11959 (setq js2-mode-pending-parse-callbacks nil)))
11960
11961 (defun js2-mode-flag-region (from to flag)
11962 "Hide or show text from FROM to TO, according to FLAG.
11963 If FLAG is nil then text is shown, while if FLAG is t the text is hidden.
11964 Returns the created overlay if FLAG is non-nil."
11965 (remove-overlays from to 'invisible 'js2-outline)
11966 (when flag
11967 (let ((o (make-overlay from to)))
11968 (overlay-put o 'invisible 'js2-outline)
11969 (overlay-put o 'isearch-open-invisible
11970 'js2-isearch-open-invisible)
11971 o)))
11972
11973 ;; Function to be set as an outline-isearch-open-invisible' property
11974 ;; to the overlay that makes the outline invisible (see
11975 ;; `js2-mode-flag-region').
11976 (defun js2-isearch-open-invisible (_overlay)
11977 ;; We rely on the fact that isearch places point on the matched text.
11978 (js2-mode-show-element))
11979
11980 (defun js2-mode-invisible-overlay-bounds (&optional pos)
11981 "Return cons cell of bounds of folding overlay at POS.
11982 Returns nil if not found."
11983 (let ((overlays (overlays-at (or pos (point))))
11984 o)
11985 (while (and overlays
11986 (not o))
11987 (if (overlay-get (car overlays) 'invisible)
11988 (setq o (car overlays))
11989 (setq overlays (cdr overlays))))
11990 (if o
11991 (cons (overlay-start o) (overlay-end o)))))
11992
11993 (defun js2-mode-function-at-point (&optional pos)
11994 "Return the innermost function node enclosing current point.
11995 Returns nil if point is not in a function."
11996 (let ((node (js2-node-at-point pos)))
11997 (while (and node (not (js2-function-node-p node)))
11998 (setq node (js2-node-parent node)))
11999 (if (js2-function-node-p node)
12000 node)))
12001
12002 (defun js2-mode-toggle-element ()
12003 "Hide or show the foldable element at the point."
12004 (interactive)
12005 (let (comment fn pos)
12006 (save-excursion
12007 (cond
12008 ;; /* ... */ comment?
12009 ((js2-block-comment-p (setq comment (js2-comment-at-point)))
12010 (if (js2-mode-invisible-overlay-bounds
12011 (setq pos (+ 3 (js2-node-abs-pos comment))))
12012 (progn
12013 (goto-char pos)
12014 (js2-mode-show-element))
12015 (js2-mode-hide-element)))
12016 ;; //-comment?
12017 ((save-excursion
12018 (back-to-indentation)
12019 (looking-at js2-mode-//-comment-re))
12020 (js2-mode-toggle-//-comment))
12021 ;; function?
12022 ((setq fn (js2-mode-function-at-point))
12023 (setq pos (and (js2-function-node-body fn)
12024 (js2-node-abs-pos (js2-function-node-body fn))))
12025 (goto-char (1+ pos))
12026 (if (js2-mode-invisible-overlay-bounds)
12027 (js2-mode-show-element)
12028 (js2-mode-hide-element)))
12029 (t
12030 (message "Nothing at point to hide or show"))))))
12031
12032 (defun js2-mode-hide-element ()
12033 "Fold/hide contents of a block, showing ellipses.
12034 Show the hidden text with \\[js2-mode-show-element]."
12035 (interactive)
12036 (if js2-mode-buffer-dirty-p
12037 (js2-mode-wait-for-parse #'js2-mode-hide-element))
12038 (let (node body beg end)
12039 (cond
12040 ((js2-mode-invisible-overlay-bounds)
12041 (message "already hidden"))
12042 (t
12043 (setq node (js2-node-at-point))
12044 (cond
12045 ((js2-block-comment-p node)
12046 (js2-mode-hide-comment node))
12047 (t
12048 (while (and node (not (js2-function-node-p node)))
12049 (setq node (js2-node-parent node)))
12050 (if (and node
12051 (setq body (js2-function-node-body node)))
12052 (progn
12053 (setq beg (js2-node-abs-pos body)
12054 end (+ beg (js2-node-len body)))
12055 (js2-mode-flag-region (1+ beg) (1- end) 'hide))
12056 (message "No collapsable element found at point"))))))))
12057
12058 (defun js2-mode-show-element ()
12059 "Show the hidden element at current point."
12060 (interactive)
12061 (let ((bounds (js2-mode-invisible-overlay-bounds)))
12062 (if bounds
12063 (js2-mode-flag-region (car bounds) (cdr bounds) nil)
12064 (message "Nothing to un-hide"))))
12065
12066 (defun js2-mode-show-all ()
12067 "Show all of the text in the buffer."
12068 (interactive)
12069 (js2-mode-flag-region (point-min) (point-max) nil))
12070
12071 (defun js2-mode-toggle-hide-functions ()
12072 (interactive)
12073 (if js2-mode-functions-hidden
12074 (js2-mode-show-functions)
12075 (js2-mode-hide-functions)))
12076
12077 (defun js2-mode-hide-functions ()
12078 "Hides all non-nested function bodies in the buffer.
12079 Use \\[js2-mode-show-all] to reveal them, or \\[js2-mode-show-element]
12080 to open an individual entry."
12081 (interactive)
12082 (if js2-mode-buffer-dirty-p
12083 (js2-mode-wait-for-parse #'js2-mode-hide-functions))
12084 (if (null js2-mode-ast)
12085 (message "Oops - parsing failed")
12086 (setq js2-mode-functions-hidden t)
12087 (js2-visit-ast js2-mode-ast #'js2-mode-function-hider)))
12088
12089 (defun js2-mode-function-hider (n endp)
12090 (when (not endp)
12091 (let ((tt (js2-node-type n))
12092 body beg end)
12093 (cond
12094 ((and (= tt js2-FUNCTION)
12095 (setq body (js2-function-node-body n)))
12096 (setq beg (js2-node-abs-pos body)
12097 end (+ beg (js2-node-len body)))
12098 (js2-mode-flag-region (1+ beg) (1- end) 'hide)
12099 nil) ; don't process children of function
12100 (t
12101 t))))) ; keep processing other AST nodes
12102
12103 (defun js2-mode-show-functions ()
12104 "Un-hide any folded function bodies in the buffer."
12105 (interactive)
12106 (setq js2-mode-functions-hidden nil)
12107 (save-excursion
12108 (goto-char (point-min))
12109 (while (/= (goto-char (next-overlay-change (point)))
12110 (point-max))
12111 (dolist (o (overlays-at (point)))
12112 (when (and (overlay-get o 'invisible)
12113 (not (overlay-get o 'comment)))
12114 (js2-mode-flag-region (overlay-start o) (overlay-end o) nil))))))
12115
12116 (defun js2-mode-hide-comment (n)
12117 (let* ((head (if (eq (js2-comment-node-format n) 'jsdoc)
12118 3 ; /**
12119 2)) ; /*
12120 (beg (+ (js2-node-abs-pos n) head))
12121 (end (- (+ beg (js2-node-len n)) head 2))
12122 (o (js2-mode-flag-region beg end 'hide)))
12123 (overlay-put o 'comment t)))
12124
12125 (defun js2-mode-toggle-hide-comments ()
12126 "Folds all block comments in the buffer.
12127 Use \\[js2-mode-show-all] to reveal them, or \\[js2-mode-show-element]
12128 to open an individual entry."
12129 (interactive)
12130 (if js2-mode-comments-hidden
12131 (js2-mode-show-comments)
12132 (js2-mode-hide-comments)))
12133
12134 (defun js2-mode-hide-comments ()
12135 (interactive)
12136 (if js2-mode-buffer-dirty-p
12137 (js2-mode-wait-for-parse #'js2-mode-hide-comments))
12138 (if (null js2-mode-ast)
12139 (message "Oops - parsing failed")
12140 (setq js2-mode-comments-hidden t)
12141 (dolist (n (js2-ast-root-comments js2-mode-ast))
12142 (when (js2-block-comment-p n)
12143 (js2-mode-hide-comment n)))
12144 (js2-mode-hide-//-comments)))
12145
12146 (defun js2-mode-extend-//-comment (direction)
12147 "Find start or end of a block of similar //-comment lines.
12148 DIRECTION is -1 to look back, 1 to look forward.
12149 INDENT is the indentation level to match.
12150 Returns the end-of-line position of the furthest adjacent
12151 //-comment line with the same indentation as the current line.
12152 If there is no such matching line, returns current end of line."
12153 (let ((pos (point-at-eol))
12154 (indent (current-indentation)))
12155 (save-excursion
12156 (while (and (zerop (forward-line direction))
12157 (looking-at js2-mode-//-comment-re)
12158 (eq indent (length (match-string 1))))
12159 (setq pos (point-at-eol)))
12160 pos)))
12161
12162 (defun js2-mode-hide-//-comments ()
12163 "Fold adjacent 1-line comments, showing only snippet of first one."
12164 (let (beg end)
12165 (save-excursion
12166 (goto-char (point-min))
12167 (while (re-search-forward js2-mode-//-comment-re nil t)
12168 (setq beg (point)
12169 end (js2-mode-extend-//-comment 1))
12170 (unless (eq beg end)
12171 (overlay-put (js2-mode-flag-region beg end 'hide)
12172 'comment t))
12173 (goto-char end)
12174 (forward-char 1)))))
12175
12176 (defun js2-mode-toggle-//-comment ()
12177 "Fold or un-fold any multi-line //-comment at point.
12178 Caller should have determined that this line starts with a //-comment."
12179 (let* ((beg (point-at-eol))
12180 (end beg))
12181 (save-excursion
12182 (goto-char end)
12183 (if (js2-mode-invisible-overlay-bounds)
12184 (js2-mode-show-element)
12185 ;; else hide the comment
12186 (setq beg (js2-mode-extend-//-comment -1)
12187 end (js2-mode-extend-//-comment 1))
12188 (unless (eq beg end)
12189 (overlay-put (js2-mode-flag-region beg end 'hide)
12190 'comment t))))))
12191
12192 (defun js2-mode-show-comments ()
12193 "Un-hide any hidden comments, leaving other hidden elements alone."
12194 (interactive)
12195 (setq js2-mode-comments-hidden nil)
12196 (save-excursion
12197 (goto-char (point-min))
12198 (while (/= (goto-char (next-overlay-change (point)))
12199 (point-max))
12200 (dolist (o (overlays-at (point)))
12201 (when (overlay-get o 'comment)
12202 (js2-mode-flag-region (overlay-start o) (overlay-end o) nil))))))
12203
12204 (defun js2-mode-display-warnings-and-errors ()
12205 "Turn on display of warnings and errors."
12206 (interactive)
12207 (setq js2-mode-show-parse-errors t
12208 js2-mode-show-strict-warnings t)
12209 (js2-reparse 'force))
12210
12211 (defun js2-mode-hide-warnings-and-errors ()
12212 "Turn off display of warnings and errors."
12213 (interactive)
12214 (setq js2-mode-show-parse-errors nil
12215 js2-mode-show-strict-warnings nil)
12216 (js2-reparse 'force))
12217
12218 (defun js2-mode-toggle-warnings-and-errors ()
12219 "Toggle the display of warnings and errors.
12220 Some users don't like having warnings/errors reported while they type."
12221 (interactive)
12222 (setq js2-mode-show-parse-errors (not js2-mode-show-parse-errors)
12223 js2-mode-show-strict-warnings (not js2-mode-show-strict-warnings))
12224 (if (called-interactively-p 'any)
12225 (message "warnings and errors %s"
12226 (if js2-mode-show-parse-errors
12227 "enabled"
12228 "disabled")))
12229 (js2-reparse 'force))
12230
12231 (defun js2-mode-customize ()
12232 (interactive)
12233 (customize-group 'js2-mode))
12234
12235 (defun js2-mode-forward-sexp (&optional arg)
12236 "Move forward across one statement or balanced expression.
12237 With ARG, do it that many times. Negative arg -N means
12238 move backward across N balanced expressions."
12239 (interactive "p")
12240 (setq arg (or arg 1))
12241 (save-restriction
12242 (widen) ;; `blink-matching-open' calls `narrow-to-region'
12243 (js2-reparse)
12244 (let (forward-sexp-function
12245 node (start (point)) pos lp rp child)
12246 (cond
12247 ;; backward-sexp
12248 ;; could probably make this better for some cases:
12249 ;; - if in statement block (e.g. function body), go to parent
12250 ;; - infix exprs like (foo in bar) - maybe go to beginning
12251 ;; of infix expr if in the right-side expression?
12252 ((and arg (cl-minusp arg))
12253 (dotimes (_ (- arg))
12254 (js2-backward-sws)
12255 (forward-char -1) ; Enter the node we backed up to.
12256 (when (setq node (js2-node-at-point (point) t))
12257 (setq pos (js2-node-abs-pos node))
12258 (let ((parens (js2-mode-forward-sexp-parens node pos)))
12259 (setq lp (car parens)
12260 rp (cdr parens)))
12261 (when (and lp (> start lp))
12262 (if (and rp (<= start rp))
12263 ;; Between parens, check if there's a child node we can jump.
12264 (when (setq child (js2-node-closest-child node (point) lp t))
12265 (setq pos (js2-node-abs-pos child)))
12266 ;; Before both parens.
12267 (setq pos lp)))
12268 (let ((state (parse-partial-sexp start pos)))
12269 (goto-char (if (not (zerop (car state)))
12270 ;; Stumble at the unbalanced paren if < 0, or
12271 ;; jump a bit further if > 0.
12272 (scan-sexps start -1)
12273 pos))))
12274 (unless pos (goto-char (point-min)))))
12275 (t
12276 ;; forward-sexp
12277 (dotimes (_ arg)
12278 (js2-forward-sws)
12279 (when (setq node (js2-node-at-point (point) t))
12280 (setq pos (js2-node-abs-pos node))
12281 (let ((parens (js2-mode-forward-sexp-parens node pos)))
12282 (setq lp (car parens)
12283 rp (cdr parens)))
12284 (or
12285 (when (and rp (<= start rp))
12286 (if (> start lp)
12287 (when (setq child (js2-node-closest-child node (point) rp))
12288 (setq pos (js2-node-abs-end child)))
12289 (setq pos (1+ rp))))
12290 ;; No parens or child nodes, looks for the end of the current node.
12291 (cl-incf pos (js2-node-len
12292 (if (js2-expr-stmt-node-p (js2-node-parent node))
12293 ;; Stop after the semicolon.
12294 (js2-node-parent node)
12295 node))))
12296 (let ((state (save-excursion (parse-partial-sexp start pos))))
12297 (goto-char (if (not (zerop (car state)))
12298 (scan-sexps start 1)
12299 pos))))
12300 (unless pos (goto-char (point-max)))))))))
12301
12302 (defun js2-mode-forward-sexp-parens (node abs-pos)
12303 "Return a cons cell with positions of main parens in NODE."
12304 (cond
12305 ((or (js2-array-node-p node)
12306 (js2-object-node-p node)
12307 (js2-comp-node-p node)
12308 (memq (aref node 0) '(cl-struct-js2-block-node cl-struct-js2-scope)))
12309 (cons abs-pos (+ abs-pos (js2-node-len node) -1)))
12310 ((js2-paren-expr-node-p node)
12311 (let ((lp (js2-node-lp node))
12312 (rp (js2-node-rp node)))
12313 (cons (when lp (+ abs-pos lp))
12314 (when rp (+ abs-pos rp)))))))
12315
12316 (defun js2-node-closest-child (parent point limit &optional before)
12317 (let* ((parent-pos (js2-node-abs-pos parent))
12318 (rpoint (- point parent-pos))
12319 (rlimit (- limit parent-pos))
12320 (min (min rpoint rlimit))
12321 (max (max rpoint rlimit))
12322 found)
12323 (catch 'done
12324 (js2-visit-ast
12325 parent
12326 (lambda (node _end-p)
12327 (if (eq node parent)
12328 t
12329 (let ((pos (js2-node-pos node)) ;; Both relative values.
12330 (end (+ (js2-node-pos node) (js2-node-len node))))
12331 (when (and (>= pos min) (<= end max)
12332 (if before (< pos rpoint) (> end rpoint)))
12333 (setq found node))
12334 (when (> end rpoint)
12335 (throw 'done nil)))
12336 nil))))
12337 found))
12338
12339 (defun js2-errors ()
12340 "Return a list of errors found."
12341 (and js2-mode-ast
12342 (js2-ast-root-errors js2-mode-ast)))
12343
12344 (defun js2-warnings ()
12345 "Return a list of warnings found."
12346 (and js2-mode-ast
12347 (js2-ast-root-warnings js2-mode-ast)))
12348
12349 (defun js2-have-errors-p ()
12350 "Return non-nil if any parse errors or warnings were found."
12351 (or (js2-errors) (js2-warnings)))
12352
12353 (defun js2-errors-and-warnings ()
12354 "Return a copy of the concatenated errors and warnings lists.
12355 They are appended: first the errors, then the warnings.
12356 Entries are of the form (MSG BEG END)."
12357 (when js2-mode-ast
12358 (append (js2-ast-root-errors js2-mode-ast)
12359 (copy-sequence (js2-ast-root-warnings js2-mode-ast)))))
12360
12361 (defun js2-next-error (&optional arg reset)
12362 "Move to next parse error.
12363 Typically invoked via \\[next-error].
12364 ARG is the number of errors, forward or backward, to move.
12365 RESET means start over from the beginning."
12366 (interactive "p")
12367 (if (not (or (js2-errors) (js2-warnings)))
12368 (message "No errors")
12369 (when reset
12370 (goto-char (point-min)))
12371 (let* ((errs (js2-errors-and-warnings))
12372 (continue t)
12373 (start (point))
12374 (count (or arg 1))
12375 (backward (cl-minusp count))
12376 (sorter (if backward '> '<))
12377 (stopper (if backward '< '>))
12378 (count (abs count))
12379 all-errs err)
12380 ;; Sort by start position.
12381 (setq errs (sort errs (lambda (e1 e2)
12382 (funcall sorter (cl-second e1) (cl-second e2))))
12383 all-errs errs)
12384 ;; Find nth error with pos > start.
12385 (while (and errs continue)
12386 (when (funcall stopper (cl-cadar errs) start)
12387 (setq err (car errs))
12388 (if (zerop (cl-decf count))
12389 (setq continue nil)))
12390 (setq errs (cdr errs)))
12391 ;; Clear for `js2-echo-error'.
12392 (message nil)
12393 (if err
12394 (goto-char (cl-second err))
12395 ;; Wrap around to first error.
12396 (goto-char (cl-second (car all-errs)))
12397 ;; If we were already on it, echo msg again.
12398 (if (= (point) start)
12399 (js2-echo-error (point) (point)))))))
12400
12401 (defun js2-down-mouse-3 ()
12402 "Make right-click move the point to the click location.
12403 This makes right-click context menu operations a bit more intuitive.
12404 The point will not move if the region is active, however, to avoid
12405 destroying the region selection."
12406 (interactive)
12407 (when (and js2-move-point-on-right-click
12408 (not mark-active))
12409 (let ((e last-input-event))
12410 (ignore-errors
12411 (goto-char (cl-cadadr e))))))
12412
12413 (defun js2-mode-create-imenu-index ()
12414 "Return an alist for `imenu--index-alist'."
12415 ;; This is built up in `js2-parse-record-imenu' during parsing.
12416 (when js2-mode-ast
12417 ;; if we have an ast but no recorder, they're requesting a rescan
12418 (unless js2-imenu-recorder
12419 (js2-reparse 'force))
12420 (prog1
12421 (js2-build-imenu-index)
12422 (setq js2-imenu-recorder nil
12423 js2-imenu-function-map nil))))
12424
12425 (defun js2-mode-find-tag ()
12426 "Replacement for `find-tag-default'.
12427 `find-tag-default' returns a ridiculous answer inside comments."
12428 (let (beg end)
12429 (save-excursion
12430 (if (looking-at "\\_>")
12431 (setq beg (progn (forward-symbol -1) (point))
12432 end (progn (forward-symbol 1) (point)))
12433 (setq beg (progn (forward-symbol 1) (point))
12434 end (progn (forward-symbol -1) (point))))
12435 (replace-regexp-in-string
12436 "[\"']" ""
12437 (buffer-substring-no-properties beg end)))))
12438
12439 (defun js2-mode-forward-sibling ()
12440 "Move to the end of the sibling following point in parent.
12441 Returns non-nil if successful, or nil if there was no following sibling."
12442 (let* ((node (js2-node-at-point))
12443 (parent (js2-mode-find-enclosing-fn node))
12444 sib)
12445 (when (setq sib (js2-node-find-child-after (point) parent))
12446 (goto-char (+ (js2-node-abs-pos sib)
12447 (js2-node-len sib))))))
12448
12449 (defun js2-mode-backward-sibling ()
12450 "Move to the beginning of the sibling node preceding point in parent.
12451 Parent is defined as the enclosing script or function."
12452 (let* ((node (js2-node-at-point))
12453 (parent (js2-mode-find-enclosing-fn node))
12454 sib)
12455 (when (setq sib (js2-node-find-child-before (point) parent))
12456 (goto-char (js2-node-abs-pos sib)))))
12457
12458 (defun js2-beginning-of-defun (&optional arg)
12459 "Go to line on which current function starts, and return t on success.
12460 If we're not in a function or already at the beginning of one, go
12461 to beginning of previous script-level element.
12462 With ARG N, do that N times. If N is negative, move forward."
12463 (setq arg (or arg 1))
12464 (if (cl-plusp arg)
12465 (let ((parent (js2-node-parent-script-or-fn (js2-node-at-point))))
12466 (when (cond
12467 ((js2-function-node-p parent)
12468 (goto-char (js2-node-abs-pos parent)))
12469 (t
12470 (js2-mode-backward-sibling)))
12471 (if (> arg 1)
12472 (js2-beginning-of-defun (1- arg))
12473 t)))
12474 (when (js2-end-of-defun)
12475 (js2-beginning-of-defun (if (>= arg -1) 1 (1+ arg))))))
12476
12477 (defun js2-end-of-defun ()
12478 "Go to the char after the last position of the current function
12479 or script-level element."
12480 (let* ((node (js2-node-at-point))
12481 (parent (or (and (js2-function-node-p node) node)
12482 (js2-node-parent-script-or-fn node)))
12483 script)
12484 (unless (js2-function-node-p parent)
12485 ;; Use current script-level node, or, if none, the next one.
12486 (setq script (or parent node)
12487 parent (js2-node-find-child-before (point) script))
12488 (when (or (null parent)
12489 (>= (point) (+ (js2-node-abs-pos parent)
12490 (js2-node-len parent))))
12491 (setq parent (js2-node-find-child-after (point) script))))
12492 (when parent
12493 (goto-char (+ (js2-node-abs-pos parent)
12494 (js2-node-len parent))))))
12495
12496 (defun js2-mark-defun (&optional allow-extend)
12497 "Put mark at end of this function, point at beginning.
12498 The function marked is the one that contains point.
12499
12500 Interactively, if this command is repeated,
12501 or (in Transient Mark mode) if the mark is active,
12502 it marks the next defun after the ones already marked."
12503 (interactive "p")
12504 (let (extended)
12505 (when (and allow-extend
12506 (or (and (eq last-command this-command) (mark t))
12507 (and transient-mark-mode mark-active)))
12508 (let ((sib (save-excursion
12509 (goto-char (mark))
12510 (if (js2-mode-forward-sibling)
12511 (point)))))
12512 (if sib
12513 (progn
12514 (set-mark sib)
12515 (setq extended t))
12516 ;; no more siblings - try extending to enclosing node
12517 (goto-char (mark t)))))
12518 (when (not extended)
12519 (let ((node (js2-node-at-point (point) t)) ; skip comments
12520 ast fn stmt parent beg end)
12521 (when (js2-ast-root-p node)
12522 (setq ast node
12523 node (or (js2-node-find-child-after (point) node)
12524 (js2-node-find-child-before (point) node))))
12525 ;; only mark whole buffer if we can't find any children
12526 (if (null node)
12527 (setq node ast))
12528 (if (js2-function-node-p node)
12529 (setq parent node)
12530 (setq fn (js2-mode-find-enclosing-fn node)
12531 stmt (if (or (null fn)
12532 (js2-ast-root-p fn))
12533 (js2-mode-find-first-stmt node))
12534 parent (or stmt fn)))
12535 (setq beg (js2-node-abs-pos parent)
12536 end (+ beg (js2-node-len parent)))
12537 (push-mark beg)
12538 (goto-char end)
12539 (exchange-point-and-mark)))))
12540
12541 (defun js2-narrow-to-defun ()
12542 "Narrow to the function enclosing point."
12543 (interactive)
12544 (let* ((node (js2-node-at-point (point) t)) ; skip comments
12545 (fn (if (js2-script-node-p node)
12546 node
12547 (js2-mode-find-enclosing-fn node)))
12548 (beg (js2-node-abs-pos fn)))
12549 (unless (js2-ast-root-p fn)
12550 (narrow-to-region beg (+ beg (js2-node-len fn))))))
12551
12552 (defun js2-jump-to-definition (&optional arg)
12553 "Jump to the definition of an object's property, variable or function."
12554 (interactive "P")
12555 (ring-insert find-tag-marker-ring (point-marker))
12556 (let* ((node (js2-node-at-point))
12557 (parent (js2-node-parent node))
12558 (names (if (js2-prop-get-node-p parent)
12559 (reverse (let ((temp (js2-compute-nested-prop-get parent)))
12560 (cl-loop for n in temp
12561 with result = '()
12562 do (push n result)
12563 until (equal node n)
12564 finally return result)))))
12565 node-init)
12566 (unless (and (js2-name-node-p node)
12567 (not (js2-var-init-node-p parent))
12568 (not (js2-function-node-p parent)))
12569 (error "Node is not a supported jump node"))
12570 (push (or (and names (pop names))
12571 (unless (and (js2-object-prop-node-p parent)
12572 (eq node (js2-object-prop-node-left parent)))
12573 node)) names)
12574 (setq node-init (js2-search-scope node names))
12575
12576 ;; todo: display list of results in buffer
12577 ;; todo: group found references by buffer
12578 (unless node-init
12579 (switch-to-buffer
12580 (catch 'found
12581 (unless arg
12582 (mapc (lambda (b)
12583 (with-current-buffer b
12584 (when (derived-mode-p 'js2-mode)
12585 (setq node-init (js2-search-scope js2-mode-ast names))
12586 (if node-init
12587 (throw 'found b)))))
12588 (buffer-list)))
12589 nil)))
12590 (setq node-init (if (listp node-init) (car node-init) node-init))
12591 (unless node-init
12592 (pop-tag-mark)
12593 (error "No jump location found"))
12594 (goto-char (js2-node-abs-pos node-init))))
12595
12596 (defun js2-search-object (node name-node)
12597 "Check if object NODE contains element with NAME-NODE."
12598 (cl-assert (js2-object-node-p node))
12599 ;; Only support name-node and nodes for the time being
12600 (cl-loop for elem in (js2-object-node-elems node)
12601 for left = (js2-object-prop-node-left elem)
12602 if (or (and (js2-name-node-p left)
12603 (equal (js2-name-node-name name-node)
12604 (js2-name-node-name left)))
12605 (and (js2-string-node-p left)
12606 (string= (js2-name-node-name name-node)
12607 (js2-string-node-value left))))
12608 return elem))
12609
12610 (defun js2-search-object-for-prop (object prop-names)
12611 "Return node in OBJECT that matches PROP-NAMES or nil.
12612 PROP-NAMES is a list of values representing a path to a value in OBJECT.
12613 i.e. ('name' 'value') = {name : { value: 3}}"
12614 (let (node
12615 (temp-object object)
12616 (temp t) ;temporay node
12617 (names prop-names))
12618 (while (and temp names (js2-object-node-p temp-object))
12619 (setq temp (js2-search-object temp-object (pop names)))
12620 (and (setq node temp)
12621 (setq temp-object (js2-object-prop-node-right temp))))
12622 (unless names node)))
12623
12624 (defun js2-search-scope (node names)
12625 "Searches NODE scope for jump location matching NAMES.
12626 NAMES is a list of property values to search for. For functions
12627 and variables NAMES will contain one element."
12628 (let (node-init
12629 (val (js2-name-node-name (car names))))
12630 (setq node-init (js2-get-symbol-declaration node val))
12631
12632 (when (> (length names) 1)
12633
12634 ;; Check var declarations
12635 (when (and node-init (string= val (js2-name-node-name node-init)))
12636 (let ((parent (js2-node-parent node-init))
12637 (temp-names names))
12638 (pop temp-names) ;; First element is var name
12639 (setq node-init (when (js2-var-init-node-p parent)
12640 (js2-search-object-for-prop
12641 (js2-var-init-node-initializer parent)
12642 temp-names)))))
12643
12644 ;; Check all assign nodes
12645 (js2-visit-ast
12646 js2-mode-ast
12647 (lambda (node endp)
12648 (unless endp
12649 (if (js2-assign-node-p node)
12650 (let ((left (js2-assign-node-left node))
12651 (right (js2-assign-node-right node))
12652 (temp-names names))
12653 (when (js2-prop-get-node-p left)
12654 (let* ((prop-list (js2-compute-nested-prop-get left))
12655 (found (cl-loop for prop in prop-list
12656 until (not (string= (js2-name-node-name
12657 (pop temp-names))
12658 (js2-name-node-name prop)))
12659 if (not temp-names) return prop))
12660 (found-node (or found
12661 (when (js2-object-node-p right)
12662 (js2-search-object-for-prop right
12663 temp-names)))))
12664 (if found-node (push found-node node-init))))))
12665 t))))
12666 node-init))
12667
12668 (defun js2-get-symbol-declaration (node name)
12669 "Find scope for NAME from NODE."
12670 (let ((scope (js2-get-defining-scope
12671 (or (js2-node-get-enclosing-scope node)
12672 node) name)))
12673 (if scope (js2-symbol-ast-node (js2-scope-get-symbol scope name)))))
12674
12675 (provide 'js2-mode)
12676
12677 ;;; js2-mode.el ends here