]> code.delx.au - gnu-emacs-elpa/blob - js2-mode.el
Implement object literal rest/spread (...)
[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 (and default (not (js2-assign-node-p default)))
2555 (insert ";\n"))))
2556
2557 (cl-defstruct (js2-while-node
2558 (:include js2-loop-node)
2559 (:constructor nil)
2560 (:constructor make-js2-while-node (&key (type js2-WHILE)
2561 (pos (js2-current-token-beg))
2562 len body
2563 condition lp
2564 rp)))
2565 "AST node for while-loop."
2566 condition) ; while-condition
2567
2568 (put 'cl-struct-js2-while-node 'js2-visitor 'js2-visit-while-node)
2569 (put 'cl-struct-js2-while-node 'js2-printer 'js2-print-while-node)
2570
2571 (defun js2-visit-while-node (n v)
2572 (js2-visit-ast (js2-while-node-condition n) v)
2573 (js2-visit-ast (js2-while-node-body n) v))
2574
2575 (defun js2-print-while-node (n i)
2576 (let ((pad (js2-make-pad i)))
2577 (insert pad "while (")
2578 (js2-print-ast (js2-while-node-condition n) 0)
2579 (insert ") {\n")
2580 (js2-print-body (js2-while-node-body n) (1+ i))
2581 (insert pad "}\n")))
2582
2583 (cl-defstruct (js2-for-node
2584 (:include js2-loop-node)
2585 (:constructor nil)
2586 (:constructor make-js2-for-node (&key (type js2-FOR)
2587 (pos js2-ts-cursor)
2588 len body init
2589 condition
2590 update lp rp)))
2591 "AST node for a C-style for-loop."
2592 init ; initialization expression
2593 condition ; loop condition
2594 update) ; update clause
2595
2596 (put 'cl-struct-js2-for-node 'js2-visitor 'js2-visit-for-node)
2597 (put 'cl-struct-js2-for-node 'js2-printer 'js2-print-for-node)
2598
2599 (defun js2-visit-for-node (n v)
2600 (js2-visit-ast (js2-for-node-init n) v)
2601 (js2-visit-ast (js2-for-node-condition n) v)
2602 (js2-visit-ast (js2-for-node-update n) v)
2603 (js2-visit-ast (js2-for-node-body n) v))
2604
2605 (defun js2-print-for-node (n i)
2606 (let ((pad (js2-make-pad i)))
2607 (insert pad "for (")
2608 (js2-print-ast (js2-for-node-init n) 0)
2609 (insert "; ")
2610 (js2-print-ast (js2-for-node-condition n) 0)
2611 (insert "; ")
2612 (js2-print-ast (js2-for-node-update n) 0)
2613 (insert ") {\n")
2614 (js2-print-body (js2-for-node-body n) (1+ i))
2615 (insert pad "}\n")))
2616
2617 (cl-defstruct (js2-for-in-node
2618 (:include js2-loop-node)
2619 (:constructor nil)
2620 (:constructor make-js2-for-in-node (&key (type js2-FOR)
2621 (pos js2-ts-cursor)
2622 len body
2623 iterator
2624 object
2625 in-pos
2626 each-pos
2627 foreach-p forof-p
2628 lp rp)))
2629 "AST node for a for..in loop."
2630 iterator ; [var] foo in ...
2631 object ; object over which we're iterating
2632 in-pos ; buffer position of 'in' keyword
2633 each-pos ; buffer position of 'each' keyword, if foreach-p
2634 foreach-p ; t if it's a for-each loop
2635 forof-p) ; t if it's a for-of loop
2636
2637 (put 'cl-struct-js2-for-in-node 'js2-visitor 'js2-visit-for-in-node)
2638 (put 'cl-struct-js2-for-in-node 'js2-printer 'js2-print-for-in-node)
2639
2640 (defun js2-visit-for-in-node (n v)
2641 (js2-visit-ast (js2-for-in-node-iterator n) v)
2642 (js2-visit-ast (js2-for-in-node-object n) v)
2643 (js2-visit-ast (js2-for-in-node-body n) v))
2644
2645 (defun js2-print-for-in-node (n i)
2646 (let ((pad (js2-make-pad i))
2647 (foreach (js2-for-in-node-foreach-p n))
2648 (forof (js2-for-in-node-forof-p n)))
2649 (insert pad "for ")
2650 (if foreach
2651 (insert "each "))
2652 (insert "(")
2653 (js2-print-ast (js2-for-in-node-iterator n) 0)
2654 (insert (if forof " of " " in "))
2655 (js2-print-ast (js2-for-in-node-object n) 0)
2656 (insert ") {\n")
2657 (js2-print-body (js2-for-in-node-body n) (1+ i))
2658 (insert pad "}\n")))
2659
2660 (cl-defstruct (js2-return-node
2661 (:include js2-node)
2662 (:constructor nil)
2663 (:constructor make-js2-return-node (&key (type js2-RETURN)
2664 (pos js2-ts-cursor)
2665 len
2666 retval)))
2667 "AST node for a return statement."
2668 retval) ; expression to return, or 'undefined
2669
2670 (put 'cl-struct-js2-return-node 'js2-visitor 'js2-visit-return-node)
2671 (put 'cl-struct-js2-return-node 'js2-printer 'js2-print-return-node)
2672
2673 (defun js2-visit-return-node (n v)
2674 (js2-visit-ast (js2-return-node-retval n) v))
2675
2676 (defun js2-print-return-node (n i)
2677 (insert (js2-make-pad i) "return")
2678 (when (js2-return-node-retval n)
2679 (insert " ")
2680 (js2-print-ast (js2-return-node-retval n) 0))
2681 (insert ";\n"))
2682
2683 (cl-defstruct (js2-if-node
2684 (:include js2-node)
2685 (:constructor nil)
2686 (:constructor make-js2-if-node (&key (type js2-IF)
2687 (pos js2-ts-cursor)
2688 len condition
2689 then-part
2690 else-pos
2691 else-part lp
2692 rp)))
2693 "AST node for an if-statement."
2694 condition ; expression
2695 then-part ; statement or block
2696 else-pos ; optional buffer position of 'else' keyword
2697 else-part ; optional statement or block
2698 lp ; position of left-paren, nil if omitted
2699 rp) ; position of right-paren, nil if omitted
2700
2701 (put 'cl-struct-js2-if-node 'js2-visitor 'js2-visit-if-node)
2702 (put 'cl-struct-js2-if-node 'js2-printer 'js2-print-if-node)
2703
2704 (defun js2-visit-if-node (n v)
2705 (js2-visit-ast (js2-if-node-condition n) v)
2706 (js2-visit-ast (js2-if-node-then-part n) v)
2707 (js2-visit-ast (js2-if-node-else-part n) v))
2708
2709 (defun js2-print-if-node (n i)
2710 (let ((pad (js2-make-pad i))
2711 (then-part (js2-if-node-then-part n))
2712 (else-part (js2-if-node-else-part n)))
2713 (insert pad "if (")
2714 (js2-print-ast (js2-if-node-condition n) 0)
2715 (insert ") {\n")
2716 (js2-print-body then-part (1+ i))
2717 (insert pad "}")
2718 (cond
2719 ((not else-part)
2720 (insert "\n"))
2721 ((js2-if-node-p else-part)
2722 (insert " else ")
2723 (js2-print-body else-part i))
2724 (t
2725 (insert " else {\n")
2726 (js2-print-body else-part (1+ i))
2727 (insert pad "}\n")))))
2728
2729 (cl-defstruct (js2-export-binding-node
2730 (:include js2-node)
2731 (:constructor nil)
2732 (:constructor make-js2-export-binding-node (&key (type -1)
2733 pos
2734 len
2735 local-name
2736 extern-name)))
2737 "AST node for an external symbol binding.
2738 It contains a local-name node which is the name of the value in the
2739 current scope, and extern-name which is the name of the value in the
2740 imported or exported scope. By default these are the same, but if the
2741 name is aliased as in {foo as bar}, it would have an extern-name node
2742 containing 'foo' and a local-name node containing 'bar'."
2743 local-name ; js2-name-node with the variable name in this scope
2744 extern-name) ; js2-name-node with the value name in the exporting module
2745
2746 (put 'cl-struct-js2-export-binding-node 'js2-printer 'js2-print-extern-binding)
2747 (put 'cl-struct-js2-export-binding-node 'js2-visitor 'js2-visit-extern-binding)
2748
2749 (defun js2-visit-extern-binding (n v)
2750 "Visit an extern binding node. First visit the local-name, and, if
2751 different, visit the extern-name."
2752 (let ((local-name (js2-export-binding-node-local-name n))
2753 (extern-name (js2-export-binding-node-extern-name n)))
2754 (when local-name
2755 (js2-visit-ast local-name v))
2756 (when (not (equal local-name extern-name))
2757 (js2-visit-ast extern-name v))))
2758
2759 (defun js2-print-extern-binding (n _i)
2760 "Print a representation of a single extern binding. E.g. 'foo' or
2761 'foo as bar'."
2762 (let ((local-name (js2-export-binding-node-local-name n))
2763 (extern-name (js2-export-binding-node-extern-name n)))
2764 (insert (js2-name-node-name extern-name))
2765 (when (not (equal local-name extern-name))
2766 (insert " as ")
2767 (insert (js2-name-node-name local-name)))))
2768
2769
2770 (cl-defstruct (js2-import-node
2771 (:include js2-node)
2772 (:constructor nil)
2773 (:constructor make-js2-import-node (&key (type js2-IMPORT)
2774 (pos (js2-current-token-beg))
2775 len
2776 import
2777 from
2778 module-id)))
2779 "AST node for an import statement. It follows the form
2780
2781 import ModuleSpecifier;
2782 import ImportClause FromClause;"
2783 import ; js2-import-clause-node specifying which names are to imported.
2784 from ; js2-from-clause-node indicating the module from which to import.
2785 module-id) ; module-id of the import. E.g. 'src/mylib'.
2786
2787 (put 'cl-struct-js2-import-node 'js2-printer 'js2-print-import)
2788 (put 'cl-struct-js2-import-node 'js2-visitor 'js2-visit-import)
2789
2790 (defun js2-visit-import (n v)
2791 (let ((import-clause (js2-import-node-import n))
2792 (from-clause (js2-import-node-from n)))
2793 (when import-clause
2794 (js2-visit-ast import-clause v))
2795 (when from-clause
2796 (js2-visit-ast from-clause v))))
2797
2798 (defun js2-print-import (n i)
2799 "Prints a representation of the import node"
2800 (let ((pad (js2-make-pad i))
2801 (import-clause (js2-import-node-import n))
2802 (from-clause (js2-import-node-from n))
2803 (module-id (js2-import-node-module-id n)))
2804 (insert pad "import ")
2805 (if import-clause
2806 (progn
2807 (js2-print-import-clause import-clause)
2808 (insert " ")
2809 (js2-print-from-clause from-clause))
2810 (insert "'")
2811 (insert module-id)
2812 (insert "'"))
2813 (insert ";\n")))
2814
2815 (cl-defstruct (js2-import-clause-node
2816 (:include js2-node)
2817 (:constructor nil)
2818 (:constructor make-js2-import-clause-node (&key (type -1)
2819 pos
2820 len
2821 namespace-import
2822 named-imports
2823 default-binding)))
2824 "AST node corresponding to the import clause of an import statement. This is
2825 the portion of the import that bindings names from the external context to the
2826 local context."
2827 namespace-import ; js2-namespace-import-node. E.g. '* as lib'
2828 named-imports ; lisp list of js2-export-binding-node for all named imports.
2829 default-binding) ; js2-export-binding-node for the default import binding
2830
2831 (put 'cl-struct-js2-import-clause-node 'js2-visitor 'js2-visit-import-clause)
2832 (put 'cl-struct-js2-import-clause-node 'js2-printer 'js2-print-import-clause)
2833
2834 (defun js2-visit-import-clause (n v)
2835 (let ((ns-import (js2-import-clause-node-namespace-import n))
2836 (named-imports (js2-import-clause-node-named-imports n))
2837 (default (js2-import-clause-node-default-binding n)))
2838 (when ns-import
2839 (js2-visit-ast ns-import v))
2840 (when named-imports
2841 (dolist (import named-imports)
2842 (js2-visit-ast import v)))
2843 (when default
2844 (js2-visit-ast default v))))
2845
2846 (defun js2-print-import-clause (n)
2847 (let ((ns-import (js2-import-clause-node-namespace-import n))
2848 (named-imports (js2-import-clause-node-named-imports n))
2849 (default (js2-import-clause-node-default-binding n)))
2850 (cond
2851 ((and default ns-import)
2852 (js2-print-ast default)
2853 (insert ", ")
2854 (js2-print-namespace-import ns-import))
2855 ((and default named-imports)
2856 (js2-print-ast default)
2857 (insert ", ")
2858 (js2-print-named-imports named-imports))
2859 (default
2860 (js2-print-ast default))
2861 (ns-import
2862 (js2-print-namespace-import ns-import))
2863 (named-imports
2864 (js2-print-named-imports named-imports)))))
2865
2866 (defun js2-print-namespace-import (node)
2867 (insert "* as ")
2868 (insert (js2-name-node-name (js2-namespace-import-node-name node))))
2869
2870 (defun js2-print-named-imports (imports)
2871 (insert "{")
2872 (let ((len (length imports))
2873 (n 0))
2874 (while (< n len)
2875 (js2-print-extern-binding (nth n imports) 0)
2876 (unless (= n (- len 1))
2877 (insert ", "))
2878 (setq n (+ n 1))))
2879 (insert "}"))
2880
2881 (cl-defstruct (js2-namespace-import-node
2882 (:include js2-node)
2883 (:constructor nil)
2884 (:constructor make-js2-namespace-import-node (&key (type -1)
2885 pos
2886 len
2887 name)))
2888 "AST node for a complete namespace import.
2889 E.g. the '* as lib' expression in:
2890
2891 import * as lib from 'src/lib'
2892
2893 It contains a single name node referring to the bound name."
2894 name) ; js2-name-node of the bound name.
2895
2896 (defun js2-visit-namespace-import (n v)
2897 (js2-visit-ast (js2-namespace-import-node-name n) v))
2898
2899 (put 'cl-struct-js2-namespace-import-node 'js2-visitor 'js2-visit-namespace-import)
2900 (put 'cl-struct-js2-namespace-import-node 'js2-printer 'js2-print-namespace-import)
2901
2902 (cl-defstruct (js2-from-clause-node
2903 (:include js2-node)
2904 (:constructor nil)
2905 (:constructor make-js2-from-clause-node (&key (type js2-NAME)
2906 pos
2907 len
2908 module-id
2909 metadata-p)))
2910 "AST node for the from clause in an import or export statement.
2911 E.g. from 'my/module'. It can refere to either an external module, or to the
2912 modules metadata itself."
2913 module-id ; string containing the module specifier.
2914 metadata-p) ; true if this clause refers to the module's metadata
2915
2916 (put 'cl-struct-js2-from-clause-node 'js2-visitor 'js2-visit-none)
2917 (put 'cl-struct-js2-from-clause-node 'js2-printer 'js2-print-from-clause)
2918
2919 (defun js2-print-from-clause (n)
2920 (insert "from ")
2921 (if (js2-from-clause-node-metadata-p n)
2922 (insert "this module")
2923 (insert "'")
2924 (insert (js2-from-clause-node-module-id n))
2925 (insert "'")))
2926
2927 (cl-defstruct (js2-try-node
2928 (:include js2-node)
2929 (:constructor nil)
2930 (:constructor make-js2-try-node (&key (type js2-TRY)
2931 (pos js2-ts-cursor)
2932 len
2933 try-block
2934 catch-clauses
2935 finally-block)))
2936 "AST node for a try-statement."
2937 try-block
2938 catch-clauses ; a Lisp list of `js2-catch-node'
2939 finally-block) ; a `js2-finally-node'
2940
2941 (put 'cl-struct-js2-try-node 'js2-visitor 'js2-visit-try-node)
2942 (put 'cl-struct-js2-try-node 'js2-printer 'js2-print-try-node)
2943
2944 (defun js2-visit-try-node (n v)
2945 (js2-visit-ast (js2-try-node-try-block n) v)
2946 (dolist (clause (js2-try-node-catch-clauses n))
2947 (js2-visit-ast clause v))
2948 (js2-visit-ast (js2-try-node-finally-block n) v))
2949
2950 (defun js2-print-try-node (n i)
2951 (let ((pad (js2-make-pad i))
2952 (catches (js2-try-node-catch-clauses n))
2953 (finally (js2-try-node-finally-block n)))
2954 (insert pad "try {\n")
2955 (js2-print-body (js2-try-node-try-block n) (1+ i))
2956 (insert pad "}")
2957 (when catches
2958 (dolist (catch catches)
2959 (js2-print-ast catch i)))
2960 (if finally
2961 (js2-print-ast finally i)
2962 (insert "\n"))))
2963
2964 (cl-defstruct (js2-catch-node
2965 (:include js2-scope)
2966 (:constructor nil)
2967 (:constructor make-js2-catch-node (&key (type js2-CATCH)
2968 (pos js2-ts-cursor)
2969 len
2970 param
2971 guard-kwd
2972 guard-expr
2973 lp rp)))
2974 "AST node for a catch clause."
2975 param ; destructuring form or simple name node
2976 guard-kwd ; relative buffer position of "if" in "catch (x if ...)"
2977 guard-expr ; catch condition, a `js2-node'
2978 lp ; buffer position of left-paren, nil if omitted
2979 rp) ; buffer position of right-paren, nil if omitted
2980
2981 (put 'cl-struct-js2-catch-node 'js2-visitor 'js2-visit-catch-node)
2982 (put 'cl-struct-js2-catch-node 'js2-printer 'js2-print-catch-node)
2983
2984 (defun js2-visit-catch-node (n v)
2985 (js2-visit-ast (js2-catch-node-param n) v)
2986 (when (js2-catch-node-guard-kwd n)
2987 (js2-visit-ast (js2-catch-node-guard-expr n) v))
2988 (js2-visit-block n v))
2989
2990 (defun js2-print-catch-node (n i)
2991 (let ((pad (js2-make-pad i))
2992 (guard-kwd (js2-catch-node-guard-kwd n))
2993 (guard-expr (js2-catch-node-guard-expr n)))
2994 (insert " catch (")
2995 (js2-print-ast (js2-catch-node-param n) 0)
2996 (when guard-kwd
2997 (insert " if ")
2998 (js2-print-ast guard-expr 0))
2999 (insert ") {\n")
3000 (js2-print-body n (1+ i))
3001 (insert pad "}")))
3002
3003 (cl-defstruct (js2-finally-node
3004 (:include js2-node)
3005 (:constructor nil)
3006 (:constructor make-js2-finally-node (&key (type js2-FINALLY)
3007 (pos js2-ts-cursor)
3008 len body)))
3009 "AST node for a finally clause."
3010 body) ; a `js2-node', often but not always a block node
3011
3012 (put 'cl-struct-js2-finally-node 'js2-visitor 'js2-visit-finally-node)
3013 (put 'cl-struct-js2-finally-node 'js2-printer 'js2-print-finally-node)
3014
3015 (defun js2-visit-finally-node (n v)
3016 (js2-visit-ast (js2-finally-node-body n) v))
3017
3018 (defun js2-print-finally-node (n i)
3019 (let ((pad (js2-make-pad i)))
3020 (insert " finally {\n")
3021 (js2-print-body (js2-finally-node-body n) (1+ i))
3022 (insert pad "}\n")))
3023
3024 (cl-defstruct (js2-switch-node
3025 (:include js2-node)
3026 (:constructor nil)
3027 (:constructor make-js2-switch-node (&key (type js2-SWITCH)
3028 (pos js2-ts-cursor)
3029 len
3030 discriminant
3031 cases lp
3032 rp)))
3033 "AST node for a switch statement."
3034 discriminant ; a `js2-node' (switch expression)
3035 cases ; a Lisp list of `js2-case-node'
3036 lp ; position of open-paren for discriminant, nil if omitted
3037 rp) ; position of close-paren for discriminant, nil if omitted
3038
3039 (put 'cl-struct-js2-switch-node 'js2-visitor 'js2-visit-switch-node)
3040 (put 'cl-struct-js2-switch-node 'js2-printer 'js2-print-switch-node)
3041
3042 (defun js2-visit-switch-node (n v)
3043 (js2-visit-ast (js2-switch-node-discriminant n) v)
3044 (dolist (c (js2-switch-node-cases n))
3045 (js2-visit-ast c v)))
3046
3047 (defun js2-print-switch-node (n i)
3048 (let ((pad (js2-make-pad i))
3049 (cases (js2-switch-node-cases n)))
3050 (insert pad "switch (")
3051 (js2-print-ast (js2-switch-node-discriminant n) 0)
3052 (insert ") {\n")
3053 (dolist (case cases)
3054 (js2-print-ast case i))
3055 (insert pad "}\n")))
3056
3057 (cl-defstruct (js2-case-node
3058 (:include js2-block-node)
3059 (:constructor nil)
3060 (:constructor make-js2-case-node (&key (type js2-CASE)
3061 (pos js2-ts-cursor)
3062 len kids expr)))
3063 "AST node for a case clause of a switch statement."
3064 expr) ; the case expression (nil for default)
3065
3066 (put 'cl-struct-js2-case-node 'js2-visitor 'js2-visit-case-node)
3067 (put 'cl-struct-js2-case-node 'js2-printer 'js2-print-case-node)
3068
3069 (defun js2-visit-case-node (n v)
3070 (js2-visit-ast (js2-case-node-expr n) v)
3071 (js2-visit-block n v))
3072
3073 (defun js2-print-case-node (n i)
3074 (let ((pad (js2-make-pad i))
3075 (expr (js2-case-node-expr n)))
3076 (insert pad)
3077 (if (null expr)
3078 (insert "default:\n")
3079 (insert "case ")
3080 (js2-print-ast expr 0)
3081 (insert ":\n"))
3082 (dolist (kid (js2-case-node-kids n))
3083 (js2-print-ast kid (1+ i)))))
3084
3085 (cl-defstruct (js2-throw-node
3086 (:include js2-node)
3087 (:constructor nil)
3088 (:constructor make-js2-throw-node (&key (type js2-THROW)
3089 (pos js2-ts-cursor)
3090 len expr)))
3091 "AST node for a throw statement."
3092 expr) ; the expression to throw
3093
3094 (put 'cl-struct-js2-throw-node 'js2-visitor 'js2-visit-throw-node)
3095 (put 'cl-struct-js2-throw-node 'js2-printer 'js2-print-throw-node)
3096
3097 (defun js2-visit-throw-node (n v)
3098 (js2-visit-ast (js2-throw-node-expr n) v))
3099
3100 (defun js2-print-throw-node (n i)
3101 (insert (js2-make-pad i) "throw ")
3102 (js2-print-ast (js2-throw-node-expr n) 0)
3103 (insert ";\n"))
3104
3105 (cl-defstruct (js2-with-node
3106 (:include js2-node)
3107 (:constructor nil)
3108 (:constructor make-js2-with-node (&key (type js2-WITH)
3109 (pos js2-ts-cursor)
3110 len object
3111 body lp rp)))
3112 "AST node for a with-statement."
3113 object
3114 body
3115 lp ; buffer position of left-paren around object, nil if omitted
3116 rp) ; buffer position of right-paren around object, nil if omitted
3117
3118 (put 'cl-struct-js2-with-node 'js2-visitor 'js2-visit-with-node)
3119 (put 'cl-struct-js2-with-node 'js2-printer 'js2-print-with-node)
3120
3121 (defun js2-visit-with-node (n v)
3122 (js2-visit-ast (js2-with-node-object n) v)
3123 (js2-visit-ast (js2-with-node-body n) v))
3124
3125 (defun js2-print-with-node (n i)
3126 (let ((pad (js2-make-pad i)))
3127 (insert pad "with (")
3128 (js2-print-ast (js2-with-node-object n) 0)
3129 (insert ") {\n")
3130 (js2-print-body (js2-with-node-body n) (1+ i))
3131 (insert pad "}\n")))
3132
3133 (cl-defstruct (js2-label-node
3134 (:include js2-node)
3135 (:constructor nil)
3136 (:constructor make-js2-label-node (&key (type js2-LABEL)
3137 (pos js2-ts-cursor)
3138 len name)))
3139 "AST node for a statement label or case label."
3140 name ; a string
3141 loop) ; for validating and code-generating continue-to-label
3142
3143 (put 'cl-struct-js2-label-node 'js2-visitor 'js2-visit-none)
3144 (put 'cl-struct-js2-label-node 'js2-printer 'js2-print-label)
3145
3146 (defun js2-print-label (n i)
3147 (insert (js2-make-pad i)
3148 (js2-label-node-name n)
3149 ":\n"))
3150
3151 (cl-defstruct (js2-labeled-stmt-node
3152 (:include js2-node)
3153 (:constructor nil)
3154 ;; type needs to be in `js2-side-effecting-tokens' to avoid spurious
3155 ;; no-side-effects warnings, hence js2-EXPR_RESULT.
3156 (:constructor make-js2-labeled-stmt-node (&key (type js2-EXPR_RESULT)
3157 (pos js2-ts-cursor)
3158 len labels stmt)))
3159 "AST node for a statement with one or more labels.
3160 Multiple labels for a statement are collapsed into the labels field."
3161 labels ; Lisp list of `js2-label-node'
3162 stmt) ; the statement these labels are for
3163
3164 (put 'cl-struct-js2-labeled-stmt-node 'js2-visitor 'js2-visit-labeled-stmt)
3165 (put 'cl-struct-js2-labeled-stmt-node 'js2-printer 'js2-print-labeled-stmt)
3166
3167 (defun js2-get-label-by-name (lbl-stmt name)
3168 "Return a `js2-label-node' by NAME from LBL-STMT's labels list.
3169 Returns nil if no such label is in the list."
3170 (let ((label-list (js2-labeled-stmt-node-labels lbl-stmt))
3171 result)
3172 (while (and label-list (not result))
3173 (if (string= (js2-label-node-name (car label-list)) name)
3174 (setq result (car label-list))
3175 (setq label-list (cdr label-list))))
3176 result))
3177
3178 (defun js2-visit-labeled-stmt (n v)
3179 (dolist (label (js2-labeled-stmt-node-labels n))
3180 (js2-visit-ast label v))
3181 (js2-visit-ast (js2-labeled-stmt-node-stmt n) v))
3182
3183 (defun js2-print-labeled-stmt (n i)
3184 (dolist (label (js2-labeled-stmt-node-labels n))
3185 (js2-print-ast label i))
3186 (js2-print-ast (js2-labeled-stmt-node-stmt n) i))
3187
3188 (defun js2-labeled-stmt-node-contains (node label)
3189 "Return t if NODE contains LABEL in its label set.
3190 NODE is a `js2-labels-node'. LABEL is an identifier."
3191 (cl-loop for nl in (js2-labeled-stmt-node-labels node)
3192 if (string= label (js2-label-node-name nl))
3193 return t
3194 finally return nil))
3195
3196 (defsubst js2-labeled-stmt-node-add-label (node label)
3197 "Add a `js2-label-node' to the label set for this statement."
3198 (setf (js2-labeled-stmt-node-labels node)
3199 (nconc (js2-labeled-stmt-node-labels node) (list label))))
3200
3201 (cl-defstruct (js2-jump-node
3202 (:include js2-node)
3203 (:constructor nil))
3204 "Abstract supertype of break and continue nodes."
3205 label ; `js2-name-node' for location of label identifier, if present
3206 target) ; target js2-labels-node or loop/switch statement
3207
3208 (defun js2-visit-jump-node (n v)
3209 ;; We don't visit the target, since it's a back-link.
3210 (js2-visit-ast (js2-jump-node-label n) v))
3211
3212 (cl-defstruct (js2-break-node
3213 (:include js2-jump-node)
3214 (:constructor nil)
3215 (:constructor make-js2-break-node (&key (type js2-BREAK)
3216 (pos js2-ts-cursor)
3217 len label target)))
3218 "AST node for a break statement.
3219 The label field is a `js2-name-node', possibly nil, for the named label
3220 if provided. E.g. in 'break foo', it represents 'foo'. The target field
3221 is the target of the break - a label node or enclosing loop/switch statement.")
3222
3223 (put 'cl-struct-js2-break-node 'js2-visitor 'js2-visit-jump-node)
3224 (put 'cl-struct-js2-break-node 'js2-printer 'js2-print-break-node)
3225
3226 (defun js2-print-break-node (n i)
3227 (insert (js2-make-pad i) "break")
3228 (when (js2-break-node-label n)
3229 (insert " ")
3230 (js2-print-ast (js2-break-node-label n) 0))
3231 (insert ";\n"))
3232
3233 (cl-defstruct (js2-continue-node
3234 (:include js2-jump-node)
3235 (:constructor nil)
3236 (:constructor make-js2-continue-node (&key (type js2-CONTINUE)
3237 (pos js2-ts-cursor)
3238 len label target)))
3239 "AST node for a continue statement.
3240 The label field is the user-supplied enclosing label name, a `js2-name-node'.
3241 It is nil if continue specifies no label. The target field is the jump target:
3242 a `js2-label-node' or the innermost enclosing loop.")
3243
3244 (put 'cl-struct-js2-continue-node 'js2-visitor 'js2-visit-jump-node)
3245 (put 'cl-struct-js2-continue-node 'js2-printer 'js2-print-continue-node)
3246
3247 (defun js2-print-continue-node (n i)
3248 (insert (js2-make-pad i) "continue")
3249 (when (js2-continue-node-label n)
3250 (insert " ")
3251 (js2-print-ast (js2-continue-node-label n) 0))
3252 (insert ";\n"))
3253
3254 (cl-defstruct (js2-function-node
3255 (:include js2-script-node)
3256 (:constructor nil)
3257 (:constructor make-js2-function-node (&key (type js2-FUNCTION)
3258 (pos js2-ts-cursor)
3259 len
3260 (ftype 'FUNCTION)
3261 (form 'FUNCTION_STATEMENT)
3262 (name "")
3263 params rest-p
3264 body
3265 generator-type
3266 async
3267 lp rp)))
3268 "AST node for a function declaration.
3269 The `params' field is a Lisp list of nodes. Each node is either a simple
3270 `js2-name-node', or if it's a destructuring-assignment parameter, a
3271 `js2-array-node' or `js2-object-node'."
3272 ftype ; FUNCTION, GETTER or SETTER
3273 form ; FUNCTION_{STATEMENT|EXPRESSION|ARROW}
3274 name ; function name (a `js2-name-node', or nil if anonymous)
3275 params ; a Lisp list of destructuring forms or simple name nodes
3276 rest-p ; if t, the last parameter is rest parameter
3277 body ; a `js2-block-node' or expression node (1.8 only)
3278 lp ; position of arg-list open-paren, or nil if omitted
3279 rp ; position of arg-list close-paren, or nil if omitted
3280 ignore-dynamic ; ignore value of the dynamic-scope flag (interpreter only)
3281 needs-activation ; t if we need an activation object for this frame
3282 generator-type ; STAR, LEGACY, COMPREHENSION or nil
3283 async ; t if the function is defined as `async function`
3284 member-expr) ; nonstandard Ecma extension from Rhino
3285
3286 (put 'cl-struct-js2-function-node 'js2-visitor 'js2-visit-function-node)
3287 (put 'cl-struct-js2-function-node 'js2-printer 'js2-print-function-node)
3288
3289 (defun js2-visit-function-node (n v)
3290 (js2-visit-ast (js2-function-node-name n) v)
3291 (dolist (p (js2-function-node-params n))
3292 (js2-visit-ast p v))
3293 (js2-visit-ast (js2-function-node-body n) v))
3294
3295 (defun js2-print-function-node (n i)
3296 (let* ((pad (js2-make-pad i))
3297 (method (js2-node-get-prop n 'METHOD_TYPE))
3298 (name (or (js2-function-node-name n)
3299 (js2-function-node-member-expr n)))
3300 (params (js2-function-node-params n))
3301 (arrow (eq (js2-function-node-form n) 'FUNCTION_ARROW))
3302 (rest-p (js2-function-node-rest-p n))
3303 (body (js2-function-node-body n))
3304 (expr (not (eq (js2-function-node-form n) 'FUNCTION_STATEMENT))))
3305 (unless method
3306 (insert pad)
3307 (when (js2-function-node-async n) (insert "async "))
3308 (unless arrow (insert "function"))
3309 (when (eq (js2-function-node-generator-type n) 'STAR)
3310 (insert "*")))
3311 (when name
3312 (insert " ")
3313 (js2-print-ast name 0))
3314 (insert "(")
3315 (cl-loop with len = (length params)
3316 for param in params
3317 for count from 1
3318 do
3319 (when (and rest-p (= count len))
3320 (insert "..."))
3321 (js2-print-ast param 0)
3322 (when (< count len)
3323 (insert ", ")))
3324 (insert ") ")
3325 (when arrow
3326 (insert "=> "))
3327 (insert "{")
3328 ;; TODO: fix this to be smarter about indenting, etc.
3329 (unless expr
3330 (insert "\n"))
3331 (if (js2-block-node-p body)
3332 (js2-print-body body (1+ i))
3333 (js2-print-ast body 0))
3334 (insert pad "}")
3335 (unless expr
3336 (insert "\n"))))
3337
3338 (defun js2-function-name (node)
3339 "Return function name for NODE, a `js2-function-node', or nil if anonymous."
3340 (and (js2-function-node-name node)
3341 (js2-name-node-name (js2-function-node-name node))))
3342
3343 ;; Having this be an expression node makes it more flexible.
3344 ;; There are IDE contexts, such as indentation in a for-loop initializer,
3345 ;; that work better if you assume it's an expression. Whenever we have
3346 ;; a standalone var/const declaration, we just wrap with an expr stmt.
3347 ;; Eclipse apparently screwed this up and now has two versions, expr and stmt.
3348 (cl-defstruct (js2-var-decl-node
3349 (:include js2-node)
3350 (:constructor nil)
3351 (:constructor make-js2-var-decl-node (&key (type js2-VAR)
3352 (pos (js2-current-token-beg))
3353 len kids
3354 decl-type)))
3355 "AST node for a variable declaration list (VAR, CONST or LET).
3356 The node bounds differ depending on the declaration type. For VAR or
3357 CONST declarations, the bounds include the var/const keyword. For LET
3358 declarations, the node begins at the position of the first child."
3359 kids ; a Lisp list of `js2-var-init-node' structs.
3360 decl-type) ; js2-VAR, js2-CONST or js2-LET
3361
3362 (put 'cl-struct-js2-var-decl-node 'js2-visitor 'js2-visit-var-decl)
3363 (put 'cl-struct-js2-var-decl-node 'js2-printer 'js2-print-var-decl)
3364
3365 (defun js2-visit-var-decl (n v)
3366 (dolist (kid (js2-var-decl-node-kids n))
3367 (js2-visit-ast kid v)))
3368
3369 (defun js2-print-var-decl (n i)
3370 (let ((pad (js2-make-pad i))
3371 (tt (js2-var-decl-node-decl-type n)))
3372 (insert pad)
3373 (insert (cond
3374 ((= tt js2-VAR) "var ")
3375 ((= tt js2-LET) "let ")
3376 ((= tt js2-CONST) "const ")
3377 (t
3378 (error "malformed var-decl node"))))
3379 (cl-loop with kids = (js2-var-decl-node-kids n)
3380 with len = (length kids)
3381 for kid in kids
3382 for count from 1
3383 do
3384 (js2-print-ast kid 0)
3385 (if (< count len)
3386 (insert ", ")))))
3387
3388 (cl-defstruct (js2-var-init-node
3389 (:include js2-node)
3390 (:constructor nil)
3391 (:constructor make-js2-var-init-node (&key (type js2-VAR)
3392 (pos js2-ts-cursor)
3393 len target
3394 initializer)))
3395 "AST node for a variable declaration.
3396 The type field will be js2-CONST for a const decl."
3397 target ; `js2-name-node', `js2-object-node', or `js2-array-node'
3398 initializer) ; initializer expression, a `js2-node'
3399
3400 (put 'cl-struct-js2-var-init-node 'js2-visitor 'js2-visit-var-init-node)
3401 (put 'cl-struct-js2-var-init-node 'js2-printer 'js2-print-var-init-node)
3402
3403 (defun js2-visit-var-init-node (n v)
3404 (js2-visit-ast (js2-var-init-node-target n) v)
3405 (js2-visit-ast (js2-var-init-node-initializer n) v))
3406
3407 (defun js2-print-var-init-node (n i)
3408 (let ((pad (js2-make-pad i))
3409 (name (js2-var-init-node-target n))
3410 (init (js2-var-init-node-initializer n)))
3411 (insert pad)
3412 (js2-print-ast name 0)
3413 (when init
3414 (insert " = ")
3415 (js2-print-ast init 0))))
3416
3417 (cl-defstruct (js2-cond-node
3418 (:include js2-node)
3419 (:constructor nil)
3420 (:constructor make-js2-cond-node (&key (type js2-HOOK)
3421 (pos js2-ts-cursor)
3422 len
3423 test-expr
3424 true-expr
3425 false-expr
3426 q-pos c-pos)))
3427 "AST node for the ternary operator"
3428 test-expr
3429 true-expr
3430 false-expr
3431 q-pos ; buffer position of ?
3432 c-pos) ; buffer position of :
3433
3434 (put 'cl-struct-js2-cond-node 'js2-visitor 'js2-visit-cond-node)
3435 (put 'cl-struct-js2-cond-node 'js2-printer 'js2-print-cond-node)
3436
3437 (defun js2-visit-cond-node (n v)
3438 (js2-visit-ast (js2-cond-node-test-expr n) v)
3439 (js2-visit-ast (js2-cond-node-true-expr n) v)
3440 (js2-visit-ast (js2-cond-node-false-expr n) v))
3441
3442 (defun js2-print-cond-node (n i)
3443 (let ((pad (js2-make-pad i)))
3444 (insert pad)
3445 (js2-print-ast (js2-cond-node-test-expr n) 0)
3446 (insert " ? ")
3447 (js2-print-ast (js2-cond-node-true-expr n) 0)
3448 (insert " : ")
3449 (js2-print-ast (js2-cond-node-false-expr n) 0)))
3450
3451 (cl-defstruct (js2-infix-node
3452 (:include js2-node)
3453 (:constructor nil)
3454 (:constructor make-js2-infix-node (&key type
3455 (pos js2-ts-cursor)
3456 len op-pos
3457 left right)))
3458 "Represents infix expressions.
3459 Includes assignment ops like `|=', and the comma operator.
3460 The type field inherited from `js2-node' holds the operator."
3461 op-pos ; buffer position where operator begins
3462 left ; any `js2-node'
3463 right) ; any `js2-node'
3464
3465 (put 'cl-struct-js2-infix-node 'js2-visitor 'js2-visit-infix-node)
3466 (put 'cl-struct-js2-infix-node 'js2-printer 'js2-print-infix-node)
3467
3468 (defun js2-visit-infix-node (n v)
3469 (js2-visit-ast (js2-infix-node-left n) v)
3470 (js2-visit-ast (js2-infix-node-right n) v))
3471
3472 (defconst js2-operator-tokens
3473 (let ((table (make-hash-table :test 'eq))
3474 (tokens
3475 (list (cons js2-IN "in")
3476 (cons js2-TYPEOF "typeof")
3477 (cons js2-INSTANCEOF "instanceof")
3478 (cons js2-DELPROP "delete")
3479 (cons js2-AWAIT "await")
3480 (cons js2-COMMA ",")
3481 (cons js2-COLON ":")
3482 (cons js2-OR "||")
3483 (cons js2-AND "&&")
3484 (cons js2-INC "++")
3485 (cons js2-DEC "--")
3486 (cons js2-BITOR "|")
3487 (cons js2-BITXOR "^")
3488 (cons js2-BITAND "&")
3489 (cons js2-EQ "==")
3490 (cons js2-NE "!=")
3491 (cons js2-LT "<")
3492 (cons js2-LE "<=")
3493 (cons js2-GT ">")
3494 (cons js2-GE ">=")
3495 (cons js2-LSH "<<")
3496 (cons js2-RSH ">>")
3497 (cons js2-URSH ">>>")
3498 (cons js2-ADD "+") ; infix plus
3499 (cons js2-SUB "-") ; infix minus
3500 (cons js2-MUL "*")
3501 (cons js2-DIV "/")
3502 (cons js2-MOD "%")
3503 (cons js2-NOT "!")
3504 (cons js2-BITNOT "~")
3505 (cons js2-POS "+") ; unary plus
3506 (cons js2-NEG "-") ; unary minus
3507 (cons js2-TRIPLEDOT "...")
3508 (cons js2-SHEQ "===") ; shallow equality
3509 (cons js2-SHNE "!==") ; shallow inequality
3510 (cons js2-ASSIGN "=")
3511 (cons js2-ASSIGN_BITOR "|=")
3512 (cons js2-ASSIGN_BITXOR "^=")
3513 (cons js2-ASSIGN_BITAND "&=")
3514 (cons js2-ASSIGN_LSH "<<=")
3515 (cons js2-ASSIGN_RSH ">>=")
3516 (cons js2-ASSIGN_URSH ">>>=")
3517 (cons js2-ASSIGN_ADD "+=")
3518 (cons js2-ASSIGN_SUB "-=")
3519 (cons js2-ASSIGN_MUL "*=")
3520 (cons js2-ASSIGN_DIV "/=")
3521 (cons js2-ASSIGN_MOD "%="))))
3522 (cl-loop for (k . v) in tokens do
3523 (puthash k v table))
3524 table))
3525
3526 (defun js2-print-infix-node (n i)
3527 (let* ((tt (js2-node-type n))
3528 (op (gethash tt js2-operator-tokens)))
3529 (unless op
3530 (error "unrecognized infix operator %s" (js2-node-type n)))
3531 (insert (js2-make-pad i))
3532 (js2-print-ast (js2-infix-node-left n) 0)
3533 (unless (= tt js2-COMMA)
3534 (insert " "))
3535 (insert op)
3536 (insert " ")
3537 (js2-print-ast (js2-infix-node-right n) 0)))
3538
3539 (cl-defstruct (js2-assign-node
3540 (:include js2-infix-node)
3541 (:constructor nil)
3542 (:constructor make-js2-assign-node (&key type
3543 (pos js2-ts-cursor)
3544 len op-pos
3545 left right)))
3546 "Represents any assignment.
3547 The type field holds the actual assignment operator.")
3548
3549 (put 'cl-struct-js2-assign-node 'js2-visitor 'js2-visit-infix-node)
3550 (put 'cl-struct-js2-assign-node 'js2-printer 'js2-print-infix-node)
3551
3552 (cl-defstruct (js2-unary-node
3553 (:include js2-node)
3554 (:constructor nil)
3555 (:constructor make-js2-unary-node (&key type ; required
3556 (pos js2-ts-cursor)
3557 len operand)))
3558 "AST node type for unary operator nodes.
3559 The type field can be NOT, BITNOT, POS, NEG, INC, DEC,
3560 TYPEOF, DELPROP, TRIPLEDOT or AWAIT. For INC or DEC, a 'postfix node
3561 property is added if the operator follows the operand."
3562 operand) ; a `js2-node' expression
3563
3564 (put 'cl-struct-js2-unary-node 'js2-visitor 'js2-visit-unary-node)
3565 (put 'cl-struct-js2-unary-node 'js2-printer 'js2-print-unary-node)
3566
3567 (defun js2-visit-unary-node (n v)
3568 (js2-visit-ast (js2-unary-node-operand n) v))
3569
3570 (defun js2-print-unary-node (n i)
3571 (let* ((tt (js2-node-type n))
3572 (op (gethash tt js2-operator-tokens))
3573 (postfix (js2-node-get-prop n 'postfix)))
3574 (unless op
3575 (error "unrecognized unary operator %s" tt))
3576 (insert (js2-make-pad i))
3577 (unless postfix
3578 (insert op))
3579 (if (or (= tt js2-TYPEOF)
3580 (= tt js2-DELPROP)
3581 (= tt js2-AWAIT))
3582 (insert " "))
3583 (js2-print-ast (js2-unary-node-operand n) 0)
3584 (when postfix
3585 (insert op))))
3586
3587 (cl-defstruct (js2-let-node
3588 (:include js2-scope)
3589 (:constructor nil)
3590 (:constructor make-js2-let-node (&key (type js2-LETEXPR)
3591 (pos (js2-current-token-beg))
3592 len vars body
3593 lp rp)))
3594 "AST node for a let expression or a let statement.
3595 Note that a let declaration such as let x=6, y=7 is a `js2-var-decl-node'."
3596 vars ; a `js2-var-decl-node'
3597 body ; a `js2-node' representing the expression or body block
3598 lp
3599 rp)
3600
3601 (put 'cl-struct-js2-let-node 'js2-visitor 'js2-visit-let-node)
3602 (put 'cl-struct-js2-let-node 'js2-printer 'js2-print-let-node)
3603
3604 (defun js2-visit-let-node (n v)
3605 (js2-visit-ast (js2-let-node-vars n) v)
3606 (js2-visit-ast (js2-let-node-body n) v))
3607
3608 (defun js2-print-let-node (n i)
3609 (insert (js2-make-pad i) "let (")
3610 (let ((p (point)))
3611 (js2-print-ast (js2-let-node-vars n) 0)
3612 (delete-region p (+ p 4)))
3613 (insert ") ")
3614 (js2-print-ast (js2-let-node-body n) i))
3615
3616 (cl-defstruct (js2-keyword-node
3617 (:include js2-node)
3618 (:constructor nil)
3619 (:constructor make-js2-keyword-node (&key type
3620 (pos (js2-current-token-beg))
3621 (len (- js2-ts-cursor pos)))))
3622 "AST node representing a literal keyword such as `null'.
3623 Used for `null', `this', `true', `false' and `debugger'.
3624 The node type is set to js2-NULL, js2-THIS, etc.")
3625
3626 (put 'cl-struct-js2-keyword-node 'js2-visitor 'js2-visit-none)
3627 (put 'cl-struct-js2-keyword-node 'js2-printer 'js2-print-keyword-node)
3628
3629 (defun js2-print-keyword-node (n i)
3630 (insert (js2-make-pad i)
3631 (let ((tt (js2-node-type n)))
3632 (cond
3633 ((= tt js2-THIS) "this")
3634 ((= tt js2-SUPER) "super")
3635 ((= tt js2-NULL) "null")
3636 ((= tt js2-TRUE) "true")
3637 ((= tt js2-FALSE) "false")
3638 ((= tt js2-DEBUGGER) "debugger")
3639 (t (error "Invalid keyword literal type: %d" tt))))))
3640
3641 (defsubst js2-this-or-super-node-p (node)
3642 "Return t if NODE is a `js2-literal-node' of type js2-THIS or js2-SUPER."
3643 (let ((type (js2-node-type node)))
3644 (or (eq type js2-THIS) (eq type js2-SUPER))))
3645
3646 (cl-defstruct (js2-new-node
3647 (:include js2-node)
3648 (:constructor nil)
3649 (:constructor make-js2-new-node (&key (type js2-NEW)
3650 (pos (js2-current-token-beg))
3651 len target
3652 args initializer
3653 lp rp)))
3654 "AST node for new-expression such as new Foo()."
3655 target ; an identifier or reference
3656 args ; a Lisp list of argument nodes
3657 lp ; position of left-paren, nil if omitted
3658 rp ; position of right-paren, nil if omitted
3659 initializer) ; experimental Rhino syntax: optional `js2-object-node'
3660
3661 (put 'cl-struct-js2-new-node 'js2-visitor 'js2-visit-new-node)
3662 (put 'cl-struct-js2-new-node 'js2-printer 'js2-print-new-node)
3663
3664 (defun js2-visit-new-node (n v)
3665 (js2-visit-ast (js2-new-node-target n) v)
3666 (dolist (arg (js2-new-node-args n))
3667 (js2-visit-ast arg v))
3668 (js2-visit-ast (js2-new-node-initializer n) v))
3669
3670 (defun js2-print-new-node (n i)
3671 (insert (js2-make-pad i) "new ")
3672 (js2-print-ast (js2-new-node-target n))
3673 (insert "(")
3674 (js2-print-list (js2-new-node-args n))
3675 (insert ")")
3676 (when (js2-new-node-initializer n)
3677 (insert " ")
3678 (js2-print-ast (js2-new-node-initializer n))))
3679
3680 (cl-defstruct (js2-name-node
3681 (:include js2-node)
3682 (:constructor nil)
3683 (:constructor make-js2-name-node (&key (type js2-NAME)
3684 (pos (js2-current-token-beg))
3685 (len (- js2-ts-cursor
3686 (js2-current-token-beg)))
3687 (name (js2-current-token-string)))))
3688 "AST node for a JavaScript identifier"
3689 name ; a string
3690 scope) ; a `js2-scope' (optional, used for codegen)
3691
3692 (put 'cl-struct-js2-name-node 'js2-visitor 'js2-visit-none)
3693 (put 'cl-struct-js2-name-node 'js2-printer 'js2-print-name-node)
3694
3695 (defun js2-print-name-node (n i)
3696 (insert (js2-make-pad i)
3697 (js2-name-node-name n)))
3698
3699 (defsubst js2-name-node-length (node)
3700 "Return identifier length of NODE, a `js2-name-node'.
3701 Returns 0 if NODE is nil or its identifier field is nil."
3702 (if node
3703 (length (js2-name-node-name node))
3704 0))
3705
3706 (cl-defstruct (js2-number-node
3707 (:include js2-node)
3708 (:constructor nil)
3709 (:constructor make-js2-number-node (&key (type js2-NUMBER)
3710 (pos (js2-current-token-beg))
3711 (len (- js2-ts-cursor
3712 (js2-current-token-beg)))
3713 (value (js2-current-token-string))
3714 (num-value (js2-token-number
3715 (js2-current-token)))
3716 (num-base (js2-token-number-base
3717 (js2-current-token)))
3718 (legacy-octal-p (js2-token-number-legacy-octal-p
3719 (js2-current-token))))))
3720 "AST node for a number literal."
3721 value ; the original string, e.g. "6.02e23"
3722 num-value ; the parsed number value
3723 num-base ; the number's base
3724 legacy-octal-p) ; whether the number is a legacy octal (0123 instead of 0o123)
3725
3726 (put 'cl-struct-js2-number-node 'js2-visitor 'js2-visit-none)
3727 (put 'cl-struct-js2-number-node 'js2-printer 'js2-print-number-node)
3728
3729 (defun js2-print-number-node (n i)
3730 (insert (js2-make-pad i)
3731 (number-to-string (js2-number-node-num-value n))))
3732
3733 (cl-defstruct (js2-regexp-node
3734 (:include js2-node)
3735 (:constructor nil)
3736 (:constructor make-js2-regexp-node (&key (type js2-REGEXP)
3737 (pos (js2-current-token-beg))
3738 (len (- js2-ts-cursor
3739 (js2-current-token-beg)))
3740 value flags)))
3741 "AST node for a regular expression literal."
3742 value ; the regexp string, without // delimiters
3743 flags) ; a string of flags, e.g. `mi'.
3744
3745 (put 'cl-struct-js2-regexp-node 'js2-visitor 'js2-visit-none)
3746 (put 'cl-struct-js2-regexp-node 'js2-printer 'js2-print-regexp)
3747
3748 (defun js2-print-regexp (n i)
3749 (insert (js2-make-pad i)
3750 "/"
3751 (js2-regexp-node-value n)
3752 "/")
3753 (if (js2-regexp-node-flags n)
3754 (insert (js2-regexp-node-flags n))))
3755
3756 (cl-defstruct (js2-string-node
3757 (:include js2-node)
3758 (:constructor nil)
3759 (:constructor make-js2-string-node (&key (type js2-STRING)
3760 (pos (js2-current-token-beg))
3761 (len (- js2-ts-cursor
3762 (js2-current-token-beg)))
3763 (value (js2-current-token-string)))))
3764 "String literal.
3765 Escape characters are not evaluated; e.g. \n is 2 chars in value field.
3766 You can tell the quote type by looking at the first character."
3767 value) ; the characters of the string, including the quotes
3768
3769 (put 'cl-struct-js2-string-node 'js2-visitor 'js2-visit-none)
3770 (put 'cl-struct-js2-string-node 'js2-printer 'js2-print-string-node)
3771
3772 (defun js2-print-string-node (n i)
3773 (insert (js2-make-pad i)
3774 (js2-node-string n)))
3775
3776 (cl-defstruct (js2-template-node
3777 (:include js2-node)
3778 (:constructor nil)
3779 (:constructor make-js2-template-node (&key (type js2-TEMPLATE_HEAD)
3780 beg len kids)))
3781 "Template literal."
3782 kids) ; `js2-string-node' is used for string segments, other nodes
3783 ; for substitutions inside.
3784
3785 (put 'cl-struct-js2-template-node 'js2-visitor 'js2-visit-template)
3786 (put 'cl-struct-js2-template-node 'js2-printer 'js2-print-template)
3787
3788 (defun js2-visit-template (n callback)
3789 (dolist (kid (js2-template-node-kids n))
3790 (js2-visit-ast kid callback)))
3791
3792 (defun js2-print-template (n i)
3793 (insert (js2-make-pad i))
3794 (dolist (kid (js2-template-node-kids n))
3795 (if (js2-string-node-p kid)
3796 (insert (js2-node-string kid))
3797 (js2-print-ast kid))))
3798
3799 (cl-defstruct (js2-tagged-template-node
3800 (:include js2-node)
3801 (:constructor nil)
3802 (:constructor make-js2-tagged-template-node (&key (type js2-TAGGED_TEMPLATE)
3803 beg len tag template)))
3804 "Tagged template literal."
3805 tag ; `js2-node' with the tag expression.
3806 template) ; `js2-template-node' with the template.
3807
3808 (put 'cl-struct-js2-tagged-template-node 'js2-visitor 'js2-visit-tagged-template)
3809 (put 'cl-struct-js2-tagged-template-node 'js2-printer 'js2-print-tagged-template)
3810
3811 (defun js2-visit-tagged-template (n callback)
3812 (js2-visit-ast (js2-tagged-template-node-tag n) callback)
3813 (js2-visit-ast (js2-tagged-template-node-template n) callback))
3814
3815 (defun js2-print-tagged-template (n i)
3816 (insert (js2-make-pad i))
3817 (js2-print-ast (js2-tagged-template-node-tag n))
3818 (js2-print-ast (js2-tagged-template-node-template n)))
3819
3820 (cl-defstruct (js2-array-node
3821 (:include js2-node)
3822 (:constructor nil)
3823 (:constructor make-js2-array-node (&key (type js2-ARRAYLIT)
3824 (pos js2-ts-cursor)
3825 len elems)))
3826 "AST node for an array literal."
3827 elems) ; list of expressions. [foo,,bar] yields a nil middle element.
3828
3829 (put 'cl-struct-js2-array-node 'js2-visitor 'js2-visit-array-node)
3830 (put 'cl-struct-js2-array-node 'js2-printer 'js2-print-array-node)
3831
3832 (defun js2-visit-array-node (n v)
3833 (dolist (e (js2-array-node-elems n))
3834 (js2-visit-ast e v))) ; Can be nil; e.g. [a, ,b].
3835
3836 (defun js2-print-array-node (n i)
3837 (insert (js2-make-pad i) "[")
3838 (let ((elems (js2-array-node-elems n)))
3839 (js2-print-list elems)
3840 (when (and elems (null (car (last elems))))
3841 (insert ",")))
3842 (insert "]"))
3843
3844 (cl-defstruct (js2-class-node
3845 (:include js2-node)
3846 (:constructor nil)
3847 (:constructor make-js2-class-node (&key (type js2-CLASS)
3848 (pos js2-ts-cursor)
3849 (form 'CLASS_STATEMENT)
3850 (name "")
3851 extends len elems)))
3852 "AST node for an class expression.
3853 `elems' is a list of `js2-object-prop-node', and `extends' is an
3854 optional `js2-expr-node'"
3855 form ; CLASS_{STATEMENT|EXPRESSION}
3856 name ; class name (a `js2-node-name', or nil if anonymous)
3857 extends ; class heritage (a `js2-expr-node', or nil if none)
3858 elems)
3859
3860 (put 'cl-struct-js2-class-node 'js2-visitor 'js2-visit-class-node)
3861 (put 'cl-struct-js2-class-node 'js2-printer 'js2-print-class-node)
3862
3863 (defun js2-visit-class-node (n v)
3864 (js2-visit-ast (js2-class-node-name n) v)
3865 (js2-visit-ast (js2-class-node-extends n) v)
3866 (dolist (e (js2-class-node-elems n))
3867 (js2-visit-ast e v)))
3868
3869 (defun js2-print-class-node (n i)
3870 (let* ((pad (js2-make-pad i))
3871 (name (js2-class-node-name n))
3872 (extends (js2-class-node-extends n))
3873 (elems (js2-class-node-elems n)))
3874 (insert pad "class")
3875 (when name
3876 (insert " ")
3877 (js2-print-ast name 0))
3878 (when extends
3879 (insert " extends ")
3880 (js2-print-ast extends))
3881 (insert " {")
3882 (dolist (elem elems)
3883 (insert "\n")
3884 (if (js2-node-get-prop elem 'STATIC)
3885 (progn (insert (js2-make-pad (1+ i)) "static ")
3886 (js2-print-ast elem 0)) ;; TODO(sdh): indentation isn't quite right
3887 (js2-print-ast elem (1+ i))))
3888 (insert "\n" pad "}")))
3889
3890 (cl-defstruct (js2-object-node
3891 (:include js2-node)
3892 (:constructor nil)
3893 (:constructor make-js2-object-node (&key (type js2-OBJECTLIT)
3894 (pos js2-ts-cursor)
3895 len
3896 elems)))
3897 "AST node for an object literal expression.
3898 `elems' is a list of `js2-object-prop-node'."
3899 elems)
3900
3901 (put 'cl-struct-js2-object-node 'js2-visitor 'js2-visit-object-node)
3902 (put 'cl-struct-js2-object-node 'js2-printer 'js2-print-object-node)
3903
3904 (defun js2-visit-object-node (n v)
3905 (dolist (e (js2-object-node-elems n))
3906 (js2-visit-ast e v)))
3907
3908 (defun js2-print-object-node (n i)
3909 (insert (js2-make-pad i) "{")
3910 (js2-print-list (js2-object-node-elems n))
3911 (insert "}"))
3912
3913 (cl-defstruct (js2-computed-prop-name-node
3914 (:include js2-node)
3915 (:constructor nil)
3916 (:constructor make-js2-computed-prop-name-node
3917 (&key
3918 (type js2-LB)
3919 expr
3920 (pos (js2-current-token-beg))
3921 (len (- js2-ts-cursor
3922 (js2-current-token-beg))))))
3923 "AST node for a `ComputedPropertyName'."
3924 expr)
3925
3926 (put 'cl-struct-js2-computed-prop-name-node 'js2-visitor 'js2-visit-computed-prop-name-node)
3927 (put 'cl-struct-js2-computed-prop-name-node 'js2-printer 'js2-print-computed-prop-name-node)
3928
3929 (defun js2-visit-computed-prop-name-node (n v)
3930 (js2-visit-ast (js2-computed-prop-name-node-expr n) v))
3931
3932 (defun js2-print-computed-prop-name-node (n i)
3933 (insert (js2-make-pad i) "[")
3934 (js2-print-ast (js2-computed-prop-name-node-expr n) 0)
3935 (insert "]"))
3936
3937 (cl-defstruct (js2-object-prop-node
3938 (:include js2-infix-node)
3939 (:constructor nil)
3940 (:constructor make-js2-object-prop-node (&key (type js2-COLON)
3941 (pos js2-ts-cursor)
3942 len left
3943 right op-pos)))
3944 "AST node for an object literal prop:value entry.
3945 The `left' field is the property: a name node, string node,
3946 number node or expression node. The `right' field is a
3947 `js2-node' representing the initializer value. If the property
3948 is abbreviated, the node's `SHORTHAND' property is non-nil and
3949 both fields have the same value.")
3950
3951 (put 'cl-struct-js2-object-prop-node 'js2-visitor 'js2-visit-infix-node)
3952 (put 'cl-struct-js2-object-prop-node 'js2-printer 'js2-print-object-prop-node)
3953
3954 (defun js2-print-object-prop-node (n i)
3955 (let* ((left (js2-object-prop-node-left n))
3956 (right (js2-object-prop-node-right n)))
3957 (js2-print-ast left i)
3958 (if (not (js2-node-get-prop n 'SHORTHAND))
3959 (progn
3960 (insert ": ")
3961 (js2-print-ast right 0)))))
3962
3963 (cl-defstruct (js2-method-node
3964 (:include js2-infix-node)
3965 (:constructor nil)
3966 (:constructor make-js2-method-node (&key (pos js2-ts-cursor)
3967 len left right)))
3968 "AST node for a method in an object literal or a class body.
3969 The `left' field is the `js2-name-node' naming the method.
3970 The `right' field is always an anonymous `js2-function-node' with a node
3971 property `METHOD_TYPE' set to 'GET or 'SET. ")
3972
3973 (put 'cl-struct-js2-method-node 'js2-visitor 'js2-visit-infix-node)
3974 (put 'cl-struct-js2-method-node 'js2-printer 'js2-print-method)
3975
3976 (defun js2-print-method (n i)
3977 (let* ((pad (js2-make-pad i))
3978 (left (js2-method-node-left n))
3979 (right (js2-method-node-right n))
3980 (type (js2-node-get-prop right 'METHOD_TYPE)))
3981 (insert pad)
3982 (when type
3983 (insert (cdr (assoc type '((GET . "get ")
3984 (SET . "set ")
3985 (ASYNC . "async ")
3986 (FUNCTION . ""))))))
3987 (when (and (js2-function-node-p right)
3988 (eq 'STAR (js2-function-node-generator-type right)))
3989 (insert "*"))
3990 (js2-print-ast left 0)
3991 (js2-print-ast right 0)))
3992
3993 (cl-defstruct (js2-prop-get-node
3994 (:include js2-infix-node)
3995 (:constructor nil)
3996 (:constructor make-js2-prop-get-node (&key (type js2-GETPROP)
3997 (pos js2-ts-cursor)
3998 len left right)))
3999 "AST node for a dotted property reference, e.g. foo.bar or foo().bar")
4000
4001 (put 'cl-struct-js2-prop-get-node 'js2-visitor 'js2-visit-prop-get-node)
4002 (put 'cl-struct-js2-prop-get-node 'js2-printer 'js2-print-prop-get-node)
4003
4004 (defun js2-visit-prop-get-node (n v)
4005 (js2-visit-ast (js2-prop-get-node-left n) v)
4006 (js2-visit-ast (js2-prop-get-node-right n) v))
4007
4008 (defun js2-print-prop-get-node (n i)
4009 (insert (js2-make-pad i))
4010 (js2-print-ast (js2-prop-get-node-left n) 0)
4011 (insert ".")
4012 (js2-print-ast (js2-prop-get-node-right n) 0))
4013
4014 (cl-defstruct (js2-elem-get-node
4015 (:include js2-node)
4016 (:constructor nil)
4017 (:constructor make-js2-elem-get-node (&key (type js2-GETELEM)
4018 (pos js2-ts-cursor)
4019 len target element
4020 lb rb)))
4021 "AST node for an array index expression such as foo[bar]."
4022 target ; a `js2-node' - the expression preceding the "."
4023 element ; a `js2-node' - the expression in brackets
4024 lb ; position of left-bracket, nil if omitted
4025 rb) ; position of right-bracket, nil if omitted
4026
4027 (put 'cl-struct-js2-elem-get-node 'js2-visitor 'js2-visit-elem-get-node)
4028 (put 'cl-struct-js2-elem-get-node 'js2-printer 'js2-print-elem-get-node)
4029
4030 (defun js2-visit-elem-get-node (n v)
4031 (js2-visit-ast (js2-elem-get-node-target n) v)
4032 (js2-visit-ast (js2-elem-get-node-element n) v))
4033
4034 (defun js2-print-elem-get-node (n i)
4035 (insert (js2-make-pad i))
4036 (js2-print-ast (js2-elem-get-node-target n) 0)
4037 (insert "[")
4038 (js2-print-ast (js2-elem-get-node-element n) 0)
4039 (insert "]"))
4040
4041 (cl-defstruct (js2-call-node
4042 (:include js2-node)
4043 (:constructor nil)
4044 (:constructor make-js2-call-node (&key (type js2-CALL)
4045 (pos js2-ts-cursor)
4046 len target args
4047 lp rp)))
4048 "AST node for a JavaScript function call."
4049 target ; a `js2-node' evaluating to the function to call
4050 args ; a Lisp list of `js2-node' arguments
4051 lp ; position of open-paren, or nil if missing
4052 rp) ; position of close-paren, or nil if missing
4053
4054 (put 'cl-struct-js2-call-node 'js2-visitor 'js2-visit-call-node)
4055 (put 'cl-struct-js2-call-node 'js2-printer 'js2-print-call-node)
4056
4057 (defun js2-visit-call-node (n v)
4058 (js2-visit-ast (js2-call-node-target n) v)
4059 (dolist (arg (js2-call-node-args n))
4060 (js2-visit-ast arg v)))
4061
4062 (defun js2-print-call-node (n i)
4063 (insert (js2-make-pad i))
4064 (js2-print-ast (js2-call-node-target n) 0)
4065 (insert "(")
4066 (js2-print-list (js2-call-node-args n))
4067 (insert ")"))
4068
4069 (cl-defstruct (js2-yield-node
4070 (:include js2-node)
4071 (:constructor nil)
4072 (:constructor make-js2-yield-node (&key (type js2-YIELD)
4073 (pos js2-ts-cursor)
4074 len value star-p)))
4075 "AST node for yield statement or expression."
4076 star-p ; whether it's yield*
4077 value) ; optional: value to be yielded
4078
4079 (put 'cl-struct-js2-yield-node 'js2-visitor 'js2-visit-yield-node)
4080 (put 'cl-struct-js2-yield-node 'js2-printer 'js2-print-yield-node)
4081
4082 (defun js2-visit-yield-node (n v)
4083 (js2-visit-ast (js2-yield-node-value n) v))
4084
4085 (defun js2-print-yield-node (n i)
4086 (insert (js2-make-pad i))
4087 (insert "yield")
4088 (when (js2-yield-node-star-p n)
4089 (insert "*"))
4090 (when (js2-yield-node-value n)
4091 (insert " ")
4092 (js2-print-ast (js2-yield-node-value n) 0)))
4093
4094 (cl-defstruct (js2-paren-node
4095 (:include js2-node)
4096 (:constructor nil)
4097 (:constructor make-js2-paren-node (&key (type js2-LP)
4098 (pos js2-ts-cursor)
4099 len expr)))
4100 "AST node for a parenthesized expression.
4101 In particular, used when the parens are syntactically optional,
4102 as opposed to required parens such as those enclosing an if-conditional."
4103 expr) ; `js2-node'
4104
4105 (put 'cl-struct-js2-paren-node 'js2-visitor 'js2-visit-paren-node)
4106 (put 'cl-struct-js2-paren-node 'js2-printer 'js2-print-paren-node)
4107
4108 (defun js2-visit-paren-node (n v)
4109 (js2-visit-ast (js2-paren-node-expr n) v))
4110
4111 (defun js2-print-paren-node (n i)
4112 (insert (js2-make-pad i))
4113 (insert "(")
4114 (js2-print-ast (js2-paren-node-expr n) 0)
4115 (insert ")"))
4116
4117 (cl-defstruct (js2-comp-node
4118 (:include js2-scope)
4119 (:constructor nil)
4120 (:constructor make-js2-comp-node (&key (type js2-ARRAYCOMP)
4121 (pos js2-ts-cursor)
4122 len result
4123 loops filters
4124 form)))
4125 "AST node for an Array comprehension such as [[x,y] for (x in foo) for (y in bar)]."
4126 result ; result expression (just after left-bracket)
4127 loops ; a Lisp list of `js2-comp-loop-node'
4128 filters ; a Lisp list of guard/filter expressions
4129 form ; ARRAY, LEGACY_ARRAY or STAR_GENERATOR
4130 ; SpiderMonkey also supports "legacy generator expressions", but we dont.
4131 )
4132
4133 (put 'cl-struct-js2-comp-node 'js2-visitor 'js2-visit-comp-node)
4134 (put 'cl-struct-js2-comp-node 'js2-printer 'js2-print-comp-node)
4135
4136 (defun js2-visit-comp-node (n v)
4137 (js2-visit-ast (js2-comp-node-result n) v)
4138 (dolist (l (js2-comp-node-loops n))
4139 (js2-visit-ast l v))
4140 (dolist (f (js2-comp-node-filters n))
4141 (js2-visit-ast f v)))
4142
4143 (defun js2-print-comp-node (n i)
4144 (let ((pad (js2-make-pad i))
4145 (result (js2-comp-node-result n))
4146 (loops (js2-comp-node-loops n))
4147 (filters (js2-comp-node-filters n))
4148 (legacy-p (eq (js2-comp-node-form n) 'LEGACY_ARRAY))
4149 (gen-p (eq (js2-comp-node-form n) 'STAR_GENERATOR)))
4150 (insert pad (if gen-p "(" "["))
4151 (when legacy-p
4152 (js2-print-ast result 0))
4153 (dolist (l loops)
4154 (when legacy-p
4155 (insert " "))
4156 (js2-print-ast l 0)
4157 (unless legacy-p
4158 (insert " ")))
4159 (dolist (f filters)
4160 (when legacy-p
4161 (insert " "))
4162 (insert "if (")
4163 (js2-print-ast f 0)
4164 (insert ")")
4165 (unless legacy-p
4166 (insert " ")))
4167 (unless legacy-p
4168 (js2-print-ast result 0))
4169 (insert (if gen-p ")" "]"))))
4170
4171 (cl-defstruct (js2-comp-loop-node
4172 (:include js2-for-in-node)
4173 (:constructor nil)
4174 (:constructor make-js2-comp-loop-node (&key (type js2-FOR)
4175 (pos js2-ts-cursor)
4176 len iterator
4177 object in-pos
4178 foreach-p
4179 each-pos
4180 forof-p
4181 lp rp)))
4182 "AST subtree for each 'for (foo in bar)' loop in an array comprehension.")
4183
4184 (put 'cl-struct-js2-comp-loop-node 'js2-visitor 'js2-visit-comp-loop)
4185 (put 'cl-struct-js2-comp-loop-node 'js2-printer 'js2-print-comp-loop)
4186
4187 (defun js2-visit-comp-loop (n v)
4188 (js2-visit-ast (js2-comp-loop-node-iterator n) v)
4189 (js2-visit-ast (js2-comp-loop-node-object n) v))
4190
4191 (defun js2-print-comp-loop (n _i)
4192 (insert "for ")
4193 (when (js2-comp-loop-node-foreach-p n) (insert "each "))
4194 (insert "(")
4195 (js2-print-ast (js2-comp-loop-node-iterator n) 0)
4196 (insert (if (js2-comp-loop-node-forof-p n)
4197 " of " " in "))
4198 (js2-print-ast (js2-comp-loop-node-object n) 0)
4199 (insert ")"))
4200
4201 (cl-defstruct (js2-empty-expr-node
4202 (:include js2-node)
4203 (:constructor nil)
4204 (:constructor make-js2-empty-expr-node (&key (type js2-EMPTY)
4205 (pos (js2-current-token-beg))
4206 len)))
4207 "AST node for an empty expression.")
4208
4209 (put 'cl-struct-js2-empty-expr-node 'js2-visitor 'js2-visit-none)
4210 (put 'cl-struct-js2-empty-expr-node 'js2-printer 'js2-print-none)
4211
4212 (cl-defstruct (js2-xml-node
4213 (:include js2-block-node)
4214 (:constructor nil)
4215 (:constructor make-js2-xml-node (&key (type js2-XML)
4216 (pos (js2-current-token-beg))
4217 len kids)))
4218 "AST node for initial parse of E4X literals.
4219 The kids field is a list of XML fragments, each a `js2-string-node' or
4220 a `js2-xml-js-expr-node'. Equivalent to Rhino's XmlLiteral node.")
4221
4222 (put 'cl-struct-js2-xml-node 'js2-visitor 'js2-visit-block)
4223 (put 'cl-struct-js2-xml-node 'js2-printer 'js2-print-xml-node)
4224
4225 (defun js2-print-xml-node (n i)
4226 (dolist (kid (js2-xml-node-kids n))
4227 (js2-print-ast kid i)))
4228
4229 (cl-defstruct (js2-xml-js-expr-node
4230 (:include js2-xml-node)
4231 (:constructor nil)
4232 (:constructor make-js2-xml-js-expr-node (&key (type js2-XML)
4233 (pos js2-ts-cursor)
4234 len expr)))
4235 "AST node for an embedded JavaScript {expression} in an E4X literal.
4236 The start and end fields correspond to the curly-braces."
4237 expr) ; a `js2-expr-node' of some sort
4238
4239 (put 'cl-struct-js2-xml-js-expr-node 'js2-visitor 'js2-visit-xml-js-expr)
4240 (put 'cl-struct-js2-xml-js-expr-node 'js2-printer 'js2-print-xml-js-expr)
4241
4242 (defun js2-visit-xml-js-expr (n v)
4243 (js2-visit-ast (js2-xml-js-expr-node-expr n) v))
4244
4245 (defun js2-print-xml-js-expr (n i)
4246 (insert (js2-make-pad i))
4247 (insert "{")
4248 (js2-print-ast (js2-xml-js-expr-node-expr n) 0)
4249 (insert "}"))
4250
4251 (cl-defstruct (js2-xml-dot-query-node
4252 (:include js2-infix-node)
4253 (:constructor nil)
4254 (:constructor make-js2-xml-dot-query-node (&key (type js2-DOTQUERY)
4255 (pos js2-ts-cursor)
4256 op-pos len left
4257 right rp)))
4258 "AST node for an E4X foo.(bar) filter expression.
4259 Note that the left-paren is automatically the character immediately
4260 following the dot (.) in the operator. No whitespace is permitted
4261 between the dot and the lp by the scanner."
4262 rp)
4263
4264 (put 'cl-struct-js2-xml-dot-query-node 'js2-visitor 'js2-visit-infix-node)
4265 (put 'cl-struct-js2-xml-dot-query-node 'js2-printer 'js2-print-xml-dot-query)
4266
4267 (defun js2-print-xml-dot-query (n i)
4268 (insert (js2-make-pad i))
4269 (js2-print-ast (js2-xml-dot-query-node-left n) 0)
4270 (insert ".(")
4271 (js2-print-ast (js2-xml-dot-query-node-right n) 0)
4272 (insert ")"))
4273
4274 (cl-defstruct (js2-xml-ref-node
4275 (:include js2-node)
4276 (:constructor nil)) ; abstract
4277 "Base type for E4X XML attribute-access or property-get expressions.
4278 Such expressions can take a variety of forms. The general syntax has
4279 three parts:
4280
4281 - (optional) an @ (specifying an attribute access)
4282 - (optional) a namespace (a `js2-name-node') and double-colon
4283 - (required) either a `js2-name-node' or a bracketed [expression]
4284
4285 The property-name expressions (examples: ns::name, @name) are
4286 represented as `js2-xml-prop-ref' nodes. The bracketed-expression
4287 versions (examples: ns::[name], @[name]) become `js2-xml-elem-ref' nodes.
4288
4289 This node type (or more specifically, its subclasses) will sometimes
4290 be the right-hand child of a `js2-prop-get-node' or a
4291 `js2-infix-node' of type `js2-DOTDOT', the .. xml-descendants operator.
4292 The `js2-xml-ref-node' may also be a standalone primary expression with
4293 no explicit target, which is valid in certain expression contexts such as
4294
4295 company..employee.(@id < 100)
4296
4297 in this case, the @id is a `js2-xml-ref' that is part of an infix '<'
4298 expression whose parent is a `js2-xml-dot-query-node'."
4299 namespace
4300 at-pos
4301 colon-pos)
4302
4303 (defsubst js2-xml-ref-node-attr-access-p (node)
4304 "Return non-nil if this expression began with an @-token."
4305 (and (numberp (js2-xml-ref-node-at-pos node))
4306 (cl-plusp (js2-xml-ref-node-at-pos node))))
4307
4308 (cl-defstruct (js2-xml-prop-ref-node
4309 (:include js2-xml-ref-node)
4310 (:constructor nil)
4311 (:constructor make-js2-xml-prop-ref-node (&key (type js2-REF_NAME)
4312 (pos (js2-current-token-beg))
4313 len propname
4314 namespace at-pos
4315 colon-pos)))
4316 "AST node for an E4X XML [expr] property-ref expression.
4317 The JavaScript syntax is an optional @, an optional ns::, and a name.
4318
4319 [ '@' ] [ name '::' ] name
4320
4321 Examples include name, ns::name, ns::*, *::name, *::*, @attr, @ns::attr,
4322 @ns::*, @*::attr, @*::*, and @*.
4323
4324 The node starts at the @ token, if present. Otherwise it starts at the
4325 namespace name. The node bounds extend through the closing right-bracket,
4326 or if it is missing due to a syntax error, through the end of the index
4327 expression."
4328 propname)
4329
4330 (put 'cl-struct-js2-xml-prop-ref-node 'js2-visitor 'js2-visit-xml-prop-ref-node)
4331 (put 'cl-struct-js2-xml-prop-ref-node 'js2-printer 'js2-print-xml-prop-ref-node)
4332
4333 (defun js2-visit-xml-prop-ref-node (n v)
4334 (js2-visit-ast (js2-xml-prop-ref-node-namespace n) v)
4335 (js2-visit-ast (js2-xml-prop-ref-node-propname n) v))
4336
4337 (defun js2-print-xml-prop-ref-node (n i)
4338 (insert (js2-make-pad i))
4339 (if (js2-xml-ref-node-attr-access-p n)
4340 (insert "@"))
4341 (when (js2-xml-prop-ref-node-namespace n)
4342 (js2-print-ast (js2-xml-prop-ref-node-namespace n) 0)
4343 (insert "::"))
4344 (if (js2-xml-prop-ref-node-propname n)
4345 (js2-print-ast (js2-xml-prop-ref-node-propname n) 0)))
4346
4347 (cl-defstruct (js2-xml-elem-ref-node
4348 (:include js2-xml-ref-node)
4349 (:constructor nil)
4350 (:constructor make-js2-xml-elem-ref-node (&key (type js2-REF_MEMBER)
4351 (pos (js2-current-token-beg))
4352 len expr lb rb
4353 namespace at-pos
4354 colon-pos)))
4355 "AST node for an E4X XML [expr] member-ref expression.
4356 Syntax:
4357
4358 [ '@' ] [ name '::' ] '[' expr ']'
4359
4360 Examples include ns::[expr], @ns::[expr], @[expr], *::[expr] and @*::[expr].
4361
4362 Note that the form [expr] (i.e. no namespace or attribute-qualifier)
4363 is not a legal E4X XML element-ref expression, since it's already used
4364 for standard JavaScript element-get array indexing. Hence, a
4365 `js2-xml-elem-ref-node' always has either the attribute-qualifier, a
4366 non-nil namespace node, or both.
4367
4368 The node starts at the @ token, if present. Otherwise it starts
4369 at the namespace name. The node bounds extend through the closing
4370 right-bracket, or if it is missing due to a syntax error, through the
4371 end of the index expression."
4372 expr ; the bracketed index expression
4373 lb
4374 rb)
4375
4376 (put 'cl-struct-js2-xml-elem-ref-node 'js2-visitor 'js2-visit-xml-elem-ref-node)
4377 (put 'cl-struct-js2-xml-elem-ref-node 'js2-printer 'js2-print-xml-elem-ref-node)
4378
4379 (defun js2-visit-xml-elem-ref-node (n v)
4380 (js2-visit-ast (js2-xml-elem-ref-node-namespace n) v)
4381 (js2-visit-ast (js2-xml-elem-ref-node-expr n) v))
4382
4383 (defun js2-print-xml-elem-ref-node (n i)
4384 (insert (js2-make-pad i))
4385 (if (js2-xml-ref-node-attr-access-p n)
4386 (insert "@"))
4387 (when (js2-xml-elem-ref-node-namespace n)
4388 (js2-print-ast (js2-xml-elem-ref-node-namespace n) 0)
4389 (insert "::"))
4390 (insert "[")
4391 (if (js2-xml-elem-ref-node-expr n)
4392 (js2-print-ast (js2-xml-elem-ref-node-expr n) 0))
4393 (insert "]"))
4394
4395 ;;; Placeholder nodes for when we try parsing the XML literals structurally.
4396
4397 (cl-defstruct (js2-xml-start-tag-node
4398 (:include js2-xml-node)
4399 (:constructor nil)
4400 (:constructor make-js2-xml-start-tag-node (&key (type js2-XML)
4401 (pos js2-ts-cursor)
4402 len name attrs kids
4403 empty-p)))
4404 "AST node for an XML start-tag. Not currently used.
4405 The `kids' field is a Lisp list of child content nodes."
4406 name ; a `js2-xml-name-node'
4407 attrs ; a Lisp list of `js2-xml-attr-node'
4408 empty-p) ; t if this is an empty element such as <foo bar="baz"/>
4409
4410 (put 'cl-struct-js2-xml-start-tag-node 'js2-visitor 'js2-visit-xml-start-tag)
4411 (put 'cl-struct-js2-xml-start-tag-node 'js2-printer 'js2-print-xml-start-tag)
4412
4413 (defun js2-visit-xml-start-tag (n v)
4414 (js2-visit-ast (js2-xml-start-tag-node-name n) v)
4415 (dolist (attr (js2-xml-start-tag-node-attrs n))
4416 (js2-visit-ast attr v))
4417 (js2-visit-block n v))
4418
4419 (defun js2-print-xml-start-tag (n i)
4420 (insert (js2-make-pad i) "<")
4421 (js2-print-ast (js2-xml-start-tag-node-name n) 0)
4422 (when (js2-xml-start-tag-node-attrs n)
4423 (insert " ")
4424 (js2-print-list (js2-xml-start-tag-node-attrs n) " "))
4425 (insert ">"))
4426
4427 ;; I -think- I'm going to make the parent node the corresponding start-tag,
4428 ;; and add the end-tag to the kids list of the parent as well.
4429 (cl-defstruct (js2-xml-end-tag-node
4430 (:include js2-xml-node)
4431 (:constructor nil)
4432 (:constructor make-js2-xml-end-tag-node (&key (type js2-XML)
4433 (pos js2-ts-cursor)
4434 len name)))
4435 "AST node for an XML end-tag. Not currently used."
4436 name) ; a `js2-xml-name-node'
4437
4438 (put 'cl-struct-js2-xml-end-tag-node 'js2-visitor 'js2-visit-xml-end-tag)
4439 (put 'cl-struct-js2-xml-end-tag-node 'js2-printer 'js2-print-xml-end-tag)
4440
4441 (defun js2-visit-xml-end-tag (n v)
4442 (js2-visit-ast (js2-xml-end-tag-node-name n) v))
4443
4444 (defun js2-print-xml-end-tag (n i)
4445 (insert (js2-make-pad i))
4446 (insert "</")
4447 (js2-print-ast (js2-xml-end-tag-node-name n) 0)
4448 (insert ">"))
4449
4450 (cl-defstruct (js2-xml-name-node
4451 (:include js2-xml-node)
4452 (:constructor nil)
4453 (:constructor make-js2-xml-name-node (&key (type js2-XML)
4454 (pos js2-ts-cursor)
4455 len namespace kids)))
4456 "AST node for an E4X XML name. Not currently used.
4457 Any XML name can be qualified with a namespace, hence the namespace field.
4458 Further, any E4X name can be comprised of arbitrary JavaScript {} expressions.
4459 The kids field is a list of `js2-name-node' and `js2-xml-js-expr-node'.
4460 For a simple name, the kids list has exactly one node, a `js2-name-node'."
4461 namespace) ; a `js2-string-node'
4462
4463 (put 'cl-struct-js2-xml-name-node 'js2-visitor 'js2-visit-xml-name-node)
4464 (put 'cl-struct-js2-xml-name-node 'js2-printer 'js2-print-xml-name-node)
4465
4466 (defun js2-visit-xml-name-node (n v)
4467 (js2-visit-ast (js2-xml-name-node-namespace n) v))
4468
4469 (defun js2-print-xml-name-node (n i)
4470 (insert (js2-make-pad i))
4471 (when (js2-xml-name-node-namespace n)
4472 (js2-print-ast (js2-xml-name-node-namespace n) 0)
4473 (insert "::"))
4474 (dolist (kid (js2-xml-name-node-kids n))
4475 (js2-print-ast kid 0)))
4476
4477 (cl-defstruct (js2-xml-pi-node
4478 (:include js2-xml-node)
4479 (:constructor nil)
4480 (:constructor make-js2-xml-pi-node (&key (type js2-XML)
4481 (pos js2-ts-cursor)
4482 len name attrs)))
4483 "AST node for an E4X XML processing instruction. Not currently used."
4484 name ; a `js2-xml-name-node'
4485 attrs) ; a list of `js2-xml-attr-node'
4486
4487 (put 'cl-struct-js2-xml-pi-node 'js2-visitor 'js2-visit-xml-pi-node)
4488 (put 'cl-struct-js2-xml-pi-node 'js2-printer 'js2-print-xml-pi-node)
4489
4490 (defun js2-visit-xml-pi-node (n v)
4491 (js2-visit-ast (js2-xml-pi-node-name n) v)
4492 (dolist (attr (js2-xml-pi-node-attrs n))
4493 (js2-visit-ast attr v)))
4494
4495 (defun js2-print-xml-pi-node (n i)
4496 (insert (js2-make-pad i) "<?")
4497 (js2-print-ast (js2-xml-pi-node-name n))
4498 (when (js2-xml-pi-node-attrs n)
4499 (insert " ")
4500 (js2-print-list (js2-xml-pi-node-attrs n)))
4501 (insert "?>"))
4502
4503 (cl-defstruct (js2-xml-cdata-node
4504 (:include js2-xml-node)
4505 (:constructor nil)
4506 (:constructor make-js2-xml-cdata-node (&key (type js2-XML)
4507 (pos js2-ts-cursor)
4508 len content)))
4509 "AST node for a CDATA escape section. Not currently used."
4510 content) ; a `js2-string-node' with node-property 'quote-type 'cdata
4511
4512 (put 'cl-struct-js2-xml-cdata-node 'js2-visitor 'js2-visit-xml-cdata-node)
4513 (put 'cl-struct-js2-xml-cdata-node 'js2-printer 'js2-print-xml-cdata-node)
4514
4515 (defun js2-visit-xml-cdata-node (n v)
4516 (js2-visit-ast (js2-xml-cdata-node-content n) v))
4517
4518 (defun js2-print-xml-cdata-node (n i)
4519 (insert (js2-make-pad i))
4520 (js2-print-ast (js2-xml-cdata-node-content n)))
4521
4522 (cl-defstruct (js2-xml-attr-node
4523 (:include js2-xml-node)
4524 (:constructor nil)
4525 (:constructor make-js2-attr-node (&key (type js2-XML)
4526 (pos js2-ts-cursor)
4527 len name value
4528 eq-pos quote-type)))
4529 "AST node representing a foo='bar' XML attribute value. Not yet used."
4530 name ; a `js2-xml-name-node'
4531 value ; a `js2-xml-name-node'
4532 eq-pos ; buffer position of "=" sign
4533 quote-type) ; 'single or 'double
4534
4535 (put 'cl-struct-js2-xml-attr-node 'js2-visitor 'js2-visit-xml-attr-node)
4536 (put 'cl-struct-js2-xml-attr-node 'js2-printer 'js2-print-xml-attr-node)
4537
4538 (defun js2-visit-xml-attr-node (n v)
4539 (js2-visit-ast (js2-xml-attr-node-name n) v)
4540 (js2-visit-ast (js2-xml-attr-node-value n) v))
4541
4542 (defun js2-print-xml-attr-node (n i)
4543 (let ((quote (if (eq (js2-xml-attr-node-quote-type n) 'single)
4544 "'"
4545 "\"")))
4546 (insert (js2-make-pad i))
4547 (js2-print-ast (js2-xml-attr-node-name n) 0)
4548 (insert "=" quote)
4549 (js2-print-ast (js2-xml-attr-node-value n) 0)
4550 (insert quote)))
4551
4552 (cl-defstruct (js2-xml-text-node
4553 (:include js2-xml-node)
4554 (:constructor nil)
4555 (:constructor make-js2-text-node (&key (type js2-XML)
4556 (pos js2-ts-cursor)
4557 len content)))
4558 "AST node for an E4X XML text node. Not currently used."
4559 content) ; a Lisp list of `js2-string-node' and `js2-xml-js-expr-node'
4560
4561 (put 'cl-struct-js2-xml-text-node 'js2-visitor 'js2-visit-xml-text-node)
4562 (put 'cl-struct-js2-xml-text-node 'js2-printer 'js2-print-xml-text-node)
4563
4564 (defun js2-visit-xml-text-node (n v)
4565 (js2-visit-ast (js2-xml-text-node-content n) v))
4566
4567 (defun js2-print-xml-text-node (n i)
4568 (insert (js2-make-pad i))
4569 (dolist (kid (js2-xml-text-node-content n))
4570 (js2-print-ast kid)))
4571
4572 (cl-defstruct (js2-xml-comment-node
4573 (:include js2-xml-node)
4574 (:constructor nil)
4575 (:constructor make-js2-xml-comment-node (&key (type js2-XML)
4576 (pos js2-ts-cursor)
4577 len)))
4578 "AST node for E4X XML comment. Not currently used.")
4579
4580 (put 'cl-struct-js2-xml-comment-node 'js2-visitor 'js2-visit-none)
4581 (put 'cl-struct-js2-xml-comment-node 'js2-printer 'js2-print-xml-comment)
4582
4583 (defun js2-print-xml-comment (n i)
4584 (insert (js2-make-pad i)
4585 (js2-node-string n)))
4586
4587 ;;; Node utilities
4588
4589 (defsubst js2-node-line (n)
4590 "Fetch the source line number at the start of node N.
4591 This is O(n) in the length of the source buffer; use prudently."
4592 (1+ (count-lines (point-min) (js2-node-abs-pos n))))
4593
4594 (defsubst js2-block-node-kid (n i)
4595 "Return child I of node N, or nil if there aren't that many."
4596 (nth i (js2-block-node-kids n)))
4597
4598 (defsubst js2-block-node-first (n)
4599 "Return first child of block node N, or nil if there is none."
4600 (cl-first (js2-block-node-kids n)))
4601
4602 (defun js2-node-root (n)
4603 "Return the root of the AST containing N.
4604 If N has no parent pointer, returns N."
4605 (let ((parent (js2-node-parent n)))
4606 (if parent
4607 (js2-node-root parent)
4608 n)))
4609
4610 (defsubst js2-node-short-name (n)
4611 "Return the short name of node N as a string, e.g. `js2-if-node'."
4612 (substring (symbol-name (aref n 0))
4613 (length "cl-struct-")))
4614
4615 (defun js2-node-child-list (node)
4616 "Return the child list for NODE, a Lisp list of nodes.
4617 Works for block nodes, array nodes, obj literals, funarg lists,
4618 var decls and try nodes (for catch clauses). Note that you should call
4619 `js2-block-node-kids' on the function body for the body statements.
4620 Returns nil for zero-length child lists or unsupported nodes."
4621 (cond
4622 ((js2-function-node-p node)
4623 (js2-function-node-params node))
4624 ((js2-block-node-p node)
4625 (js2-block-node-kids node))
4626 ((js2-try-node-p node)
4627 (js2-try-node-catch-clauses node))
4628 ((js2-array-node-p node)
4629 (js2-array-node-elems node))
4630 ((js2-object-node-p node)
4631 (js2-object-node-elems node))
4632 ((js2-call-node-p node)
4633 (js2-call-node-args node))
4634 ((js2-new-node-p node)
4635 (js2-new-node-args node))
4636 ((js2-var-decl-node-p node)
4637 (js2-var-decl-node-kids node))
4638 (t
4639 nil)))
4640
4641 (defun js2-node-set-child-list (node kids)
4642 "Set the child list for NODE to KIDS."
4643 (cond
4644 ((js2-function-node-p node)
4645 (setf (js2-function-node-params node) kids))
4646 ((js2-block-node-p node)
4647 (setf (js2-block-node-kids node) kids))
4648 ((js2-try-node-p node)
4649 (setf (js2-try-node-catch-clauses node) kids))
4650 ((js2-array-node-p node)
4651 (setf (js2-array-node-elems node) kids))
4652 ((js2-object-node-p node)
4653 (setf (js2-object-node-elems node) kids))
4654 ((js2-call-node-p node)
4655 (setf (js2-call-node-args node) kids))
4656 ((js2-new-node-p node)
4657 (setf (js2-new-node-args node) kids))
4658 ((js2-var-decl-node-p node)
4659 (setf (js2-var-decl-node-kids node) kids))
4660 (t
4661 (error "Unsupported node type: %s" (js2-node-short-name node))))
4662 kids)
4663
4664 ;; All because Common Lisp doesn't support multiple inheritance for defstructs.
4665 (defconst js2-paren-expr-nodes
4666 '(cl-struct-js2-comp-loop-node
4667 cl-struct-js2-comp-node
4668 cl-struct-js2-call-node
4669 cl-struct-js2-catch-node
4670 cl-struct-js2-do-node
4671 cl-struct-js2-elem-get-node
4672 cl-struct-js2-for-in-node
4673 cl-struct-js2-for-node
4674 cl-struct-js2-function-node
4675 cl-struct-js2-if-node
4676 cl-struct-js2-let-node
4677 cl-struct-js2-new-node
4678 cl-struct-js2-paren-node
4679 cl-struct-js2-switch-node
4680 cl-struct-js2-while-node
4681 cl-struct-js2-with-node
4682 cl-struct-js2-xml-dot-query-node)
4683 "Node types that can have a parenthesized child expression.
4684 In particular, nodes that respond to `js2-node-lp' and `js2-node-rp'.")
4685
4686 (defsubst js2-paren-expr-node-p (node)
4687 "Return t for nodes that typically have a parenthesized child expression.
4688 Useful for computing the indentation anchors for arg-lists and conditions.
4689 Note that it may return a false positive, for instance when NODE is
4690 a `js2-new-node' and there are no arguments or parentheses."
4691 (memq (aref node 0) js2-paren-expr-nodes))
4692
4693 ;; Fake polymorphism... yech.
4694 (defun js2-node-lp (node)
4695 "Return relative left-paren position for NODE, if applicable.
4696 For `js2-elem-get-node' structs, returns left-bracket position.
4697 Note that the position may be nil in the case of a parse error."
4698 (cond
4699 ((js2-elem-get-node-p node)
4700 (js2-elem-get-node-lb node))
4701 ((js2-loop-node-p node)
4702 (js2-loop-node-lp node))
4703 ((js2-function-node-p node)
4704 (js2-function-node-lp node))
4705 ((js2-if-node-p node)
4706 (js2-if-node-lp node))
4707 ((js2-new-node-p node)
4708 (js2-new-node-lp node))
4709 ((js2-call-node-p node)
4710 (js2-call-node-lp node))
4711 ((js2-paren-node-p node)
4712 0)
4713 ((js2-switch-node-p node)
4714 (js2-switch-node-lp node))
4715 ((js2-catch-node-p node)
4716 (js2-catch-node-lp node))
4717 ((js2-let-node-p node)
4718 (js2-let-node-lp node))
4719 ((js2-comp-node-p node)
4720 0)
4721 ((js2-with-node-p node)
4722 (js2-with-node-lp node))
4723 ((js2-xml-dot-query-node-p node)
4724 (1+ (js2-infix-node-op-pos node)))
4725 (t
4726 (error "Unsupported node type: %s" (js2-node-short-name node)))))
4727
4728 ;; Fake polymorphism... blech.
4729 (defun js2-node-rp (node)
4730 "Return relative right-paren position for NODE, if applicable.
4731 For `js2-elem-get-node' structs, returns right-bracket position.
4732 Note that the position may be nil in the case of a parse error."
4733 (cond
4734 ((js2-elem-get-node-p node)
4735 (js2-elem-get-node-rb node))
4736 ((js2-loop-node-p node)
4737 (js2-loop-node-rp node))
4738 ((js2-function-node-p node)
4739 (js2-function-node-rp node))
4740 ((js2-if-node-p node)
4741 (js2-if-node-rp node))
4742 ((js2-new-node-p node)
4743 (js2-new-node-rp node))
4744 ((js2-call-node-p node)
4745 (js2-call-node-rp node))
4746 ((js2-paren-node-p node)
4747 (1- (js2-node-len node)))
4748 ((js2-switch-node-p node)
4749 (js2-switch-node-rp node))
4750 ((js2-catch-node-p node)
4751 (js2-catch-node-rp node))
4752 ((js2-let-node-p node)
4753 (js2-let-node-rp node))
4754 ((js2-comp-node-p node)
4755 (1- (js2-node-len node)))
4756 ((js2-with-node-p node)
4757 (js2-with-node-rp node))
4758 ((js2-xml-dot-query-node-p node)
4759 (1+ (js2-xml-dot-query-node-rp node)))
4760 (t
4761 (error "Unsupported node type: %s" (js2-node-short-name node)))))
4762
4763 (defsubst js2-node-first-child (node)
4764 "Return the first element of `js2-node-child-list' for NODE."
4765 (car (js2-node-child-list node)))
4766
4767 (defsubst js2-node-last-child (node)
4768 "Return the last element of `js2-node-last-child' for NODE."
4769 (car (last (js2-node-child-list node))))
4770
4771 (defun js2-node-prev-sibling (node)
4772 "Return the previous statement in parent.
4773 Works for parents supported by `js2-node-child-list'.
4774 Returns nil if NODE is not in the parent, or PARENT is
4775 not a supported node, or if NODE is the first child."
4776 (let* ((p (js2-node-parent node))
4777 (kids (js2-node-child-list p))
4778 (sib (car kids)))
4779 (while (and kids
4780 (not (eq node (cadr kids))))
4781 (setq kids (cdr kids)
4782 sib (car kids)))
4783 sib))
4784
4785 (defun js2-node-next-sibling (node)
4786 "Return the next statement in parent block.
4787 Returns nil if NODE is not in the block, or PARENT is not
4788 a block node, or if NODE is the last statement."
4789 (let* ((p (js2-node-parent node))
4790 (kids (js2-node-child-list p)))
4791 (while (and kids
4792 (not (eq node (car kids))))
4793 (setq kids (cdr kids)))
4794 (cadr kids)))
4795
4796 (defun js2-node-find-child-before (pos parent &optional after)
4797 "Find the last child that starts before POS in parent.
4798 If AFTER is non-nil, returns first child starting after POS.
4799 POS is an absolute buffer position. PARENT is any node
4800 supported by `js2-node-child-list'.
4801 Returns nil if no applicable child is found."
4802 (let ((kids (if (js2-function-node-p parent)
4803 (js2-block-node-kids (js2-function-node-body parent))
4804 (js2-node-child-list parent)))
4805 (beg (js2-node-abs-pos (if (js2-function-node-p parent)
4806 (js2-function-node-body parent)
4807 parent)))
4808 kid result fn
4809 (continue t))
4810 (setq fn (if after '>= '<))
4811 (while (and kids continue)
4812 (setq kid (car kids))
4813 (if (funcall fn (+ beg (js2-node-pos kid)) pos)
4814 (setq result kid
4815 continue (not after))
4816 (setq continue after))
4817 (setq kids (cdr kids)))
4818 result))
4819
4820 (defun js2-node-find-child-after (pos parent)
4821 "Find first child that starts after POS in parent.
4822 POS is an absolute buffer position. PARENT is any node
4823 supported by `js2-node-child-list'.
4824 Returns nil if no applicable child is found."
4825 (js2-node-find-child-before pos parent 'after))
4826
4827 (defun js2-node-replace-child (pos parent new-node)
4828 "Replace node at index POS in PARENT with NEW-NODE.
4829 Only works for parents supported by `js2-node-child-list'."
4830 (let ((kids (js2-node-child-list parent))
4831 (i 0))
4832 (while (< i pos)
4833 (setq kids (cdr kids)
4834 i (1+ i)))
4835 (setcar kids new-node)
4836 (js2-node-add-children parent new-node)))
4837
4838 (defun js2-node-buffer (n)
4839 "Return the buffer associated with AST N.
4840 Returns nil if the buffer is not set as a property on the root
4841 node, or if parent links were not recorded during parsing."
4842 (let ((root (js2-node-root n)))
4843 (and root
4844 (js2-ast-root-p root)
4845 (js2-ast-root-buffer root))))
4846
4847 (defun js2-block-node-push (n kid)
4848 "Push js2-node KID onto the end of js2-block-node N's child list.
4849 KID is always added to the -end- of the kids list.
4850 Function also calls `js2-node-add-children' to add the parent link."
4851 (let ((kids (js2-node-child-list n)))
4852 (if kids
4853 (setcdr kids (nconc (cdr kids) (list kid)))
4854 (js2-node-set-child-list n (list kid)))
4855 (js2-node-add-children n kid)))
4856
4857 (defun js2-node-string (node)
4858 (with-current-buffer (or (js2-node-buffer node)
4859 (error "No buffer available for node %s" node))
4860 (let ((pos (js2-node-abs-pos node)))
4861 (buffer-substring-no-properties pos (+ pos (js2-node-len node))))))
4862
4863 ;; Container for storing the node we're looking for in a traversal.
4864 (js2-deflocal js2-discovered-node nil)
4865
4866 ;; Keep track of absolute node position during traversals.
4867 (js2-deflocal js2-visitor-offset nil)
4868
4869 (js2-deflocal js2-node-search-point nil)
4870
4871 (when js2-mode-dev-mode-p
4872 (defun js2-find-node-at-point ()
4873 (interactive)
4874 (let ((node (js2-node-at-point)))
4875 (message "%s" (or node "No node found at point"))))
4876 (defun js2-node-name-at-point ()
4877 (interactive)
4878 (let ((node (js2-node-at-point)))
4879 (message "%s" (if node
4880 (js2-node-short-name node)
4881 "No node found at point.")))))
4882
4883 (defun js2-node-at-point (&optional pos skip-comments)
4884 "Return AST node at POS, a buffer position, defaulting to current point.
4885 The `js2-mode-ast' variable must be set to the current parse tree.
4886 Signals an error if the AST (`js2-mode-ast') is nil.
4887 Always returns a node - if it can't find one, it returns the root.
4888 If SKIP-COMMENTS is non-nil, comment nodes are ignored."
4889 (let ((ast js2-mode-ast)
4890 result)
4891 (unless ast
4892 (error "No JavaScript AST available"))
4893 ;; Look through comments first, since they may be inside nodes that
4894 ;; would otherwise report a match.
4895 (setq pos (or pos (point))
4896 result (if (> pos (js2-node-abs-end ast))
4897 ast
4898 (if (not skip-comments)
4899 (js2-comment-at-point pos))))
4900 (unless result
4901 (setq js2-discovered-node nil
4902 js2-visitor-offset 0
4903 js2-node-search-point pos)
4904 (unwind-protect
4905 (catch 'js2-visit-done
4906 (js2-visit-ast ast #'js2-node-at-point-visitor))
4907 (setq js2-visitor-offset nil
4908 js2-node-search-point nil))
4909 (setq result js2-discovered-node))
4910 ;; may have found a comment beyond end of last child node,
4911 ;; since visiting the ast-root looks at the comment-list last.
4912 (if (and skip-comments
4913 (js2-comment-node-p result))
4914 (setq result nil))
4915 (or result js2-mode-ast)))
4916
4917 (defun js2-node-at-point-visitor (node end-p)
4918 (let ((rel-pos (js2-node-pos node))
4919 abs-pos
4920 abs-end
4921 (point js2-node-search-point))
4922 (cond
4923 (end-p
4924 ;; this evaluates to a non-nil return value, even if it's zero
4925 (cl-decf js2-visitor-offset rel-pos))
4926 ;; we already looked for comments before visiting, and don't want them now
4927 ((js2-comment-node-p node)
4928 nil)
4929 (t
4930 (setq abs-pos (cl-incf js2-visitor-offset rel-pos)
4931 ;; we only want to use the node if the point is before
4932 ;; the last character position in the node, so we decrement
4933 ;; the absolute end by 1.
4934 abs-end (+ abs-pos (js2-node-len node) -1))
4935 (cond
4936 ;; If this node starts after search-point, stop the search.
4937 ((> abs-pos point)
4938 (throw 'js2-visit-done nil))
4939 ;; If this node ends before the search-point, don't check kids.
4940 ((> point abs-end)
4941 nil)
4942 (t
4943 ;; Otherwise point is within this node, possibly in a child.
4944 (setq js2-discovered-node node)
4945 t)))))) ; keep processing kids to look for more specific match
4946
4947 (defsubst js2-block-comment-p (node)
4948 "Return non-nil if NODE is a comment node of format `jsdoc' or `block'."
4949 (and (js2-comment-node-p node)
4950 (memq (js2-comment-node-format node) '(jsdoc block))))
4951
4952 ;; TODO: put the comments in a vector and binary-search them instead
4953 (defun js2-comment-at-point (&optional pos)
4954 "Look through scanned comment nodes for one containing POS.
4955 POS is a buffer position that defaults to current point.
4956 Function returns nil if POS was not in any comment node."
4957 (let ((ast js2-mode-ast)
4958 (x (or pos (point)))
4959 beg end)
4960 (unless ast
4961 (error "No JavaScript AST available"))
4962 (catch 'done
4963 ;; Comments are stored in lexical order.
4964 (dolist (comment (js2-ast-root-comments ast) nil)
4965 (setq beg (js2-node-abs-pos comment)
4966 end (+ beg (js2-node-len comment)))
4967 (if (and (>= x beg)
4968 (<= x end))
4969 (throw 'done comment))))))
4970
4971 (defun js2-mode-find-parent-fn (node)
4972 "Find function enclosing NODE.
4973 Returns nil if NODE is not inside a function."
4974 (setq node (js2-node-parent node))
4975 (while (and node (not (js2-function-node-p node)))
4976 (setq node (js2-node-parent node)))
4977 (and (js2-function-node-p node) node))
4978
4979 (defun js2-mode-find-enclosing-fn (node)
4980 "Find function or root enclosing NODE."
4981 (if (js2-ast-root-p node)
4982 node
4983 (setq node (js2-node-parent node))
4984 (while (not (or (js2-ast-root-p node)
4985 (js2-function-node-p node)))
4986 (setq node (js2-node-parent node)))
4987 node))
4988
4989 (defun js2-mode-find-enclosing-node (beg end)
4990 "Find node fully enclosing BEG and END."
4991 (let ((node (js2-node-at-point beg))
4992 pos
4993 (continue t))
4994 (while continue
4995 (if (or (js2-ast-root-p node)
4996 (and
4997 (<= (setq pos (js2-node-abs-pos node)) beg)
4998 (>= (+ pos (js2-node-len node)) end)))
4999 (setq continue nil)
5000 (setq node (js2-node-parent node))))
5001 node))
5002
5003 (defun js2-node-parent-script-or-fn (node)
5004 "Find script or function immediately enclosing NODE.
5005 If NODE is the ast-root, returns nil."
5006 (if (js2-ast-root-p node)
5007 nil
5008 (setq node (js2-node-parent node))
5009 (while (and node (not (or (js2-function-node-p node)
5010 (js2-script-node-p node))))
5011 (setq node (js2-node-parent node)))
5012 node))
5013
5014 (defun js2-node-is-descendant (node ancestor)
5015 "Return t if NODE is a descendant of ANCESTOR."
5016 (while (and node
5017 (not (eq node ancestor)))
5018 (setq node (js2-node-parent node)))
5019 node)
5020
5021 ;;; visitor infrastructure
5022
5023 (defun js2-visit-none (_node _callback)
5024 "Visitor for AST node that have no node children."
5025 nil)
5026
5027 (defun js2-print-none (_node _indent)
5028 "Visitor for AST node with no printed representation.")
5029
5030 (defun js2-print-body (node indent)
5031 "Print a statement, or a block without braces."
5032 (if (js2-block-node-p node)
5033 (dolist (kid (js2-block-node-kids node))
5034 (js2-print-ast kid indent))
5035 (js2-print-ast node indent)))
5036
5037 (defun js2-print-list (args &optional delimiter)
5038 (cl-loop with len = (length args)
5039 for arg in args
5040 for count from 1
5041 do
5042 (when arg (js2-print-ast arg 0))
5043 (if (< count len)
5044 (insert (or delimiter ", ")))))
5045
5046 (defun js2-print-tree (ast)
5047 "Prints an AST to the current buffer.
5048 Makes `js2-ast-parent-nodes' available to the printer functions."
5049 (let ((max-lisp-eval-depth (max max-lisp-eval-depth 1500)))
5050 (js2-print-ast ast)))
5051
5052 (defun js2-print-ast (node &optional indent)
5053 "Helper function for printing AST nodes.
5054 Requires `js2-ast-parent-nodes' to be non-nil.
5055 You should use `js2-print-tree' instead of this function."
5056 (let ((printer (get (aref node 0) 'js2-printer))
5057 (i (or indent 0)))
5058 ;; TODO: wedge comments in here somewhere
5059 (if printer
5060 (funcall printer node i))))
5061
5062 (defconst js2-side-effecting-tokens
5063 (let ((tokens (make-bool-vector js2-num-tokens nil)))
5064 (dolist (tt (list js2-ASSIGN
5065 js2-ASSIGN_ADD
5066 js2-ASSIGN_BITAND
5067 js2-ASSIGN_BITOR
5068 js2-ASSIGN_BITXOR
5069 js2-ASSIGN_DIV
5070 js2-ASSIGN_LSH
5071 js2-ASSIGN_MOD
5072 js2-ASSIGN_MUL
5073 js2-ASSIGN_RSH
5074 js2-ASSIGN_SUB
5075 js2-ASSIGN_URSH
5076 js2-BLOCK
5077 js2-BREAK
5078 js2-CALL
5079 js2-CATCH
5080 js2-CATCH_SCOPE
5081 js2-CLASS
5082 js2-CONST
5083 js2-CONTINUE
5084 js2-DEBUGGER
5085 js2-DEC
5086 js2-DELPROP
5087 js2-DEL_REF
5088 js2-DO
5089 js2-ELSE
5090 js2-EMPTY
5091 js2-ENTERWITH
5092 js2-EXPORT
5093 js2-EXPR_RESULT
5094 js2-FINALLY
5095 js2-FOR
5096 js2-FUNCTION
5097 js2-GOTO
5098 js2-IF
5099 js2-IFEQ
5100 js2-IFNE
5101 js2-IMPORT
5102 js2-INC
5103 js2-JSR
5104 js2-LABEL
5105 js2-LEAVEWITH
5106 js2-LET
5107 js2-LETEXPR
5108 js2-LOCAL_BLOCK
5109 js2-LOOP
5110 js2-NEW
5111 js2-REF_CALL
5112 js2-RETHROW
5113 js2-RETURN
5114 js2-RETURN_RESULT
5115 js2-SEMI
5116 js2-SETELEM
5117 js2-SETELEM_OP
5118 js2-SETNAME
5119 js2-SETPROP
5120 js2-SETPROP_OP
5121 js2-SETVAR
5122 js2-SET_REF
5123 js2-SET_REF_OP
5124 js2-SWITCH
5125 js2-TARGET
5126 js2-THROW
5127 js2-TRY
5128 js2-VAR
5129 js2-WHILE
5130 js2-WITH
5131 js2-WITHEXPR
5132 js2-YIELD))
5133 (aset tokens tt t))
5134 (if js2-instanceof-has-side-effects
5135 (aset tokens js2-INSTANCEOF t))
5136 tokens))
5137
5138 (defun js2-node-has-side-effects (node)
5139 "Return t if NODE has side effects."
5140 (when node ; makes it easier to handle malformed expressions
5141 (let ((tt (js2-node-type node)))
5142 (cond
5143 ;; This doubtless needs some work, since EXPR_VOID is used
5144 ;; in several ways in Rhino and I may not have caught them all.
5145 ;; I'll wait for people to notice incorrect warnings.
5146 ((and (= tt js2-EXPR_VOID)
5147 (js2-expr-stmt-node-p node)) ; but not if EXPR_RESULT
5148 (let ((expr (js2-expr-stmt-node-expr node)))
5149 (or (js2-node-has-side-effects expr)
5150 (when (js2-string-node-p expr)
5151 (member (js2-string-node-value expr) '("use strict" "use asm"))))))
5152 ((= tt js2-AWAIT)
5153 (js2-node-has-side-effects (js2-unary-node-operand node)))
5154 ((= tt js2-COMMA)
5155 (js2-node-has-side-effects (js2-infix-node-right node)))
5156 ((or (= tt js2-AND)
5157 (= tt js2-OR))
5158 (or (js2-node-has-side-effects (js2-infix-node-right node))
5159 (js2-node-has-side-effects (js2-infix-node-left node))))
5160 ((= tt js2-HOOK)
5161 (and (js2-node-has-side-effects (js2-cond-node-true-expr node))
5162 (js2-node-has-side-effects (js2-cond-node-false-expr node))))
5163 ((js2-paren-node-p node)
5164 (js2-node-has-side-effects (js2-paren-node-expr node)))
5165 ((= tt js2-ERROR) ; avoid cascaded error messages
5166 nil)
5167 (t
5168 (aref js2-side-effecting-tokens tt))))))
5169
5170 (defconst js2-stmt-node-types
5171 (list js2-BLOCK
5172 js2-BREAK
5173 js2-CONTINUE
5174 js2-DEFAULT ; e4x "default xml namespace" statement
5175 js2-DO
5176 js2-EXPORT
5177 js2-EXPR_RESULT
5178 js2-EXPR_VOID
5179 js2-FOR
5180 js2-IF
5181 js2-IMPORT
5182 js2-RETURN
5183 js2-SWITCH
5184 js2-THROW
5185 js2-TRY
5186 js2-WHILE
5187 js2-WITH)
5188 "Node types that only appear in statement contexts.
5189 The list does not include nodes that always appear as the child
5190 of another specific statement type, such as switch-cases,
5191 catch and finally blocks, and else-clauses. The list also excludes
5192 nodes like yield, let and var, which may appear in either expression
5193 or statement context, and in the latter context always have a
5194 `js2-expr-stmt-node' parent. Finally, the list does not include
5195 functions or scripts, which are treated separately from statements
5196 by the JavaScript parser and runtime.")
5197
5198 (defun js2-stmt-node-p (node)
5199 "Heuristic for figuring out if NODE is a statement.
5200 Some node types can appear in either an expression context or a
5201 statement context, e.g. let-nodes, yield-nodes, and var-decl nodes.
5202 For these node types in a statement context, the parent will be a
5203 `js2-expr-stmt-node'.
5204 Functions aren't included in the check."
5205 (memq (js2-node-type node) js2-stmt-node-types))
5206
5207 (defun js2-mode-find-first-stmt (node)
5208 "Search upward starting from NODE looking for a statement.
5209 For purposes of this function, a `js2-function-node' counts."
5210 (while (not (or (js2-stmt-node-p node)
5211 (js2-function-node-p node)))
5212 (setq node (js2-node-parent node)))
5213 node)
5214
5215 (defun js2-node-parent-stmt (node)
5216 "Return the node's first ancestor that is a statement.
5217 Returns nil if NODE is a `js2-ast-root'. Note that any expression
5218 appearing in a statement context will have a parent that is a
5219 `js2-expr-stmt-node' that will be returned by this function."
5220 (let ((parent (js2-node-parent node)))
5221 (if (or (null parent)
5222 (js2-stmt-node-p parent)
5223 (and (js2-function-node-p parent)
5224 (not (eq (js2-function-node-form parent)
5225 'FUNCTION_EXPRESSION))))
5226 parent
5227 (js2-node-parent-stmt parent))))
5228
5229 ;; In the Mozilla Rhino sources, Roshan James writes:
5230 ;; Does consistent-return analysis on the function body when strict mode is
5231 ;; enabled.
5232 ;;
5233 ;; function (x) { return (x+1) }
5234 ;;
5235 ;; is ok, but
5236 ;;
5237 ;; function (x) { if (x < 0) return (x+1); }
5238 ;;
5239 ;; is not because the function can potentially return a value when the
5240 ;; condition is satisfied and if not, the function does not explicitly
5241 ;; return a value.
5242 ;;
5243 ;; This extends to checking mismatches such as "return" and "return <value>"
5244 ;; used in the same function. Warnings are not emitted if inconsistent
5245 ;; returns exist in code that can be statically shown to be unreachable.
5246 ;; Ex.
5247 ;; function (x) { while (true) { ... if (..) { return value } ... } }
5248 ;;
5249 ;; emits no warning. However if the loop had a break statement, then a
5250 ;; warning would be emitted.
5251 ;;
5252 ;; The consistency analysis looks at control structures such as loops, ifs,
5253 ;; switch, try-catch-finally blocks, examines the reachable code paths and
5254 ;; warns the user about an inconsistent set of termination possibilities.
5255 ;;
5256 ;; These flags enumerate the possible ways a statement/function can
5257 ;; terminate. These flags are used by endCheck() and by the Parser to
5258 ;; detect inconsistent return usage.
5259 ;;
5260 ;; END_UNREACHED is reserved for code paths that are assumed to always be
5261 ;; able to execute (example: throw, continue)
5262 ;;
5263 ;; END_DROPS_OFF indicates if the statement can transfer control to the
5264 ;; next one. Statement such as return dont. A compound statement may have
5265 ;; some branch that drops off control to the next statement.
5266 ;;
5267 ;; END_RETURNS indicates that the statement can return with no value.
5268 ;; END_RETURNS_VALUE indicates that the statement can return a value.
5269 ;;
5270 ;; A compound statement such as
5271 ;; if (condition) {
5272 ;; return value;
5273 ;; }
5274 ;; Will be detected as (END_DROPS_OFF | END_RETURN_VALUE) by endCheck()
5275
5276 (defconst js2-END_UNREACHED 0)
5277 (defconst js2-END_DROPS_OFF 1)
5278 (defconst js2-END_RETURNS 2)
5279 (defconst js2-END_RETURNS_VALUE 4)
5280 (defconst js2-END_YIELDS 8)
5281
5282 (defun js2-has-consistent-return-usage (node)
5283 "Check that every return usage in a function body is consistent.
5284 Returns t if the function satisfies strict mode requirement."
5285 (let ((n (js2-end-check node)))
5286 ;; either it doesn't return a value in any branch...
5287 (or (js2-flag-not-set-p n js2-END_RETURNS_VALUE)
5288 ;; or it returns a value (or is unreached) at every branch
5289 (js2-flag-not-set-p n (logior js2-END_DROPS_OFF
5290 js2-END_RETURNS
5291 js2-END_YIELDS)))))
5292
5293 (defun js2-end-check-if (node)
5294 "Ensure that return usage in then/else blocks is consistent.
5295 If there is no else block, then the return statement can fall through.
5296 Returns logical OR of END_* flags"
5297 (let ((th (js2-if-node-then-part node))
5298 (el (js2-if-node-else-part node)))
5299 (if (null th)
5300 js2-END_UNREACHED
5301 (logior (js2-end-check th) (if el
5302 (js2-end-check el)
5303 js2-END_DROPS_OFF)))))
5304
5305 (defun js2-end-check-switch (node)
5306 "Consistency of return statements is checked between the case statements.
5307 If there is no default, then the switch can fall through. If there is a
5308 default, we check to see if all code paths in the default return or if
5309 there is a code path that can fall through.
5310 Returns logical OR of END_* flags."
5311 (let ((rv js2-END_UNREACHED)
5312 default-case)
5313 ;; examine the cases
5314 (catch 'break
5315 (dolist (c (js2-switch-node-cases node))
5316 (if (js2-case-node-expr c)
5317 (js2-set-flag rv (js2-end-check-block c))
5318 (setq default-case c)
5319 (throw 'break nil))))
5320 ;; we don't care how the cases drop into each other
5321 (js2-clear-flag rv js2-END_DROPS_OFF)
5322 ;; examine the default
5323 (js2-set-flag rv (if default-case
5324 (js2-end-check default-case)
5325 js2-END_DROPS_OFF))
5326 rv))
5327
5328 (defun js2-end-check-try (node)
5329 "If the block has a finally, return consistency is checked in the
5330 finally block. If all code paths in the finally return, then the
5331 returns in the try-catch blocks don't matter. If there is a code path
5332 that does not return or if there is no finally block, the returns
5333 of the try and catch blocks are checked for mismatch.
5334 Returns logical OR of END_* flags."
5335 (let ((finally (js2-try-node-finally-block node))
5336 rv)
5337 ;; check the finally if it exists
5338 (setq rv (if finally
5339 (js2-end-check (js2-finally-node-body finally))
5340 js2-END_DROPS_OFF))
5341 ;; If the finally block always returns, then none of the returns
5342 ;; in the try or catch blocks matter.
5343 (when (js2-flag-set-p rv js2-END_DROPS_OFF)
5344 (js2-clear-flag rv js2-END_DROPS_OFF)
5345 ;; examine the try block
5346 (js2-set-flag rv (js2-end-check (js2-try-node-try-block node)))
5347 ;; check each catch block
5348 (dolist (cb (js2-try-node-catch-clauses node))
5349 (js2-set-flag rv (js2-end-check cb))))
5350 rv))
5351
5352 (defun js2-end-check-loop (node)
5353 "Return statement in the loop body must be consistent.
5354 The default assumption for any kind of a loop is that it will eventually
5355 terminate. The only exception is a loop with a constant true condition.
5356 Code that follows such a loop is examined only if one can determine
5357 statically that there is a break out of the loop.
5358
5359 for(... ; ... ; ...) {}
5360 for(... in ... ) {}
5361 while(...) { }
5362 do { } while(...)
5363
5364 Returns logical OR of END_* flags."
5365 (let ((rv (js2-end-check (js2-loop-node-body node)))
5366 (condition (cond
5367 ((js2-while-node-p node)
5368 (js2-while-node-condition node))
5369 ((js2-do-node-p node)
5370 (js2-do-node-condition node))
5371 ((js2-for-node-p node)
5372 (js2-for-node-condition node)))))
5373
5374 ;; check to see if the loop condition is always true
5375 (if (and condition
5376 (eq (js2-always-defined-boolean-p condition) 'ALWAYS_TRUE))
5377 (js2-clear-flag rv js2-END_DROPS_OFF))
5378
5379 ;; look for effect of breaks
5380 (js2-set-flag rv (js2-node-get-prop node
5381 'CONTROL_BLOCK_PROP
5382 js2-END_UNREACHED))
5383 rv))
5384
5385 (defun js2-end-check-block (node)
5386 "A general block of code is examined statement by statement.
5387 If any statement (even a compound one) returns in all branches, then
5388 subsequent statements are not examined.
5389 Returns logical OR of END_* flags."
5390 (let* ((rv js2-END_DROPS_OFF)
5391 (kids (js2-block-node-kids node))
5392 (n (car kids)))
5393 ;; Check each statement. If the statement can continue onto the next
5394 ;; one (i.e. END_DROPS_OFF is set), then check the next statement.
5395 (while (and n (js2-flag-set-p rv js2-END_DROPS_OFF))
5396 (js2-clear-flag rv js2-END_DROPS_OFF)
5397 (js2-set-flag rv (js2-end-check n))
5398 (setq kids (cdr kids)
5399 n (car kids)))
5400 rv))
5401
5402 (defun js2-end-check-label (node)
5403 "A labeled statement implies that there may be a break to the label.
5404 The function processes the labeled statement and then checks the
5405 CONTROL_BLOCK_PROP property to see if there is ever a break to the
5406 particular label.
5407 Returns logical OR of END_* flags."
5408 (let ((rv (js2-end-check (js2-labeled-stmt-node-stmt node))))
5409 (logior rv (js2-node-get-prop node
5410 'CONTROL_BLOCK_PROP
5411 js2-END_UNREACHED))))
5412
5413 (defun js2-end-check-break (node)
5414 "When a break is encountered annotate the statement being broken
5415 out of by setting its CONTROL_BLOCK_PROP property.
5416 Returns logical OR of END_* flags."
5417 (and (js2-break-node-target node)
5418 (js2-node-set-prop (js2-break-node-target node)
5419 'CONTROL_BLOCK_PROP
5420 js2-END_DROPS_OFF))
5421 js2-END_UNREACHED)
5422
5423 (defun js2-end-check (node)
5424 "Examine the body of a function, doing a basic reachability analysis.
5425 Returns a combination of flags END_* flags that indicate
5426 how the function execution can terminate. These constitute only the
5427 pessimistic set of termination conditions. It is possible that at
5428 runtime certain code paths will never be actually taken. Hence this
5429 analysis will flag errors in cases where there may not be errors.
5430 Returns logical OR of END_* flags"
5431 (let (kid)
5432 (cond
5433 ((js2-break-node-p node)
5434 (js2-end-check-break node))
5435 ((js2-expr-stmt-node-p node)
5436 (if (setq kid (js2-expr-stmt-node-expr node))
5437 (js2-end-check kid)
5438 js2-END_DROPS_OFF))
5439 ((or (js2-continue-node-p node)
5440 (js2-throw-node-p node))
5441 js2-END_UNREACHED)
5442 ((js2-return-node-p node)
5443 (if (setq kid (js2-return-node-retval node))
5444 js2-END_RETURNS_VALUE
5445 js2-END_RETURNS))
5446 ((js2-loop-node-p node)
5447 (js2-end-check-loop node))
5448 ((js2-switch-node-p node)
5449 (js2-end-check-switch node))
5450 ((js2-labeled-stmt-node-p node)
5451 (js2-end-check-label node))
5452 ((js2-if-node-p node)
5453 (js2-end-check-if node))
5454 ((js2-try-node-p node)
5455 (js2-end-check-try node))
5456 ((js2-block-node-p node)
5457 (if (null (js2-block-node-kids node))
5458 js2-END_DROPS_OFF
5459 (js2-end-check-block node)))
5460 ((js2-yield-node-p node)
5461 js2-END_YIELDS)
5462 (t
5463 js2-END_DROPS_OFF))))
5464
5465 (defun js2-always-defined-boolean-p (node)
5466 "Check if NODE always evaluates to true or false in boolean context.
5467 Returns 'ALWAYS_TRUE, 'ALWAYS_FALSE, or nil if it's neither always true
5468 nor always false."
5469 (let ((tt (js2-node-type node))
5470 num)
5471 (cond
5472 ((or (= tt js2-FALSE) (= tt js2-NULL))
5473 'ALWAYS_FALSE)
5474 ((= tt js2-TRUE)
5475 'ALWAYS_TRUE)
5476 ((= tt js2-NUMBER)
5477 (setq num (js2-number-node-num-value node))
5478 (if (and (not (eq num 0.0e+NaN))
5479 (not (zerop num)))
5480 'ALWAYS_TRUE
5481 'ALWAYS_FALSE))
5482 (t
5483 nil))))
5484
5485 ;;; Scanner -- a port of Mozilla Rhino's lexer.
5486 ;; Corresponds to Rhino files Token.java and TokenStream.java.
5487
5488 (defvar js2-tokens nil
5489 "List of all defined token names.") ; initialized in `js2-token-names'
5490
5491 (defconst js2-token-names
5492 (let* ((names (make-vector js2-num-tokens -1))
5493 (case-fold-search nil) ; only match js2-UPPER_CASE
5494 (syms (apropos-internal "^js2-\\(?:[[:upper:]_]+\\)")))
5495 (cl-loop for sym in syms
5496 for i from 0
5497 do
5498 (unless (or (memq sym '(js2-EOF_CHAR js2-ERROR))
5499 (not (boundp sym)))
5500 (aset names (symbol-value sym) ; code, e.g. 152
5501 (downcase
5502 (substring (symbol-name sym) 4))) ; name, e.g. "let"
5503 (push sym js2-tokens)))
5504 names)
5505 "Vector mapping int values to token string names, sans `js2-' prefix.")
5506
5507 (defun js2-tt-name (tok)
5508 "Return a string name for TOK, a token symbol or code.
5509 Signals an error if it's not a recognized token."
5510 (let ((code tok))
5511 (if (symbolp tok)
5512 (setq code (symbol-value tok)))
5513 (if (eq code -1)
5514 "ERROR"
5515 (if (and (numberp code)
5516 (not (cl-minusp code))
5517 (< code js2-num-tokens))
5518 (aref js2-token-names code)
5519 (error "Invalid token: %s" code)))))
5520
5521 (defsubst js2-tt-sym (tok)
5522 "Return symbol for TOK given its code, e.g. 'js2-LP for code 86."
5523 (intern (js2-tt-name tok)))
5524
5525 (defconst js2-token-codes
5526 (let ((table (make-hash-table :test 'eq :size 256)))
5527 (cl-loop for name across js2-token-names
5528 for sym = (intern (concat "js2-" (upcase name)))
5529 do
5530 (puthash sym (symbol-value sym) table))
5531 ;; clean up a few that are "wrong" in Rhino's token codes
5532 (puthash 'js2-DELETE js2-DELPROP table)
5533 table)
5534 "Hashtable mapping token type symbols to their bytecodes.")
5535
5536 (defsubst js2-tt-code (sym)
5537 "Return code for token symbol SYM, e.g. 86 for 'js2-LP."
5538 (or (gethash sym js2-token-codes)
5539 (error "Invalid token symbol: %s " sym))) ; signal code bug
5540
5541 (defun js2-report-scan-error (msg &optional no-throw beg len)
5542 (setf (js2-token-end (js2-current-token)) js2-ts-cursor)
5543 (js2-report-error msg nil
5544 (or beg (js2-current-token-beg))
5545 (or len (js2-current-token-len)))
5546 (unless no-throw
5547 (throw 'return js2-ERROR)))
5548
5549 (defun js2-set-string-from-buffer (token)
5550 "Set `string' and `end' slots for TOKEN, return the string."
5551 (setf (js2-token-end token) js2-ts-cursor
5552 (js2-token-string token) (js2-collect-string js2-ts-string-buffer)))
5553
5554 ;; TODO: could potentially avoid a lot of consing by allocating a
5555 ;; char buffer the way Rhino does.
5556 (defsubst js2-add-to-string (c)
5557 (push c js2-ts-string-buffer))
5558
5559 ;; Note that when we "read" the end-of-file, we advance js2-ts-cursor
5560 ;; to (1+ (point-max)), which lets the scanner treat end-of-file like
5561 ;; any other character: when it's not part of the current token, we
5562 ;; unget it, allowing it to be read again by the following call.
5563 (defsubst js2-unget-char ()
5564 (cl-decf js2-ts-cursor))
5565
5566 ;; Rhino distinguishes \r and \n line endings. We don't need to
5567 ;; because we only scan from Emacs buffers, which always use \n.
5568 (defun js2-get-char ()
5569 "Read and return the next character from the input buffer.
5570 Increments `js2-ts-lineno' if the return value is a newline char.
5571 Updates `js2-ts-cursor' to the point after the returned char.
5572 Returns `js2-EOF_CHAR' if we hit the end of the buffer.
5573 Also updates `js2-ts-hit-eof' and `js2-ts-line-start' as needed."
5574 (let (c)
5575 ;; check for end of buffer
5576 (if (>= js2-ts-cursor (point-max))
5577 (setq js2-ts-hit-eof t
5578 js2-ts-cursor (1+ js2-ts-cursor)
5579 c js2-EOF_CHAR) ; return value
5580 ;; otherwise read next char
5581 (setq c (char-before (cl-incf js2-ts-cursor)))
5582 ;; if we read a newline, update counters
5583 (if (= c ?\n)
5584 (setq js2-ts-line-start js2-ts-cursor
5585 js2-ts-lineno (1+ js2-ts-lineno)))
5586 ;; TODO: skip over format characters
5587 c)))
5588
5589 (defun js2-read-unicode-escape ()
5590 "Read a \\uNNNN sequence from the input.
5591 Assumes the ?\ and ?u have already been read.
5592 Returns the unicode character, or nil if it wasn't a valid character.
5593 Doesn't change the values of any scanner variables."
5594 ;; I really wish I knew a better way to do this, but I can't
5595 ;; find the Emacs function that takes a 16-bit int and converts
5596 ;; it to a Unicode/utf-8 character. So I basically eval it with (read).
5597 ;; Have to first check that it's 4 hex characters or it may stop
5598 ;; the read early.
5599 (ignore-errors
5600 (let ((s (buffer-substring-no-properties js2-ts-cursor
5601 (+ 4 js2-ts-cursor))))
5602 (if (string-match "[0-9a-fA-F]\\{4\\}" s)
5603 (read (concat "?\\u" s))))))
5604
5605 (defun js2-match-char (test)
5606 "Consume and return next character if it matches TEST, a character.
5607 Returns nil and consumes nothing if TEST is not the next character."
5608 (let ((c (js2-get-char)))
5609 (if (eq c test)
5610 t
5611 (js2-unget-char)
5612 nil)))
5613
5614 (defun js2-peek-char ()
5615 (prog1
5616 (js2-get-char)
5617 (js2-unget-char)))
5618
5619 (defun js2-identifier-start-p (c)
5620 "Is C a valid start to an ES5 Identifier?
5621 See http://es5.github.io/#x7.6"
5622 (or
5623 (memq c '(?$ ?_))
5624 (memq (get-char-code-property c 'general-category)
5625 ;; Letters
5626 '(Lu Ll Lt Lm Lo Nl))))
5627
5628 (defun js2-identifier-part-p (c)
5629 "Is C a valid part of an ES5 Identifier?
5630 See http://es5.github.io/#x7.6"
5631 (or
5632 (memq c '(?$ ?_ ?\u200c ?\u200d))
5633 (memq (get-char-code-property c 'general-category)
5634 '(;; Letters
5635 Lu Ll Lt Lm Lo Nl
5636 ;; Combining Marks
5637 Mn Mc
5638 ;; Digits
5639 Nd
5640 ;; Connector Punctuation
5641 Pc))))
5642
5643 (defun js2-alpha-p (c)
5644 (cond ((and (<= ?A c) (<= c ?Z)) t)
5645 ((and (<= ?a c) (<= c ?z)) t)
5646 (t nil)))
5647
5648 (defsubst js2-digit-p (c)
5649 (and (<= ?0 c) (<= c ?9)))
5650
5651 (defun js2-js-space-p (c)
5652 (if (<= c 127)
5653 (memq c '(#x20 #x9 #xB #xC #xD))
5654 (or
5655 (eq c #xA0)
5656 ;; TODO: change this nil to check for Unicode space character
5657 nil)))
5658
5659 (defconst js2-eol-chars (list js2-EOF_CHAR ?\n ?\r))
5660
5661 (defun js2-skip-line ()
5662 "Skip to end of line."
5663 (while (not (memq (js2-get-char) js2-eol-chars)))
5664 (js2-unget-char)
5665 (setf (js2-token-end (js2-current-token)) js2-ts-cursor))
5666
5667 (defun js2-init-scanner (&optional buf line)
5668 "Create token stream for BUF starting on LINE.
5669 BUF defaults to `current-buffer' and LINE defaults to 1.
5670
5671 A buffer can only have one scanner active at a time, which yields
5672 dramatically simpler code than using a defstruct. If you need to
5673 have simultaneous scanners in a buffer, copy the regions to scan
5674 into temp buffers."
5675 (with-current-buffer (or buf (current-buffer))
5676 (setq js2-ts-dirty-line nil
5677 js2-ts-hit-eof nil
5678 js2-ts-line-start 0
5679 js2-ts-lineno (or line 1)
5680 js2-ts-line-end-char -1
5681 js2-ts-cursor (point-min)
5682 js2-ti-tokens (make-vector js2-ti-ntokens nil)
5683 js2-ti-tokens-cursor 0
5684 js2-ti-lookahead 0
5685 js2-ts-is-xml-attribute nil
5686 js2-ts-xml-is-tag-content nil
5687 js2-ts-xml-open-tags-count 0
5688 js2-ts-string-buffer nil)))
5689
5690 ;; This function uses the cached op, string and number fields in
5691 ;; TokenStream; if getToken has been called since the passed token
5692 ;; was scanned, the op or string printed may be incorrect.
5693 (defun js2-token-to-string (token)
5694 ;; Not sure where this function is used in Rhino. Not tested.
5695 (if (not js2-debug-print-trees)
5696 ""
5697 (let ((name (js2-tt-name token)))
5698 (cond
5699 ((memq token '(js2-STRING js2-REGEXP js2-NAME
5700 js2-TEMPLATE_HEAD js2-NO_SUBS_TEMPLATE))
5701 (concat name " `" (js2-current-token-string) "'"))
5702 ((eq token js2-NUMBER)
5703 (format "NUMBER %g" (js2-token-number (js2-current-token))))
5704 (t
5705 name)))))
5706
5707 (defconst js2-keywords
5708 '(break
5709 case catch class const continue
5710 debugger default delete do
5711 else extends export
5712 false finally for function
5713 if in instanceof import
5714 let
5715 new null
5716 return
5717 super switch
5718 this throw true try typeof
5719 var void
5720 while with
5721 yield))
5722
5723 ;; Token names aren't exactly the same as the keywords, unfortunately.
5724 ;; E.g. delete is js2-DELPROP.
5725 (defconst js2-kwd-tokens
5726 (let ((table (make-vector js2-num-tokens nil))
5727 (tokens
5728 (list js2-BREAK
5729 js2-CASE js2-CATCH js2-CLASS js2-CONST js2-CONTINUE
5730 js2-DEBUGGER js2-DEFAULT js2-DELPROP js2-DO
5731 js2-ELSE js2-EXPORT
5732 js2-ELSE js2-EXTENDS js2-EXPORT
5733 js2-FALSE js2-FINALLY js2-FOR js2-FUNCTION
5734 js2-IF js2-IN js2-INSTANCEOF js2-IMPORT
5735 js2-LET
5736 js2-NEW js2-NULL
5737 js2-RETURN
5738 js2-SUPER js2-SWITCH
5739 js2-THIS js2-THROW js2-TRUE js2-TRY js2-TYPEOF
5740 js2-VAR
5741 js2-WHILE js2-WITH
5742 js2-YIELD)))
5743 (dolist (i tokens)
5744 (aset table i 'font-lock-keyword-face))
5745 (aset table js2-STRING 'font-lock-string-face)
5746 (aset table js2-REGEXP 'font-lock-string-face)
5747 (aset table js2-NO_SUBS_TEMPLATE 'font-lock-string-face)
5748 (aset table js2-TEMPLATE_HEAD 'font-lock-string-face)
5749 (aset table js2-COMMENT 'font-lock-comment-face)
5750 (aset table js2-THIS 'font-lock-builtin-face)
5751 (aset table js2-SUPER 'font-lock-builtin-face)
5752 (aset table js2-VOID 'font-lock-constant-face)
5753 (aset table js2-NULL 'font-lock-constant-face)
5754 (aset table js2-TRUE 'font-lock-constant-face)
5755 (aset table js2-FALSE 'font-lock-constant-face)
5756 (aset table js2-NOT 'font-lock-negation-char-face)
5757 table)
5758 "Vector whose values are non-nil for tokens that are keywords.
5759 The values are default faces to use for highlighting the keywords.")
5760
5761 ;; FIXME: Support strict mode-only future reserved words, after we know
5762 ;; which parts scopes are in strict mode, and which are not.
5763 (defconst js2-reserved-words '(class enum export extends import static super)
5764 "Future reserved keywords in ECMAScript 5.1.")
5765
5766 (defconst js2-keyword-names
5767 (let ((table (make-hash-table :test 'equal)))
5768 (cl-loop for k in js2-keywords
5769 do (puthash
5770 (symbol-name k) ; instanceof
5771 (intern (concat "js2-"
5772 (upcase (symbol-name k)))) ; js2-INSTANCEOF
5773 table))
5774 table)
5775 "JavaScript keywords by name, mapped to their symbols.")
5776
5777 (defconst js2-reserved-word-names
5778 (let ((table (make-hash-table :test 'equal)))
5779 (cl-loop for k in js2-reserved-words
5780 do
5781 (puthash (symbol-name k) 'js2-RESERVED table))
5782 table)
5783 "JavaScript reserved words by name, mapped to 'js2-RESERVED.")
5784
5785 (defun js2-collect-string (buf)
5786 "Convert BUF, a list of chars, to a string.
5787 Reverses BUF before converting."
5788 (if buf
5789 (apply #'string (nreverse buf))
5790 ""))
5791
5792 (defun js2-string-to-keyword (s)
5793 "Return token for S, a string, if S is a keyword or reserved word.
5794 Returns a symbol such as 'js2-BREAK, or nil if not keyword/reserved."
5795 (or (gethash s js2-keyword-names)
5796 (gethash s js2-reserved-word-names)))
5797
5798 (defsubst js2-ts-set-char-token-bounds (token)
5799 "Used when next token is one character."
5800 (setf (js2-token-beg token) (1- js2-ts-cursor)
5801 (js2-token-end token) js2-ts-cursor))
5802
5803 (defsubst js2-ts-return (token type)
5804 "Update the `end' and `type' slots of TOKEN,
5805 then throw `return' with value TYPE."
5806 (setf (js2-token-end token) js2-ts-cursor
5807 (js2-token-type token) type)
5808 (throw 'return type))
5809
5810 (defun js2-x-digit-to-int (c accumulator)
5811 "Build up a hex number.
5812 If C is a hexadecimal digit, return ACCUMULATOR * 16 plus
5813 corresponding number. Otherwise return -1."
5814 (catch 'return
5815 (catch 'check
5816 ;; Use 0..9 < A..Z < a..z
5817 (cond
5818 ((<= c ?9)
5819 (cl-decf c ?0)
5820 (if (<= 0 c)
5821 (throw 'check nil)))
5822 ((<= c ?F)
5823 (when (<= ?A c)
5824 (cl-decf c (- ?A 10))
5825 (throw 'check nil)))
5826 ((<= c ?f)
5827 (when (<= ?a c)
5828 (cl-decf c (- ?a 10))
5829 (throw 'check nil))))
5830 (throw 'return -1))
5831 (logior c (lsh accumulator 4))))
5832
5833 (defun js2-get-token (&optional modifier)
5834 "If `js2-ti-lookahead' is zero, call scanner to get new token.
5835 Otherwise, move `js2-ti-tokens-cursor' and return the type of
5836 next saved token.
5837
5838 This function will not return a newline (js2-EOL) - instead, it
5839 gobbles newlines until it finds a non-newline token. Call
5840 `js2-peek-token-or-eol' when you care about newlines.
5841
5842 This function will also not return a js2-COMMENT. Instead, it
5843 records comments found in `js2-scanned-comments'. If the token
5844 returned by this function immediately follows a jsdoc comment,
5845 the token is flagged as such."
5846 (if (zerop js2-ti-lookahead)
5847 (js2-get-token-internal modifier)
5848 (cl-decf js2-ti-lookahead)
5849 (setq js2-ti-tokens-cursor (mod (1+ js2-ti-tokens-cursor) js2-ti-ntokens))
5850 (let ((tt (js2-current-token-type)))
5851 (cl-assert (not (= tt js2-EOL)))
5852 tt)))
5853
5854 (defun js2-unget-token ()
5855 (cl-assert (< js2-ti-lookahead js2-ti-max-lookahead))
5856 (cl-incf js2-ti-lookahead)
5857 (setq js2-ti-tokens-cursor (mod (1- js2-ti-tokens-cursor) js2-ti-ntokens)))
5858
5859 (defun js2-get-token-internal (modifier)
5860 (let* ((token (js2-get-token-internal-1 modifier)) ; call scanner
5861 (tt (js2-token-type token))
5862 saw-eol
5863 face)
5864 ;; process comments
5865 (while (or (= tt js2-EOL) (= tt js2-COMMENT))
5866 (if (= tt js2-EOL)
5867 (setq saw-eol t)
5868 (setq saw-eol nil)
5869 (when js2-record-comments
5870 (js2-record-comment token)))
5871 (setq js2-ti-tokens-cursor (mod (1- js2-ti-tokens-cursor) js2-ti-ntokens))
5872 (setq token (js2-get-token-internal-1 modifier) ; call scanner again
5873 tt (js2-token-type token)))
5874
5875 (when saw-eol
5876 (setf (js2-token-follows-eol-p token) t))
5877
5878 ;; perform lexical fontification as soon as token is scanned
5879 (when js2-parse-ide-mode
5880 (cond
5881 ((cl-minusp tt)
5882 (js2-record-face 'js2-error token))
5883 ((setq face (aref js2-kwd-tokens tt))
5884 (js2-record-face face token))
5885 ((and (= tt js2-NAME)
5886 (equal (js2-token-string token) "undefined"))
5887 (js2-record-face 'font-lock-constant-face token))))
5888 tt))
5889
5890 (defsubst js2-string-to-number (str base)
5891 ;; TODO: Maybe port ScriptRuntime.stringToNumber.
5892 (condition-case nil
5893 (string-to-number str base)
5894 (overflow-error -1)))
5895
5896 (defun js2-get-token-internal-1 (modifier)
5897 "Return next JavaScript token type, an int such as js2-RETURN.
5898 During operation, creates an instance of `js2-token' struct, sets
5899 its relevant fields and puts it into `js2-ti-tokens'."
5900 (let (identifier-start
5901 is-unicode-escape-start c
5902 contains-escape escape-val str result base
5903 look-for-slash continue tt legacy-octal
5904 (token (js2-new-token 0)))
5905 (setq
5906 tt
5907 (catch 'return
5908 (when (eq modifier 'TEMPLATE_TAIL)
5909 (setf (js2-token-beg token) (1- js2-ts-cursor))
5910 (throw 'return (js2-get-string-or-template-token ?` token)))
5911 (while t
5912 ;; Eat whitespace, possibly sensitive to newlines.
5913 (setq continue t)
5914 (while continue
5915 (setq c (js2-get-char))
5916 (cond
5917 ((eq c js2-EOF_CHAR)
5918 (js2-unget-char)
5919 (js2-ts-set-char-token-bounds token)
5920 (throw 'return js2-EOF))
5921 ((eq c ?\n)
5922 (js2-ts-set-char-token-bounds token)
5923 (setq js2-ts-dirty-line nil)
5924 (throw 'return js2-EOL))
5925 ((not (js2-js-space-p c))
5926 (if (/= c ?-) ; in case end of HTML comment
5927 (setq js2-ts-dirty-line t))
5928 (setq continue nil))))
5929 ;; Assume the token will be 1 char - fixed up below.
5930 (js2-ts-set-char-token-bounds token)
5931 (when (eq c ?@)
5932 (throw 'return js2-XMLATTR))
5933 ;; identifier/keyword/instanceof?
5934 ;; watch out for starting with a <backslash>
5935 (cond
5936 ((eq c ?\\)
5937 (setq c (js2-get-char))
5938 (if (eq c ?u)
5939 (setq identifier-start t
5940 is-unicode-escape-start t
5941 js2-ts-string-buffer nil)
5942 (setq identifier-start nil)
5943 (js2-unget-char)
5944 (setq c ?\\)))
5945 (t
5946 (when (setq identifier-start (js2-identifier-start-p c))
5947 (setq js2-ts-string-buffer nil)
5948 (js2-add-to-string c))))
5949 (when identifier-start
5950 (setq contains-escape is-unicode-escape-start)
5951 (catch 'break
5952 (while t
5953 (if is-unicode-escape-start
5954 ;; strictly speaking we should probably push-back
5955 ;; all the bad characters if the <backslash>uXXXX
5956 ;; sequence is malformed. But since there isn't a
5957 ;; correct context(is there?) for a bad Unicode
5958 ;; escape sequence in an identifier, we can report
5959 ;; an error here.
5960 (progn
5961 (setq escape-val 0)
5962 (dotimes (_ 4)
5963 (setq c (js2-get-char)
5964 escape-val (js2-x-digit-to-int c escape-val))
5965 ;; Next check takes care of c < 0 and bad escape
5966 (if (cl-minusp escape-val)
5967 (throw 'break nil)))
5968 (if (cl-minusp escape-val)
5969 (js2-report-scan-error "msg.invalid.escape" t))
5970 (js2-add-to-string escape-val)
5971 (setq is-unicode-escape-start nil))
5972 (setq c (js2-get-char))
5973 (cond
5974 ((eq c ?\\)
5975 (setq c (js2-get-char))
5976 (if (eq c ?u)
5977 (setq is-unicode-escape-start t
5978 contains-escape t)
5979 (js2-report-scan-error "msg.illegal.character" t)))
5980 (t
5981 (if (or (eq c js2-EOF_CHAR)
5982 (not (js2-identifier-part-p c)))
5983 (throw 'break nil))
5984 (js2-add-to-string c))))))
5985 (js2-unget-char)
5986 (setf str (js2-collect-string js2-ts-string-buffer)
5987 (js2-token-end token) js2-ts-cursor)
5988 ;; FIXME: Invalid in ES5 and ES6, see
5989 ;; https://bugzilla.mozilla.org/show_bug.cgi?id=694360
5990 ;; Probably should just drop this conditional.
5991 (unless contains-escape
5992 ;; OPT we shouldn't have to make a string (object!) to
5993 ;; check if it's a keyword.
5994 ;; Return the corresponding token if it's a keyword
5995 (when (and (not (eq modifier 'KEYWORD_IS_NAME))
5996 (setq result (js2-string-to-keyword str)))
5997 (if (and (< js2-language-version 170)
5998 (memq result '(js2-LET js2-YIELD)))
5999 ;; LET and YIELD are tokens only in 1.7 and later
6000 (setq result 'js2-NAME))
6001 (when (eq result 'js2-RESERVED)
6002 (setf (js2-token-string token) str))
6003 (throw 'return (js2-tt-code result))))
6004 ;; If we want to intern these as Rhino does, just use (intern str)
6005 (setf (js2-token-string token) str)
6006 (throw 'return js2-NAME)) ; end identifier/kwd check
6007 ;; is it a number?
6008 (when (or (js2-digit-p c)
6009 (and (eq c ?.) (js2-digit-p (js2-peek-char))))
6010 (setq js2-ts-string-buffer nil
6011 base 10)
6012 (when (eq c ?0)
6013 (setq c (js2-get-char))
6014 (cond
6015 ((or (eq c ?x) (eq c ?X))
6016 (setq base 16)
6017 (setq c (js2-get-char)))
6018 ((and (or (eq c ?b) (eq c ?B))
6019 (>= js2-language-version 200))
6020 (setq base 2)
6021 (setq c (js2-get-char)))
6022 ((and (or (eq c ?o) (eq c ?O))
6023 (>= js2-language-version 200))
6024 (setq base 8)
6025 (setq legacy-octal nil)
6026 (setq c (js2-get-char)))
6027 ((js2-digit-p c)
6028 (setq base 'maybe-8))
6029 (t
6030 (js2-add-to-string ?0))))
6031 (cond
6032 ((eq base 16)
6033 (if (> 0 (js2-x-digit-to-int c 0))
6034 (js2-report-scan-error "msg.missing.hex.digits")
6035 (while (<= 0 (js2-x-digit-to-int c 0))
6036 (js2-add-to-string c)
6037 (setq c (js2-get-char)))))
6038 ((eq base 2)
6039 (if (not (memq c '(?0 ?1)))
6040 (js2-report-scan-error "msg.missing.binary.digits")
6041 (while (memq c '(?0 ?1))
6042 (js2-add-to-string c)
6043 (setq c (js2-get-char)))))
6044 ((eq base 8)
6045 (if (or (> ?0 c) (< ?7 c))
6046 (js2-report-scan-error "msg.missing.octal.digits")
6047 (while (and (<= ?0 c) (>= ?7 c))
6048 (js2-add-to-string c)
6049 (setq c (js2-get-char)))))
6050 (t
6051 (while (and (<= ?0 c) (<= c ?9))
6052 ;; We permit 08 and 09 as decimal numbers, which
6053 ;; makes our behavior a superset of the ECMA
6054 ;; numeric grammar. We might not always be so
6055 ;; permissive, so we warn about it.
6056 (when (and (eq base 'maybe-8) (>= c ?8))
6057 (js2-report-warning "msg.bad.octal.literal"
6058 (if (eq c ?8) "8" "9"))
6059 (setq base 10))
6060 (js2-add-to-string c)
6061 (setq c (js2-get-char)))
6062 (when (eq base 'maybe-8)
6063 (setq base 8
6064 legacy-octal t))))
6065 (when (and (eq base 10) (memq c '(?. ?e ?E)))
6066 (when (eq c ?.)
6067 (cl-loop do
6068 (js2-add-to-string c)
6069 (setq c (js2-get-char))
6070 while (js2-digit-p c)))
6071 (when (memq c '(?e ?E))
6072 (js2-add-to-string c)
6073 (setq c (js2-get-char))
6074 (when (memq c '(?+ ?-))
6075 (js2-add-to-string c)
6076 (setq c (js2-get-char)))
6077 (unless (js2-digit-p c)
6078 (js2-report-scan-error "msg.missing.exponent" t))
6079 (cl-loop do
6080 (js2-add-to-string c)
6081 (setq c (js2-get-char))
6082 while (js2-digit-p c))))
6083 (js2-unget-char)
6084 (let ((str (js2-set-string-from-buffer token)))
6085 (setf (js2-token-number token) (js2-string-to-number str base)
6086 (js2-token-number-base token) base
6087 (js2-token-number-legacy-octal-p token) (and (= base 8) legacy-octal)))
6088 (throw 'return js2-NUMBER))
6089 ;; is it a string?
6090 (when (or (memq c '(?\" ?\'))
6091 (and (>= js2-language-version 200)
6092 (= c ?`)))
6093 (throw 'return
6094 (js2-get-string-or-template-token c token)))
6095 (js2-ts-return token
6096 (cl-case c
6097 (?\;
6098 (throw 'return js2-SEMI))
6099 (?\[
6100 (throw 'return js2-LB))
6101 (?\]
6102 (throw 'return js2-RB))
6103 (?{
6104 (throw 'return js2-LC))
6105 (?}
6106 (throw 'return js2-RC))
6107 (?\(
6108 (throw 'return js2-LP))
6109 (?\)
6110 (throw 'return js2-RP))
6111 (?,
6112 (throw 'return js2-COMMA))
6113 (??
6114 (throw 'return js2-HOOK))
6115 (?:
6116 (if (js2-match-char ?:)
6117 js2-COLONCOLON
6118 (throw 'return js2-COLON)))
6119 (?.
6120 (if (js2-match-char ?.)
6121 (if (js2-match-char ?.)
6122 js2-TRIPLEDOT js2-DOTDOT)
6123 (if (js2-match-char ?\()
6124 js2-DOTQUERY
6125 (throw 'return js2-DOT))))
6126 (?|
6127 (if (js2-match-char ?|)
6128 (throw 'return js2-OR)
6129 (if (js2-match-char ?=)
6130 js2-ASSIGN_BITOR
6131 (throw 'return js2-BITOR))))
6132 (?^
6133 (if (js2-match-char ?=)
6134 js2-ASSIGN_BITOR
6135 (throw 'return js2-BITXOR)))
6136 (?&
6137 (if (js2-match-char ?&)
6138 (throw 'return js2-AND)
6139 (if (js2-match-char ?=)
6140 js2-ASSIGN_BITAND
6141 (throw 'return js2-BITAND))))
6142 (?=
6143 (if (js2-match-char ?=)
6144 (if (js2-match-char ?=)
6145 js2-SHEQ
6146 (throw 'return js2-EQ))
6147 (if (js2-match-char ?>)
6148 (js2-ts-return token js2-ARROW)
6149 (throw 'return js2-ASSIGN))))
6150 (?!
6151 (if (js2-match-char ?=)
6152 (if (js2-match-char ?=)
6153 js2-SHNE
6154 js2-NE)
6155 (throw 'return js2-NOT)))
6156 (?<
6157 ;; NB:treat HTML begin-comment as comment-till-eol
6158 (when (js2-match-char ?!)
6159 (when (js2-match-char ?-)
6160 (when (js2-match-char ?-)
6161 (js2-skip-line)
6162 (setf (js2-token-comment-type (js2-current-token)) 'html)
6163 (throw 'return js2-COMMENT)))
6164 (js2-unget-char))
6165 (if (js2-match-char ?<)
6166 (if (js2-match-char ?=)
6167 js2-ASSIGN_LSH
6168 js2-LSH)
6169 (if (js2-match-char ?=)
6170 js2-LE
6171 (throw 'return js2-LT))))
6172 (?>
6173 (if (js2-match-char ?>)
6174 (if (js2-match-char ?>)
6175 (if (js2-match-char ?=)
6176 js2-ASSIGN_URSH
6177 js2-URSH)
6178 (if (js2-match-char ?=)
6179 js2-ASSIGN_RSH
6180 js2-RSH))
6181 (if (js2-match-char ?=)
6182 js2-GE
6183 (throw 'return js2-GT))))
6184 (?*
6185 (if (js2-match-char ?=)
6186 js2-ASSIGN_MUL
6187 (throw 'return js2-MUL)))
6188 (?/
6189 ;; is it a // comment?
6190 (when (js2-match-char ?/)
6191 (setf (js2-token-beg token) (- js2-ts-cursor 2))
6192 (js2-skip-line)
6193 (setf (js2-token-comment-type token) 'line)
6194 ;; include newline so highlighting goes to end of
6195 ;; window, if there actually is a newline; if we
6196 ;; hit eof, then implicitly there isn't
6197 (unless js2-ts-hit-eof
6198 (cl-incf (js2-token-end token)))
6199 (throw 'return js2-COMMENT))
6200 ;; is it a /* comment?
6201 (when (js2-match-char ?*)
6202 (setf look-for-slash nil
6203 (js2-token-beg token) (- js2-ts-cursor 2)
6204 (js2-token-comment-type token)
6205 (if (js2-match-char ?*)
6206 (progn
6207 (setq look-for-slash t)
6208 'jsdoc)
6209 'block))
6210 (while t
6211 (setq c (js2-get-char))
6212 (cond
6213 ((eq c js2-EOF_CHAR)
6214 (setf (js2-token-end token) (1- js2-ts-cursor))
6215 (js2-report-error "msg.unterminated.comment")
6216 (throw 'return js2-COMMENT))
6217 ((eq c ?*)
6218 (setq look-for-slash t))
6219 ((eq c ?/)
6220 (if look-for-slash
6221 (js2-ts-return token js2-COMMENT)))
6222 (t
6223 (setf look-for-slash nil
6224 (js2-token-end token) js2-ts-cursor)))))
6225 (if (js2-match-char ?=)
6226 js2-ASSIGN_DIV
6227 (throw 'return js2-DIV)))
6228 (?#
6229 (when js2-skip-preprocessor-directives
6230 (js2-skip-line)
6231 (setf (js2-token-comment-type token) 'preprocessor
6232 (js2-token-end token) js2-ts-cursor)
6233 (throw 'return js2-COMMENT))
6234 (throw 'return js2-ERROR))
6235 (?%
6236 (if (js2-match-char ?=)
6237 js2-ASSIGN_MOD
6238 (throw 'return js2-MOD)))
6239 (?~
6240 (throw 'return js2-BITNOT))
6241 (?+
6242 (if (js2-match-char ?=)
6243 js2-ASSIGN_ADD
6244 (if (js2-match-char ?+)
6245 js2-INC
6246 (throw 'return js2-ADD))))
6247 (?-
6248 (cond
6249 ((js2-match-char ?=)
6250 (setq c js2-ASSIGN_SUB))
6251 ((js2-match-char ?-)
6252 (unless js2-ts-dirty-line
6253 ;; treat HTML end-comment after possible whitespace
6254 ;; after line start as comment-until-eol
6255 (when (js2-match-char ?>)
6256 (js2-skip-line)
6257 (setf (js2-token-comment-type (js2-current-token)) 'html)
6258 (throw 'return js2-COMMENT)))
6259 (setq c js2-DEC))
6260 (t
6261 (setq c js2-SUB)))
6262 (setq js2-ts-dirty-line t)
6263 c)
6264 (otherwise
6265 (js2-report-scan-error "msg.illegal.character")))))))
6266 (setf (js2-token-type token) tt)
6267 token))
6268
6269 (defun js2-get-string-or-template-token (quote-char token)
6270 ;; We attempt to accumulate a string the fast way, by
6271 ;; building it directly out of the reader. But if there
6272 ;; are any escaped characters in the string, we revert to
6273 ;; building it out of a string buffer.
6274 (let ((c (js2-get-char))
6275 js2-ts-string-buffer
6276 nc c1 val escape-val)
6277 (catch 'break
6278 (while (/= c quote-char)
6279 (catch 'continue
6280 (when (eq c js2-EOF_CHAR)
6281 (js2-unget-char)
6282 (js2-report-error "msg.unterminated.string.lit")
6283 (throw 'break nil))
6284 (when (and (eq c ?\n) (not (eq quote-char ?`)))
6285 (js2-unget-char)
6286 (js2-report-error "msg.unterminated.string.lit")
6287 (throw 'break nil))
6288 (when (eq c ?\\)
6289 ;; We've hit an escaped character
6290 (setq c (js2-get-char))
6291 (cl-case c
6292 (?b (setq c ?\b))
6293 (?f (setq c ?\f))
6294 (?n (setq c ?\n))
6295 (?r (setq c ?\r))
6296 (?t (setq c ?\t))
6297 (?v (setq c ?\v))
6298 (?u
6299 (setq c1 (js2-read-unicode-escape))
6300 (if js2-parse-ide-mode
6301 (if c1
6302 (progn
6303 ;; just copy the string in IDE-mode
6304 (js2-add-to-string ?\\)
6305 (js2-add-to-string ?u)
6306 (dotimes (_ 3)
6307 (js2-add-to-string (js2-get-char)))
6308 (setq c (js2-get-char))) ; added at end of loop
6309 ;; flag it as an invalid escape
6310 (js2-report-warning "msg.invalid.escape"
6311 nil (- js2-ts-cursor 2) 6))
6312 ;; Get 4 hex digits; if the u escape is not
6313 ;; followed by 4 hex digits, use 'u' + the
6314 ;; literal character sequence that follows.
6315 (js2-add-to-string ?u)
6316 (setq escape-val 0)
6317 (dotimes (_ 4)
6318 (setq c (js2-get-char)
6319 escape-val (js2-x-digit-to-int c escape-val))
6320 (if (cl-minusp escape-val)
6321 (throw 'continue nil))
6322 (js2-add-to-string c))
6323 ;; prepare for replace of stored 'u' sequence by escape value
6324 (setq js2-ts-string-buffer (nthcdr 5 js2-ts-string-buffer)
6325 c escape-val)))
6326 (?x
6327 ;; Get 2 hex digits, defaulting to 'x'+literal
6328 ;; sequence, as above.
6329 (setq c (js2-get-char)
6330 escape-val (js2-x-digit-to-int c 0))
6331 (if (cl-minusp escape-val)
6332 (progn
6333 (js2-add-to-string ?x)
6334 (throw 'continue nil))
6335 (setq c1 c
6336 c (js2-get-char)
6337 escape-val (js2-x-digit-to-int c escape-val))
6338 (if (cl-minusp escape-val)
6339 (progn
6340 (js2-add-to-string ?x)
6341 (js2-add-to-string c1)
6342 (throw 'continue nil))
6343 ;; got 2 hex digits
6344 (setq c escape-val))))
6345 (?\n
6346 ;; Remove line terminator after escape to follow
6347 ;; SpiderMonkey and C/C++
6348 (setq c (js2-get-char))
6349 (throw 'continue nil))
6350 (t
6351 (when (and (<= ?0 c) (< c ?8))
6352 (setq val (- c ?0)
6353 c (js2-get-char))
6354 (when (and (<= ?0 c) (< c ?8))
6355 (setq val (- (+ (* 8 val) c) ?0)
6356 c (js2-get-char))
6357 (when (and (<= ?0 c)
6358 (< c ?8)
6359 (< val #o37))
6360 ;; c is 3rd char of octal sequence only
6361 ;; if the resulting val <= 0377
6362 (setq val (- (+ (* 8 val) c) ?0)
6363 c (js2-get-char))))
6364 (js2-unget-char)
6365 (setq c val)))))
6366 (when (and (eq quote-char ?`) (eq c ?$))
6367 (when (eq (setq nc (js2-get-char)) ?\{)
6368 (throw 'break nil))
6369 (js2-unget-char))
6370 (js2-add-to-string c)
6371 (setq c (js2-get-char)))))
6372 (js2-set-string-from-buffer token)
6373 (if (not (eq quote-char ?`))
6374 js2-STRING
6375 (if (and (eq c ?$) (eq nc ?\{))
6376 js2-TEMPLATE_HEAD
6377 js2-NO_SUBS_TEMPLATE))))
6378
6379 (defun js2-read-regexp (start-tt)
6380 "Called by parser when it gets / or /= in literal context."
6381 (let (c err
6382 in-class ; inside a '[' .. ']' character-class
6383 flags
6384 (continue t)
6385 (token (js2-new-token 0)))
6386 (setq js2-ts-string-buffer nil)
6387 (if (eq start-tt js2-ASSIGN_DIV)
6388 ;; mis-scanned /=
6389 (js2-add-to-string ?=)
6390 (if (not (eq start-tt js2-DIV))
6391 (error "failed assertion")))
6392 (while (and (not err)
6393 (or (/= (setq c (js2-get-char)) ?/)
6394 in-class))
6395 (cond
6396 ((or (= c ?\n)
6397 (= c js2-EOF_CHAR))
6398 (setf (js2-token-end token) (1- js2-ts-cursor)
6399 err t
6400 (js2-token-string token) (js2-collect-string js2-ts-string-buffer))
6401 (js2-report-error "msg.unterminated.re.lit"))
6402 (t (cond
6403 ((= c ?\\)
6404 (js2-add-to-string c)
6405 (setq c (js2-get-char)))
6406 ((= c ?\[)
6407 (setq in-class t))
6408 ((= c ?\])
6409 (setq in-class nil)))
6410 (js2-add-to-string c))))
6411 (unless err
6412 (while continue
6413 (cond
6414 ((js2-match-char ?g)
6415 (push ?g flags))
6416 ((js2-match-char ?i)
6417 (push ?i flags))
6418 ((js2-match-char ?m)
6419 (push ?m flags))
6420 ((and (js2-match-char ?u)
6421 (>= js2-language-version 200))
6422 (push ?u flags))
6423 ((and (js2-match-char ?y)
6424 (>= js2-language-version 200))
6425 (push ?y flags))
6426 (t
6427 (setq continue nil))))
6428 (if (js2-alpha-p (js2-peek-char))
6429 (js2-report-scan-error "msg.invalid.re.flag" t
6430 js2-ts-cursor 1))
6431 (js2-set-string-from-buffer token))
6432 (js2-collect-string flags)))
6433
6434 (defun js2-get-first-xml-token ()
6435 (setq js2-ts-xml-open-tags-count 0
6436 js2-ts-is-xml-attribute nil
6437 js2-ts-xml-is-tag-content nil)
6438 (js2-unget-char)
6439 (js2-get-next-xml-token))
6440
6441 (defun js2-xml-discard-string (token)
6442 "Throw away the string in progress and flag an XML parse error."
6443 (setf js2-ts-string-buffer nil
6444 (js2-token-string token) nil)
6445 (js2-report-scan-error "msg.XML.bad.form" t))
6446
6447 (defun js2-get-next-xml-token ()
6448 (setq js2-ts-string-buffer nil) ; for recording the XML
6449 (let ((token (js2-new-token 0))
6450 c result)
6451 (setq result
6452 (catch 'return
6453 (while t
6454 (setq c (js2-get-char))
6455 (cond
6456 ((= c js2-EOF_CHAR)
6457 (throw 'return js2-ERROR))
6458 (js2-ts-xml-is-tag-content
6459 (cl-case c
6460 (?>
6461 (js2-add-to-string c)
6462 (setq js2-ts-xml-is-tag-content nil
6463 js2-ts-is-xml-attribute nil))
6464 (?/
6465 (js2-add-to-string c)
6466 (when (eq ?> (js2-peek-char))
6467 (setq c (js2-get-char))
6468 (js2-add-to-string c)
6469 (setq js2-ts-xml-is-tag-content nil)
6470 (cl-decf js2-ts-xml-open-tags-count)))
6471 (?{
6472 (js2-unget-char)
6473 (js2-set-string-from-buffer token)
6474 (throw 'return js2-XML))
6475 ((?\' ?\")
6476 (js2-add-to-string c)
6477 (unless (js2-read-quoted-string c token)
6478 (throw 'return js2-ERROR)))
6479 (?=
6480 (js2-add-to-string c)
6481 (setq js2-ts-is-xml-attribute t))
6482 ((? ?\t ?\r ?\n)
6483 (js2-add-to-string c))
6484 (t
6485 (js2-add-to-string c)
6486 (setq js2-ts-is-xml-attribute nil)))
6487 (when (and (not js2-ts-xml-is-tag-content)
6488 (zerop js2-ts-xml-open-tags-count))
6489 (js2-set-string-from-buffer token)
6490 (throw 'return js2-XMLEND)))
6491 (t
6492 ;; else not tag content
6493 (cl-case c
6494 (?<
6495 (js2-add-to-string c)
6496 (setq c (js2-peek-char))
6497 (cl-case c
6498 (?!
6499 (setq c (js2-get-char)) ;; skip !
6500 (js2-add-to-string c)
6501 (setq c (js2-peek-char))
6502 (cl-case c
6503 (?-
6504 (setq c (js2-get-char)) ;; skip -
6505 (js2-add-to-string c)
6506 (if (eq c ?-)
6507 (progn
6508 (js2-add-to-string c)
6509 (unless (js2-read-xml-comment token)
6510 (throw 'return js2-ERROR)))
6511 (js2-xml-discard-string token)
6512 (throw 'return js2-ERROR)))
6513 (?\[
6514 (setq c (js2-get-char)) ;; skip [
6515 (js2-add-to-string c)
6516 (if (and (= (js2-get-char) ?C)
6517 (= (js2-get-char) ?D)
6518 (= (js2-get-char) ?A)
6519 (= (js2-get-char) ?T)
6520 (= (js2-get-char) ?A)
6521 (= (js2-get-char) ?\[))
6522 (progn
6523 (js2-add-to-string ?C)
6524 (js2-add-to-string ?D)
6525 (js2-add-to-string ?A)
6526 (js2-add-to-string ?T)
6527 (js2-add-to-string ?A)
6528 (js2-add-to-string ?\[)
6529 (unless (js2-read-cdata token)
6530 (throw 'return js2-ERROR)))
6531 (js2-xml-discard-string token)
6532 (throw 'return js2-ERROR)))
6533 (t
6534 (unless (js2-read-entity token)
6535 (throw 'return js2-ERROR))))
6536 ;; Allow bare CDATA section, e.g.:
6537 ;; let xml = <![CDATA[ foo bar baz ]]>;
6538 (when (zerop js2-ts-xml-open-tags-count)
6539 (throw 'return js2-XMLEND)))
6540 (??
6541 (setq c (js2-get-char)) ;; skip ?
6542 (js2-add-to-string c)
6543 (unless (js2-read-PI token)
6544 (throw 'return js2-ERROR)))
6545 (?/
6546 ;; end tag
6547 (setq c (js2-get-char)) ;; skip /
6548 (js2-add-to-string c)
6549 (when (zerop js2-ts-xml-open-tags-count)
6550 (js2-xml-discard-string token)
6551 (throw 'return js2-ERROR))
6552 (setq js2-ts-xml-is-tag-content t)
6553 (cl-decf js2-ts-xml-open-tags-count))
6554 (t
6555 ;; start tag
6556 (setq js2-ts-xml-is-tag-content t)
6557 (cl-incf js2-ts-xml-open-tags-count))))
6558 (?{
6559 (js2-unget-char)
6560 (js2-set-string-from-buffer token)
6561 (throw 'return js2-XML))
6562 (t
6563 (js2-add-to-string c))))))))
6564 (setf (js2-token-end token) js2-ts-cursor)
6565 (setf (js2-token-type token) result)
6566 result))
6567
6568 (defun js2-read-quoted-string (quote token)
6569 (let (c)
6570 (catch 'return
6571 (while (/= (setq c (js2-get-char)) js2-EOF_CHAR)
6572 (js2-add-to-string c)
6573 (if (eq c quote)
6574 (throw 'return t)))
6575 (js2-xml-discard-string token) ;; throw away string in progress
6576 nil)))
6577
6578 (defun js2-read-xml-comment (token)
6579 (let ((c (js2-get-char)))
6580 (catch 'return
6581 (while (/= c js2-EOF_CHAR)
6582 (catch 'continue
6583 (js2-add-to-string c)
6584 (when (and (eq c ?-) (eq ?- (js2-peek-char)))
6585 (setq c (js2-get-char))
6586 (js2-add-to-string c)
6587 (if (eq (js2-peek-char) ?>)
6588 (progn
6589 (setq c (js2-get-char)) ;; skip >
6590 (js2-add-to-string c)
6591 (throw 'return t))
6592 (throw 'continue nil)))
6593 (setq c (js2-get-char))))
6594 (js2-xml-discard-string token)
6595 nil)))
6596
6597 (defun js2-read-cdata (token)
6598 (let ((c (js2-get-char)))
6599 (catch 'return
6600 (while (/= c js2-EOF_CHAR)
6601 (catch 'continue
6602 (js2-add-to-string c)
6603 (when (and (eq c ?\]) (eq (js2-peek-char) ?\]))
6604 (setq c (js2-get-char))
6605 (js2-add-to-string c)
6606 (if (eq (js2-peek-char) ?>)
6607 (progn
6608 (setq c (js2-get-char)) ;; Skip >
6609 (js2-add-to-string c)
6610 (throw 'return t))
6611 (throw 'continue nil)))
6612 (setq c (js2-get-char))))
6613 (js2-xml-discard-string token)
6614 nil)))
6615
6616 (defun js2-read-entity (token)
6617 (let ((decl-tags 1)
6618 c)
6619 (catch 'return
6620 (while (/= js2-EOF_CHAR (setq c (js2-get-char)))
6621 (js2-add-to-string c)
6622 (cl-case c
6623 (?<
6624 (cl-incf decl-tags))
6625 (?>
6626 (cl-decf decl-tags)
6627 (if (zerop decl-tags)
6628 (throw 'return t)))))
6629 (js2-xml-discard-string token)
6630 nil)))
6631
6632 (defun js2-read-PI (token)
6633 "Scan an XML processing instruction."
6634 (let (c)
6635 (catch 'return
6636 (while (/= js2-EOF_CHAR (setq c (js2-get-char)))
6637 (js2-add-to-string c)
6638 (when (and (eq c ??) (eq (js2-peek-char) ?>))
6639 (setq c (js2-get-char)) ;; Skip >
6640 (js2-add-to-string c)
6641 (throw 'return t)))
6642 (js2-xml-discard-string token)
6643 nil)))
6644
6645 ;;; Highlighting
6646
6647 (defun js2-set-face (beg end face &optional record)
6648 "Fontify a region. If RECORD is non-nil, record for later."
6649 (when (cl-plusp js2-highlight-level)
6650 (setq beg (min (point-max) beg)
6651 beg (max (point-min) beg)
6652 end (min (point-max) end)
6653 end (max (point-min) end))
6654 (if record
6655 (push (list beg end face) js2-mode-fontifications)
6656 (put-text-property beg end 'font-lock-face face))))
6657
6658 (defsubst js2-clear-face (beg end)
6659 (remove-text-properties beg end '(font-lock-face nil
6660 help-echo nil
6661 point-entered nil
6662 cursor-sensor-functions nil
6663 c-in-sws nil)))
6664
6665 (defconst js2-ecma-global-props
6666 (concat "^"
6667 (regexp-opt
6668 '("Infinity" "NaN" "undefined" "arguments") t)
6669 "$")
6670 "Value properties of the Ecma-262 Global Object.
6671 Shown at or above `js2-highlight-level' 2.")
6672
6673 ;; might want to add the name "arguments" to this list?
6674 (defconst js2-ecma-object-props
6675 (concat "^"
6676 (regexp-opt
6677 '("prototype" "__proto__" "__parent__") t)
6678 "$")
6679 "Value properties of the Ecma-262 Object constructor.
6680 Shown at or above `js2-highlight-level' 2.")
6681
6682 (defconst js2-ecma-global-funcs
6683 (concat
6684 "^"
6685 (regexp-opt
6686 '("decodeURI" "decodeURIComponent" "encodeURI" "encodeURIComponent"
6687 "eval" "isFinite" "isNaN" "parseFloat" "parseInt") t)
6688 "$")
6689 "Function properties of the Ecma-262 Global object.
6690 Shown at or above `js2-highlight-level' 2.")
6691
6692 (defconst js2-ecma-number-props
6693 (concat "^"
6694 (regexp-opt '("MAX_VALUE" "MIN_VALUE" "NaN"
6695 "NEGATIVE_INFINITY"
6696 "POSITIVE_INFINITY") t)
6697 "$")
6698 "Properties of the Ecma-262 Number constructor.
6699 Shown at or above `js2-highlight-level' 2.")
6700
6701 (defconst js2-ecma-date-props "^\\(parse\\|UTC\\)$"
6702 "Properties of the Ecma-262 Date constructor.
6703 Shown at or above `js2-highlight-level' 2.")
6704
6705 (defconst js2-ecma-math-props
6706 (concat "^"
6707 (regexp-opt
6708 '("E" "LN10" "LN2" "LOG2E" "LOG10E" "PI" "SQRT1_2" "SQRT2")
6709 t)
6710 "$")
6711 "Properties of the Ecma-262 Math object.
6712 Shown at or above `js2-highlight-level' 2.")
6713
6714 (defconst js2-ecma-math-funcs
6715 (concat "^"
6716 (regexp-opt
6717 '("abs" "acos" "asin" "atan" "atan2" "ceil" "cos" "exp" "floor"
6718 "log" "max" "min" "pow" "random" "round" "sin" "sqrt" "tan") t)
6719 "$")
6720 "Function properties of the Ecma-262 Math object.
6721 Shown at or above `js2-highlight-level' 2.")
6722
6723 (defconst js2-ecma-function-props
6724 (concat
6725 "^"
6726 (regexp-opt
6727 '(;; properties of the Object prototype object
6728 "hasOwnProperty" "isPrototypeOf" "propertyIsEnumerable"
6729 "toLocaleString" "toString" "valueOf"
6730 ;; properties of the Function prototype object
6731 "apply" "call"
6732 ;; properties of the Array prototype object
6733 "concat" "join" "pop" "push" "reverse" "shift" "slice" "sort"
6734 "splice" "unshift"
6735 ;; properties of the String prototype object
6736 "charAt" "charCodeAt" "fromCharCode" "indexOf" "lastIndexOf"
6737 "localeCompare" "match" "replace" "search" "split" "substring"
6738 "toLocaleLowerCase" "toLocaleUpperCase" "toLowerCase"
6739 "toUpperCase"
6740 ;; properties of the Number prototype object
6741 "toExponential" "toFixed" "toPrecision"
6742 ;; properties of the Date prototype object
6743 "getDate" "getDay" "getFullYear" "getHours" "getMilliseconds"
6744 "getMinutes" "getMonth" "getSeconds" "getTime"
6745 "getTimezoneOffset" "getUTCDate" "getUTCDay" "getUTCFullYear"
6746 "getUTCHours" "getUTCMilliseconds" "getUTCMinutes" "getUTCMonth"
6747 "getUTCSeconds" "setDate" "setFullYear" "setHours"
6748 "setMilliseconds" "setMinutes" "setMonth" "setSeconds" "setTime"
6749 "setUTCDate" "setUTCFullYear" "setUTCHours" "setUTCMilliseconds"
6750 "setUTCMinutes" "setUTCMonth" "setUTCSeconds" "toDateString"
6751 "toLocaleDateString" "toLocaleString" "toLocaleTimeString"
6752 "toTimeString" "toUTCString"
6753 ;; properties of the RegExp prototype object
6754 "exec" "test"
6755 ;; properties of the JSON prototype object
6756 "parse" "stringify"
6757 ;; SpiderMonkey/Rhino extensions, versions 1.5+
6758 "toSource" "__defineGetter__" "__defineSetter__"
6759 "__lookupGetter__" "__lookupSetter__" "__noSuchMethod__"
6760 "every" "filter" "forEach" "lastIndexOf" "map" "some")
6761 t)
6762 "$")
6763 "Built-in functions defined by Ecma-262 and SpiderMonkey extensions.
6764 Shown at or above `js2-highlight-level' 3.")
6765
6766 (defun js2-parse-highlight-prop-get (parent target prop call-p)
6767 (let ((target-name (and target
6768 (js2-name-node-p target)
6769 (js2-name-node-name target)))
6770 (prop-name (if prop (js2-name-node-name prop)))
6771 (level2 (>= js2-highlight-level 2))
6772 (level3 (>= js2-highlight-level 3)))
6773 (when level2
6774 (let ((face
6775 (if call-p
6776 (cond
6777 ((and target prop)
6778 (cond
6779 ((and level3 (string-match js2-ecma-function-props prop-name))
6780 'font-lock-builtin-face)
6781 ((and target-name prop)
6782 (cond
6783 ((string= target-name "Date")
6784 (if (string-match js2-ecma-date-props prop-name)
6785 'font-lock-builtin-face))
6786 ((string= target-name "Math")
6787 (if (string-match js2-ecma-math-funcs prop-name)
6788 'font-lock-builtin-face))))))
6789 (prop
6790 (if (string-match js2-ecma-global-funcs prop-name)
6791 'font-lock-builtin-face)))
6792 (cond
6793 ((and target prop)
6794 (cond
6795 ((string= target-name "Number")
6796 (if (string-match js2-ecma-number-props prop-name)
6797 'font-lock-constant-face))
6798 ((string= target-name "Math")
6799 (if (string-match js2-ecma-math-props prop-name)
6800 'font-lock-constant-face))))
6801 (prop
6802 (if (string-match js2-ecma-object-props prop-name)
6803 'font-lock-constant-face))))))
6804 (when (and (not face) target (not call-p) prop-name)
6805 (setq face 'js2-object-property))
6806 (when face
6807 (let ((pos (+ (js2-node-pos parent) ; absolute
6808 (js2-node-pos prop)))) ; relative
6809 (js2-set-face pos
6810 (+ pos (js2-node-len prop))
6811 face 'record)))))))
6812
6813 (defun js2-parse-highlight-member-expr-node (node)
6814 "Perform syntax highlighting of EcmaScript built-in properties.
6815 The variable `js2-highlight-level' governs this highlighting."
6816 (let (face target prop name pos end parent call-p callee)
6817 (cond
6818 ;; case 1: simple name, e.g. foo
6819 ((js2-name-node-p node)
6820 (setq name (js2-name-node-name node))
6821 ;; possible for name to be nil in rare cases - saw it when
6822 ;; running js2-mode on an elisp buffer. Might as well try to
6823 ;; make it so js2-mode never barfs.
6824 (when name
6825 (setq face (if (string-match js2-ecma-global-props name)
6826 'font-lock-constant-face))
6827 (when face
6828 (setq pos (js2-node-pos node)
6829 end (+ pos (js2-node-len node)))
6830 (js2-set-face pos end face 'record))))
6831 ;; case 2: property access or function call
6832 ((or (js2-prop-get-node-p node)
6833 ;; highlight function call if expr is a prop-get node
6834 ;; or a plain name (i.e. unqualified function call)
6835 (and (setq call-p (js2-call-node-p node))
6836 (setq callee (js2-call-node-target node)) ; separate setq!
6837 (or (js2-prop-get-node-p callee)
6838 (js2-name-node-p callee))))
6839 (setq parent node
6840 node (if call-p callee node))
6841 (if (and call-p (js2-name-node-p callee))
6842 (setq prop callee)
6843 (setq target (js2-prop-get-node-left node)
6844 prop (js2-prop-get-node-right node)))
6845 (cond
6846 ((js2-name-node-p prop)
6847 ;; case 2(a&c): simple or complex target, simple name, e.g. x[y].bar
6848 (js2-parse-highlight-prop-get parent target prop call-p))
6849 ((js2-name-node-p target)
6850 ;; case 2b: simple target, complex name, e.g. foo.x[y]
6851 (js2-parse-highlight-prop-get parent target nil call-p)))))))
6852
6853 (defun js2-parse-highlight-member-expr-fn-name (expr)
6854 "Highlight the `baz' in function foo.bar.baz(args) {...}.
6855 This is experimental Rhino syntax. EXPR is the foo.bar.baz member expr.
6856 We currently only handle the case where the last component is a prop-get
6857 of a simple name. Called before EXPR has a parent node."
6858 (let (pos
6859 (name (and (js2-prop-get-node-p expr)
6860 (js2-prop-get-node-right expr))))
6861 (when (js2-name-node-p name)
6862 (js2-set-face (setq pos (+ (js2-node-pos expr) ; parent is absolute
6863 (js2-node-pos name)))
6864 (+ pos (js2-node-len name))
6865 'font-lock-function-name-face
6866 'record))))
6867
6868 ;; source: http://jsdoc.sourceforge.net/
6869 ;; Note - this syntax is for Google's enhanced jsdoc parser that
6870 ;; allows type specifications, and needs work before entering the wild.
6871
6872 (defconst js2-jsdoc-param-tag-regexp
6873 (concat "^\\s-*\\*+\\s-*\\(@"
6874 "\\(?:param\\|arg\\(?:ument\\)?\\|prop\\(?:erty\\)?\\)"
6875 "\\)"
6876 "\\s-*\\({[^}]+}\\)?" ; optional type
6877 "\\s-*\\[?\\([[:alnum:]_$\.]+\\)?\\]?" ; name
6878 "\\_>")
6879 "Matches jsdoc tags with optional type and optional param name.")
6880
6881 (defconst js2-jsdoc-typed-tag-regexp
6882 (concat "^\\s-*\\*+\\s-*\\(@\\(?:"
6883 (regexp-opt
6884 '("enum"
6885 "extends"
6886 "field"
6887 "id"
6888 "implements"
6889 "lends"
6890 "mods"
6891 "requires"
6892 "return"
6893 "returns"
6894 "throw"
6895 "throws"))
6896 "\\)\\)\\s-*\\({[^}]+}\\)?")
6897 "Matches jsdoc tags with optional type.")
6898
6899 (defconst js2-jsdoc-arg-tag-regexp
6900 (concat "^\\s-*\\*+\\s-*\\(@\\(?:"
6901 (regexp-opt
6902 '("alias"
6903 "augments"
6904 "borrows"
6905 "bug"
6906 "base"
6907 "config"
6908 "default"
6909 "define"
6910 "exception"
6911 "function"
6912 "member"
6913 "memberOf"
6914 "name"
6915 "namespace"
6916 "since"
6917 "suppress"
6918 "this"
6919 "throws"
6920 "type"
6921 "version"))
6922 "\\)\\)\\s-+\\([^ \t]+\\)")
6923 "Matches jsdoc tags with a single argument.")
6924
6925 (defconst js2-jsdoc-empty-tag-regexp
6926 (concat "^\\s-*\\*+\\s-*\\(@\\(?:"
6927 (regexp-opt
6928 '("addon"
6929 "author"
6930 "class"
6931 "const"
6932 "constant"
6933 "constructor"
6934 "constructs"
6935 "deprecated"
6936 "desc"
6937 "description"
6938 "event"
6939 "example"
6940 "exec"
6941 "export"
6942 "fileoverview"
6943 "final"
6944 "function"
6945 "hidden"
6946 "ignore"
6947 "implicitCast"
6948 "inheritDoc"
6949 "inner"
6950 "interface"
6951 "license"
6952 "noalias"
6953 "noshadow"
6954 "notypecheck"
6955 "override"
6956 "owner"
6957 "preserve"
6958 "preserveTry"
6959 "private"
6960 "protected"
6961 "public"
6962 "static"
6963 "supported"
6964 ))
6965 "\\)\\)\\s-*")
6966 "Matches empty jsdoc tags.")
6967
6968 (defconst js2-jsdoc-link-tag-regexp
6969 "{\\(@\\(?:link\\|code\\)\\)\\s-+\\([^#}\n]+\\)\\(#.+\\)?}"
6970 "Matches a jsdoc link or code tag.")
6971
6972 (defconst js2-jsdoc-see-tag-regexp
6973 "^\\s-*\\*+\\s-*\\(@see\\)\\s-+\\([^#}\n]+\\)\\(#.+\\)?"
6974 "Matches a jsdoc @see tag.")
6975
6976 (defconst js2-jsdoc-html-tag-regexp
6977 "\\(</?\\)\\([[:alpha:]]+\\)\\s-*\\(/?>\\)"
6978 "Matches a simple (no attributes) html start- or end-tag.")
6979
6980 (defun js2-jsdoc-highlight-helper ()
6981 (js2-set-face (match-beginning 1)
6982 (match-end 1)
6983 'js2-jsdoc-tag)
6984 (if (match-beginning 2)
6985 (if (save-excursion
6986 (goto-char (match-beginning 2))
6987 (= (char-after) ?{))
6988 (js2-set-face (1+ (match-beginning 2))
6989 (1- (match-end 2))
6990 'js2-jsdoc-type)
6991 (js2-set-face (match-beginning 2)
6992 (match-end 2)
6993 'js2-jsdoc-value)))
6994 (if (match-beginning 3)
6995 (js2-set-face (match-beginning 3)
6996 (match-end 3)
6997 'js2-jsdoc-value)))
6998
6999 (defun js2-highlight-jsdoc (ast)
7000 "Highlight doc comment tags."
7001 (let ((comments (js2-ast-root-comments ast))
7002 beg end)
7003 (save-excursion
7004 (dolist (node comments)
7005 (when (eq (js2-comment-node-format node) 'jsdoc)
7006 (setq beg (js2-node-abs-pos node)
7007 end (+ beg (js2-node-len node)))
7008 (save-restriction
7009 (narrow-to-region beg end)
7010 (dolist (re (list js2-jsdoc-param-tag-regexp
7011 js2-jsdoc-typed-tag-regexp
7012 js2-jsdoc-arg-tag-regexp
7013 js2-jsdoc-link-tag-regexp
7014 js2-jsdoc-see-tag-regexp
7015 js2-jsdoc-empty-tag-regexp))
7016 (goto-char beg)
7017 (while (re-search-forward re nil t)
7018 (js2-jsdoc-highlight-helper)))
7019 ;; simple highlighting for html tags
7020 (goto-char beg)
7021 (while (re-search-forward js2-jsdoc-html-tag-regexp nil t)
7022 (js2-set-face (match-beginning 1)
7023 (match-end 1)
7024 'js2-jsdoc-html-tag-delimiter)
7025 (js2-set-face (match-beginning 2)
7026 (match-end 2)
7027 'js2-jsdoc-html-tag-name)
7028 (js2-set-face (match-beginning 3)
7029 (match-end 3)
7030 'js2-jsdoc-html-tag-delimiter))))))))
7031
7032 (defun js2-highlight-assign-targets (_node left right)
7033 "Highlight function properties and external variables."
7034 (let (leftpos name)
7035 ;; highlight vars and props assigned function values
7036 (when (or (js2-function-node-p right)
7037 (js2-class-node-p right))
7038 (cond
7039 ;; var foo = function() {...}
7040 ((js2-name-node-p left)
7041 (setq name left))
7042 ;; foo.bar.baz = function() {...}
7043 ((and (js2-prop-get-node-p left)
7044 (js2-name-node-p (js2-prop-get-node-right left)))
7045 (setq name (js2-prop-get-node-right left))))
7046 (when name
7047 (js2-set-face (setq leftpos (js2-node-abs-pos name))
7048 (+ leftpos (js2-node-len name))
7049 'font-lock-function-name-face
7050 'record)))))
7051
7052 (defun js2-record-name-node (node)
7053 "Saves NODE to `js2-recorded-identifiers' to check for undeclared variables
7054 later. NODE must be a name node."
7055 (let ((leftpos (js2-node-abs-pos node)))
7056 (push (list node js2-current-scope
7057 leftpos
7058 (+ leftpos (js2-node-len node)))
7059 js2-recorded-identifiers)))
7060
7061 (defun js2-highlight-undeclared-vars ()
7062 "After entire parse is finished, look for undeclared variable references.
7063 We have to wait until entire buffer is parsed, since JavaScript permits var
7064 decls to occur after they're used.
7065
7066 If any undeclared var name is in `js2-externs' or `js2-additional-externs',
7067 it is considered declared."
7068 (let (name)
7069 (dolist (entry js2-recorded-identifiers)
7070 (cl-destructuring-bind (name-node scope pos end) entry
7071 (setq name (js2-name-node-name name-node))
7072 (unless (or (member name js2-global-externs)
7073 (member name js2-default-externs)
7074 (member name js2-additional-externs)
7075 (js2-get-defining-scope scope name pos))
7076 (js2-report-warning "msg.undeclared.variable" name pos (- end pos)
7077 'js2-external-variable))))))
7078
7079 (defun js2--add-or-update-symbol (symbol inition used vars)
7080 "Add or update SYMBOL entry in VARS, an hash table.
7081 SYMBOL is a js2-name-node, INITION either nil, t, or ?P,
7082 respectively meaning that SYMBOL is a mere declaration, an
7083 assignment or a function parameter; when USED is t, the symbol
7084 node is assumed to be an usage and thus added to the list stored
7085 in the cdr of the entry.
7086 "
7087 (let* ((nm (js2-name-node-name symbol))
7088 (es (js2-node-get-enclosing-scope symbol))
7089 (ds (js2-get-defining-scope es nm)))
7090 (when (and ds (not (equal nm "arguments")))
7091 (let* ((sym (js2-scope-get-symbol ds nm))
7092 (var (gethash sym vars))
7093 (err-var-p (js2-catch-node-p ds)))
7094 (unless inition
7095 (setq inition err-var-p))
7096 (if var
7097 (progn
7098 (when (and inition (not (equal (car var) ?P)))
7099 (setcar var inition))
7100 (when used
7101 (push symbol (cdr var))))
7102 ;; do not consider the declaration of catch parameter as an usage
7103 (when (and err-var-p used)
7104 (setq used nil))
7105 (puthash sym (cons inition (if used (list symbol))) vars))))))
7106
7107 (defun js2--classify-variables ()
7108 "Collect and classify variables declared or used within js2-mode-ast.
7109 Traverse the whole ast tree returning a summary of the variables
7110 usage as an hash-table, keyed by their corresponding symbol table
7111 entry.
7112 Each variable is described by a tuple where the car is a flag
7113 indicating whether the variable has been initialized and the cdr
7114 is a possibly empty list of name nodes where it is used. External
7115 symbols, i.e. those not present in the whole scopes hierarchy,
7116 are ignored."
7117 (let ((vars (make-hash-table :test #'eq :size 100)))
7118 (js2-visit-ast
7119 js2-mode-ast
7120 (lambda (node end-p)
7121 (when (null end-p)
7122 (cond
7123 ((js2-var-init-node-p node)
7124 ;; take note about possibly initialized declarations
7125 (let ((target (js2-var-init-node-target node))
7126 (initializer (js2-var-init-node-initializer node)))
7127 (when target
7128 (let* ((parent (js2-node-parent node))
7129 (grandparent (if parent (js2-node-parent parent)))
7130 (inited (not (null initializer))))
7131 (unless inited
7132 (setq inited
7133 (and grandparent
7134 (js2-for-in-node-p grandparent)
7135 (memq target
7136 (mapcar #'js2-var-init-node-target
7137 (js2-var-decl-node-kids
7138 (js2-for-in-node-iterator grandparent)))))))
7139 (js2--add-or-update-symbol target inited nil vars)))))
7140
7141 ((js2-assign-node-p node)
7142 ;; take note about assignments
7143 (let ((left (js2-assign-node-left node)))
7144 (when (js2-name-node-p left)
7145 (js2--add-or-update-symbol left t nil vars))))
7146
7147 ((js2-prop-get-node-p node)
7148 ;; handle x.y.z nodes, considering only x
7149 (let ((left (js2-prop-get-node-left node)))
7150 (when (js2-name-node-p left)
7151 (js2--add-or-update-symbol left nil t vars))))
7152
7153 ((js2-name-node-p node)
7154 ;; take note about used variables
7155 (let ((parent (js2-node-parent node)))
7156 (when parent
7157 (unless (or (and (js2-var-init-node-p parent) ; handled above
7158 (eq node (js2-var-init-node-target parent)))
7159 (and (js2-assign-node-p parent)
7160 (eq node (js2-assign-node-left parent)))
7161 (js2-prop-get-node-p parent))
7162 (let ((used t) inited)
7163 (cond
7164 ((and (js2-function-node-p parent)
7165 (js2-wrapper-function-p parent))
7166 (setq inited (if (memq node (js2-function-node-params parent)) ?P t)))
7167
7168 ((js2-for-in-node-p parent)
7169 (if (eq node (js2-for-in-node-iterator parent))
7170 (setq inited t used nil)))
7171
7172 ((js2-function-node-p parent)
7173 (setq inited (if (memq node (js2-function-node-params parent)) ?P t)
7174 used nil)))
7175
7176 (unless used
7177 (let ((grandparent (js2-node-parent parent)))
7178 (when grandparent
7179 (setq used (js2-return-node-p grandparent)))))
7180
7181 (js2--add-or-update-symbol node inited used vars))))))))
7182 t))
7183 vars))
7184
7185 (defun js2--get-name-node (node)
7186 (cond
7187 ((js2-name-node-p node) node)
7188 ((js2-function-node-p node)
7189 (js2-function-node-name node))
7190 ((js2-class-node-p node)
7191 (js2-class-node-name node))
7192 ((js2-comp-loop-node-p node)
7193 (js2-comp-loop-node-iterator node))
7194 (t node)))
7195
7196 (defun js2--highlight-unused-variable (symbol info)
7197 (let ((name (js2-symbol-name symbol))
7198 (inited (car info))
7199 (refs (cdr info))
7200 pos len)
7201 (unless (and inited refs)
7202 (if refs
7203 (dolist (ref refs)
7204 (setq pos (js2-node-abs-pos ref))
7205 (setq len (js2-name-node-len ref))
7206 (js2-report-warning "msg.uninitialized.variable" name pos len
7207 'js2-warning))
7208 (when (or js2-warn-about-unused-function-arguments
7209 (not (eq inited ?P)))
7210 (let* ((symn (js2-symbol-ast-node symbol))
7211 (namen (js2--get-name-node symn)))
7212 (unless (js2-node-top-level-decl-p namen)
7213 (setq pos (js2-node-abs-pos namen))
7214 (setq len (js2-name-node-len namen))
7215 (js2-report-warning "msg.unused.variable" name pos len
7216 'js2-warning))))))))
7217
7218 (defun js2-highlight-unused-variables ()
7219 "Highlight unused variables."
7220 (let ((vars (js2--classify-variables)))
7221 (maphash #'js2--highlight-unused-variable vars)))
7222
7223 ;;;###autoload
7224 (define-minor-mode js2-highlight-unused-variables-mode
7225 "Toggle highlight of unused variables."
7226 :lighter ""
7227 (if js2-highlight-unused-variables-mode
7228 (add-hook 'js2-post-parse-callbacks
7229 #'js2-highlight-unused-variables nil t)
7230 (remove-hook 'js2-post-parse-callbacks
7231 #'js2-highlight-unused-variables t)))
7232
7233 (defun js2-set-default-externs ()
7234 "Set the value of `js2-default-externs' based on the various
7235 `js2-include-?-externs' variables."
7236 (setq js2-default-externs
7237 (append js2-ecma-262-externs
7238 (if js2-include-browser-externs js2-browser-externs)
7239 (if (and js2-include-browser-externs
7240 (>= js2-language-version 200)) js2-harmony-externs)
7241 (if js2-include-rhino-externs js2-rhino-externs)
7242 (if js2-include-node-externs js2-node-externs)
7243 (if (or js2-include-browser-externs js2-include-node-externs)
7244 js2-typed-array-externs))))
7245
7246 (defun js2-apply-jslint-globals ()
7247 (setq js2-additional-externs
7248 (nconc (js2-get-jslint-globals)
7249 js2-additional-externs)))
7250
7251 (defun js2-get-jslint-globals ()
7252 (cl-loop for node in (js2-ast-root-comments js2-mode-ast)
7253 when (and (eq 'block (js2-comment-node-format node))
7254 (save-excursion
7255 (goto-char (js2-node-abs-pos node))
7256 (looking-at "/\\*global ")))
7257 append (js2-get-jslint-globals-in
7258 (match-end 0)
7259 (js2-node-abs-end node))))
7260
7261 (defun js2-get-jslint-globals-in (beg end)
7262 (let (res)
7263 (save-excursion
7264 (goto-char beg)
7265 (while (re-search-forward js2-mode-identifier-re end t)
7266 (let ((match (match-string 0)))
7267 (unless (member match '("true" "false"))
7268 (push match res)))))
7269 (nreverse res)))
7270
7271 ;;; IMenu support
7272
7273 ;; We currently only support imenu, but eventually should support speedbar and
7274 ;; possibly other browsing mechanisms.
7275
7276 ;; The basic strategy is to identify function assignment targets of the form
7277 ;; `foo.bar.baz', convert them to (list fn foo bar baz <position>), and push the
7278 ;; list into `js2-imenu-recorder'. The lists are merged into a trie-like tree
7279 ;; for imenu after parsing is finished.
7280
7281 ;; A `foo.bar.baz' assignment target may be expressed in many ways in
7282 ;; JavaScript, and the general problem is undecidable. However, several forms
7283 ;; are readily recognizable at parse-time; the forms we attempt to recognize
7284 ;; include:
7285
7286 ;; function foo() -- function declaration
7287 ;; foo = function() -- function expression assigned to variable
7288 ;; foo.bar.baz = function() -- function expr assigned to nested property-get
7289 ;; foo = {bar: function()} -- fun prop in object literal assigned to var
7290 ;; foo = {bar: {baz: function()}} -- inside nested object literal
7291 ;; foo.bar = {baz: function()}} -- obj lit assigned to nested prop get
7292 ;; a.b = {c: {d: function()}} -- nested obj lit assigned to nested prop get
7293 ;; foo = {get bar() {...}} -- getter/setter in obj literal
7294 ;; function foo() {function bar() {...}} -- nested function
7295 ;; foo['a'] = function() -- fun expr assigned to deterministic element-get
7296
7297 ;; This list boils down to a few forms that can be combined recursively.
7298 ;; Top-level named function declarations include both the left-hand (name)
7299 ;; and the right-hand (function value) expressions needed to produce an imenu
7300 ;; entry. The other "right-hand" forms we need to look for are:
7301 ;; - functions declared as props/getters/setters in object literals
7302 ;; - nested named function declarations
7303 ;; The "left-hand" expressions that functions can be assigned to include:
7304 ;; - local/global variables
7305 ;; - nested property-get expressions like a.b.c.d
7306 ;; - element gets like foo[10] or foo['bar'] where the index
7307 ;; expression can be trivially converted to a property name. They
7308 ;; effectively then become property gets.
7309
7310 ;; All the different definition types are canonicalized into the form
7311 ;; foo.bar.baz = position-of-function-keyword
7312
7313 ;; We need to build a trie-like structure for imenu. As an example,
7314 ;; consider the following JavaScript code:
7315
7316 ;; a = function() {...} // function at position 5
7317 ;; b = function() {...} // function at position 25
7318 ;; foo = function() {...} // function at position 100
7319 ;; foo.bar = function() {...} // function at position 200
7320 ;; foo.bar.baz = function() {...} // function at position 300
7321 ;; foo.bar.zab = function() {...} // function at position 400
7322
7323 ;; During parsing we accumulate an entry for each definition in
7324 ;; the variable `js2-imenu-recorder', like so:
7325
7326 ;; '((fn a 5)
7327 ;; (fn b 25)
7328 ;; (fn foo 100)
7329 ;; (fn foo bar 200)
7330 ;; (fn foo bar baz 300)
7331 ;; (fn foo bar zab 400))
7332
7333 ;; Where 'fn' is the respective function node.
7334 ;; After parsing these entries are merged into this alist-trie:
7335
7336 ;; '((a . 1)
7337 ;; (b . 2)
7338 ;; (foo (<definition> . 3)
7339 ;; (bar (<definition> . 6)
7340 ;; (baz . 100)
7341 ;; (zab . 200))))
7342
7343 ;; Note the wacky need for a <definition> name. The token can be anything
7344 ;; that isn't a valid JavaScript identifier, because you might make foo
7345 ;; a function and then start setting properties on it that are also functions.
7346
7347 (defun js2-prop-node-name (node)
7348 "Return the name of a node that may be a property-get/property-name.
7349 If NODE is not a valid name-node, string-node or integral number-node,
7350 returns nil. Otherwise returns the string name/value of the node."
7351 (cond
7352 ((js2-name-node-p node)
7353 (js2-name-node-name node))
7354 ((js2-string-node-p node)
7355 (js2-string-node-value node))
7356 ((and (js2-number-node-p node)
7357 (string-match "^[0-9]+$" (js2-number-node-value node)))
7358 (js2-number-node-value node))
7359 ((eq (js2-node-type node) js2-THIS)
7360 "this")
7361 ((eq (js2-node-type node) js2-SUPER)
7362 "super")))
7363
7364 (defun js2-node-qname-component (node)
7365 "Return the name of this node, if it contributes to a qname.
7366 Returns nil if the node doesn't contribute."
7367 (copy-sequence
7368 (or (js2-prop-node-name node)
7369 (if (and (js2-function-node-p node)
7370 (js2-function-node-name node))
7371 (js2-name-node-name (js2-function-node-name node))))))
7372
7373 (defun js2-record-imenu-entry (fn-node qname pos)
7374 "Add an entry to `js2-imenu-recorder'.
7375 FN-NODE should be the current item's function node.
7376
7377 Associate FN-NODE with its QNAME for later lookup.
7378 This is used in postprocessing the chain list. For each chain, we find
7379 the parent function, look up its qname, then prepend a copy of it to the chain."
7380 (push (cons fn-node (append qname (list pos))) js2-imenu-recorder)
7381 (unless js2-imenu-function-map
7382 (setq js2-imenu-function-map (make-hash-table :test 'eq)))
7383 (puthash fn-node qname js2-imenu-function-map))
7384
7385 (defun js2-record-imenu-functions (node &optional var)
7386 "Record function definitions for imenu.
7387 NODE is a function node or an object literal.
7388 VAR, if non-nil, is the expression that NODE is being assigned to.
7389 When passed arguments of wrong type, does nothing."
7390 (when js2-parse-ide-mode
7391 (let ((fun-p (js2-function-node-p node))
7392 qname fname-node)
7393 (cond
7394 ;; non-anonymous function declaration?
7395 ((and fun-p
7396 (not var)
7397 (setq fname-node (js2-function-node-name node)))
7398 (js2-record-imenu-entry node (list fname-node) (js2-node-pos node)))
7399 ;; for remaining forms, compute left-side tree branch first
7400 ((and var (setq qname (js2-compute-nested-prop-get var)))
7401 (cond
7402 ;; foo.bar.baz = function
7403 (fun-p
7404 (js2-record-imenu-entry node qname (js2-node-pos node)))
7405 ;; foo.bar.baz = object-literal
7406 ;; look for nested functions: {a: {b: function() {...} }}
7407 ((js2-object-node-p node)
7408 ;; Node position here is still absolute, since the parser
7409 ;; passes the assignment target and value expressions
7410 ;; to us before they are added as children of the assignment node.
7411 (js2-record-object-literal node qname (js2-node-pos node)))))))))
7412
7413 (defun js2-compute-nested-prop-get (node)
7414 "If NODE is of form foo.bar, foo['bar'], or any nested combination, return
7415 component nodes as a list. Otherwise return nil. Element-gets are treated
7416 as property-gets if the index expression is a string, or a positive integer."
7417 (let (left right head)
7418 (cond
7419 ((or (js2-name-node-p node)
7420 (js2-this-or-super-node-p node))
7421 (list node))
7422 ;; foo.bar.baz is parenthesized as (foo.bar).baz => right operand is a leaf
7423 ((js2-prop-get-node-p node) ; foo.bar
7424 (setq left (js2-prop-get-node-left node)
7425 right (js2-prop-get-node-right node))
7426 (if (setq head (js2-compute-nested-prop-get left))
7427 (nconc head (list right))))
7428 ((js2-elem-get-node-p node) ; foo['bar'] or foo[101]
7429 (setq left (js2-elem-get-node-target node)
7430 right (js2-elem-get-node-element node))
7431 (if (or (js2-string-node-p right) ; ['bar']
7432 (and (js2-number-node-p right) ; [10]
7433 (string-match "^[0-9]+$"
7434 (js2-number-node-value right))))
7435 (if (setq head (js2-compute-nested-prop-get left))
7436 (nconc head (list right))))))))
7437
7438 (defun js2-record-object-literal (node qname pos)
7439 "Recursively process an object literal looking for functions.
7440 NODE is an object literal that is the right-hand child of an assignment
7441 expression. QNAME is a list of nodes representing the assignment target,
7442 e.g. for foo.bar.baz = {...}, QNAME is (foo-node bar-node baz-node).
7443 POS is the absolute position of the node.
7444 We do a depth-first traversal of NODE. For any functions we find,
7445 we append the property name to QNAME, then call `js2-record-imenu-entry'."
7446 (let (right)
7447 (dolist (e (js2-object-node-elems node)) ; e is a `js2-object-prop-node'
7448 (when (js2-infix-node-p e)
7449 (let ((left (js2-infix-node-left e))
7450 ;; Element positions are relative to the parent position.
7451 (pos (+ pos (js2-node-pos e))))
7452 (cond
7453 ;; foo: function() {...}
7454 ((js2-function-node-p (setq right (js2-infix-node-right e)))
7455 (when (js2-prop-node-name left)
7456 ;; As a policy decision, we record the position of the property,
7457 ;; not the position of the `function' keyword, since the property
7458 ;; is effectively the name of the function.
7459 (js2-record-imenu-entry right (append qname (list left)) pos)))
7460 ;; foo: {object-literal} -- add foo to qname, offset position, and recurse
7461 ((js2-object-node-p right)
7462 (js2-record-object-literal right
7463 (append qname (list (js2-infix-node-left e)))
7464 (+ pos (js2-node-pos right))))))))))
7465
7466 (defun js2-node-top-level-decl-p (node)
7467 "Return t if NODE's name is defined in the top-level scope.
7468 Also returns t if NODE's name is not defined in any scope, since it implies
7469 that it's an external variable, which must also be in the top-level scope."
7470 (let* ((name (js2-prop-node-name node))
7471 (this-scope (js2-node-get-enclosing-scope node))
7472 defining-scope)
7473 (cond
7474 ((js2-this-or-super-node-p node)
7475 nil)
7476 ((null this-scope)
7477 t)
7478 ((setq defining-scope (js2-get-defining-scope this-scope name))
7479 (js2-ast-root-p defining-scope))
7480 (t t))))
7481
7482 (defun js2-wrapper-function-p (node)
7483 "Return t if NODE is a function expression that's immediately invoked.
7484 NODE must be `js2-function-node'."
7485 (let ((parent (js2-node-parent node)))
7486 (or
7487 ;; function(){...}();
7488 (and (js2-call-node-p parent)
7489 (eq node (js2-call-node-target parent)))
7490 (and (js2-paren-node-p parent)
7491 ;; (function(){...})();
7492 (or (js2-call-node-p (setq parent (js2-node-parent parent)))
7493 ;; (function(){...}).call(this);
7494 (and (js2-prop-get-node-p parent)
7495 (member (js2-name-node-name (js2-prop-get-node-right parent))
7496 '("call" "apply"))
7497 (js2-call-node-p (js2-node-parent parent))))))))
7498
7499 (defun js2-browse-postprocess-chains ()
7500 "Modify function-declaration name chains after parsing finishes.
7501 Some of the information is only available after the parse tree is complete.
7502 For instance, processing a nested scope requires a parent function node."
7503 (let (result fn parent-qname p elem)
7504 (dolist (entry js2-imenu-recorder)
7505 ;; function node goes first
7506 (cl-destructuring-bind (current-fn &rest (&whole chain head &rest)) entry
7507 ;; Examine head's defining scope:
7508 ;; Pre-processed chain, or top-level/external, keep as-is.
7509 (if (or (stringp head) (js2-node-top-level-decl-p head))
7510 (push chain result)
7511 (when (js2-this-or-super-node-p head)
7512 (setq chain (cdr chain))) ; discard this-node
7513 (when (setq fn (js2-node-parent-script-or-fn current-fn))
7514 (setq parent-qname (gethash fn js2-imenu-function-map 'not-found))
7515 (when (eq parent-qname 'not-found)
7516 ;; anonymous function expressions are not recorded
7517 ;; during the parse, so we need to handle this case here
7518 (setq parent-qname
7519 (if (js2-wrapper-function-p fn)
7520 (let ((grandparent (js2-node-parent-script-or-fn fn)))
7521 (if (js2-ast-root-p grandparent)
7522 nil
7523 (gethash grandparent js2-imenu-function-map 'skip)))
7524 'skip))
7525 (puthash fn parent-qname js2-imenu-function-map))
7526 (if (eq parent-qname 'skip)
7527 ;; We don't show it, let's record that fact.
7528 (remhash current-fn js2-imenu-function-map)
7529 ;; Prepend parent fn qname to this chain.
7530 (let ((qname (append parent-qname chain)))
7531 (puthash current-fn (butlast qname) js2-imenu-function-map)
7532 (push qname result)))))))
7533 ;; Collect chains obtained by third-party code.
7534 (let (js2-imenu-recorder)
7535 (run-hooks 'js2-build-imenu-callbacks)
7536 (dolist (entry js2-imenu-recorder)
7537 (push (cdr entry) result)))
7538 ;; Finally replace each node in each chain with its name.
7539 (dolist (chain result)
7540 (setq p chain)
7541 (while p
7542 (if (js2-node-p (setq elem (car p)))
7543 (setcar p (js2-node-qname-component elem)))
7544 (setq p (cdr p))))
7545 result))
7546
7547 ;; Merge name chains into a trie-like tree structure of nested lists.
7548 ;; To simplify construction of the trie, we first build it out using the rule
7549 ;; that the trie consists of lists of pairs. Each pair is a 2-element array:
7550 ;; [key, num-or-list]. The second element can be a number; if so, this key
7551 ;; is a leaf-node with only one value. (I.e. there is only one declaration
7552 ;; associated with the key at this level.) Otherwise the second element is
7553 ;; a list of pairs, with the rule applied recursively. This symmetry permits
7554 ;; a simple recursive formulation.
7555 ;;
7556 ;; js2-mode is building the data structure for imenu. The imenu documentation
7557 ;; claims that it's the structure above, but in practice it wants the children
7558 ;; at the same list level as the key for that level, which is how I've drawn
7559 ;; the "Expected final result" above. We'll postprocess the trie to remove the
7560 ;; list wrapper around the children at each level.
7561 ;;
7562 ;; A completed nested imenu-alist entry looks like this:
7563 ;; '(("foo"
7564 ;; ("<definition>" . 7)
7565 ;; ("bar"
7566 ;; ("a" . 40)
7567 ;; ("b" . 60))))
7568 ;;
7569 ;; In particular, the documentation for `imenu--index-alist' says that
7570 ;; a nested sub-alist element looks like (INDEX-NAME SUB-ALIST).
7571 ;; The sub-alist entries immediately follow INDEX-NAME, the head of the list.
7572
7573 (defun js2-treeify (lst)
7574 "Convert (a b c d) to (a ((b ((c d)))))."
7575 (if (null (cddr lst)) ; list length <= 2
7576 lst
7577 (list (car lst) (list (js2-treeify (cdr lst))))))
7578
7579 (defun js2-build-alist-trie (chains trie)
7580 "Merge declaration name chains into a trie-like alist structure for imenu.
7581 CHAINS is the qname chain list produced during parsing. TRIE is a
7582 list of elements built up so far."
7583 (let (head tail pos branch kids)
7584 (dolist (chain chains)
7585 (setq head (car chain)
7586 tail (cdr chain)
7587 pos (if (numberp (car tail)) (car tail))
7588 branch (js2-find-if (lambda (n)
7589 (string= (car n) head))
7590 trie)
7591 kids (cl-second branch))
7592 (cond
7593 ;; case 1: this key isn't in the trie yet
7594 ((null branch)
7595 (if trie
7596 (setcdr (last trie) (list (js2-treeify chain)))
7597 (setq trie (list (js2-treeify chain)))))
7598 ;; case 2: key is present with a single number entry: replace w/ list
7599 ;; ("a1" 10) + ("a1" 20) => ("a1" (("<definition>" 10)
7600 ;; ("<definition>" 20)))
7601 ((numberp kids)
7602 (setcar (cdr branch)
7603 (list (list "<definition-1>" kids)
7604 (if pos
7605 (list "<definition-2>" pos)
7606 (js2-treeify tail)))))
7607 ;; case 3: key is there (with kids), and we're a number entry
7608 (pos
7609 (setcdr (last kids)
7610 (list
7611 (list (format "<definition-%d>"
7612 (1+ (cl-loop for kid in kids
7613 count (eq ?< (aref (car kid) 0)))))
7614 pos))))
7615 ;; case 4: key is there with kids, need to merge in our chain
7616 (t
7617 (js2-build-alist-trie (list tail) kids))))
7618 trie))
7619
7620 (defun js2-flatten-trie (trie)
7621 "Convert TRIE to imenu-format.
7622 Recurses through nodes, and for each one whose second element is a list,
7623 appends the list's flattened elements to the current element. Also
7624 changes the tails into conses. For instance, this pre-flattened trie
7625
7626 '(a ((b 20)
7627 (c ((d 30)
7628 (e 40)))))
7629
7630 becomes
7631
7632 '(a (b . 20)
7633 (c (d . 30)
7634 (e . 40)))
7635
7636 Note that the root of the trie has no key, just a list of chains.
7637 This is also true for the value of any key with multiple children,
7638 e.g. key 'c' in the example above."
7639 (cond
7640 ((listp (car trie))
7641 (mapcar #'js2-flatten-trie trie))
7642 (t
7643 (if (numberp (cl-second trie))
7644 (cons (car trie) (cl-second trie))
7645 ;; else pop list and append its kids
7646 (apply #'append (list (car trie)) (js2-flatten-trie (cdr trie)))))))
7647
7648 (defun js2-build-imenu-index ()
7649 "Turn `js2-imenu-recorder' into an imenu data structure."
7650 (when (eq js2-imenu-recorder 'empty)
7651 (setq js2-imenu-recorder nil))
7652 (let* ((chains (js2-browse-postprocess-chains))
7653 (result (js2-build-alist-trie chains nil)))
7654 (js2-flatten-trie result)))
7655
7656 (defun js2-test-print-chains (chains)
7657 "Print a list of qname chains.
7658 Each element of CHAINS is a list of the form (NODE [NODE *] pos);
7659 i.e. one or more nodes, and an integer position as the list tail."
7660 (mapconcat (lambda (chain)
7661 (concat "("
7662 (mapconcat (lambda (elem)
7663 (if (js2-node-p elem)
7664 (or (js2-node-qname-component elem)
7665 "nil")
7666 (number-to-string elem)))
7667 chain
7668 " ")
7669 ")"))
7670 chains
7671 "\n"))
7672
7673 ;;; Parser
7674
7675 (defconst js2-version "1.8.5"
7676 "Version of JavaScript supported.")
7677
7678 (defun js2-record-face (face &optional token)
7679 "Record a style run of FACE for TOKEN or the current token."
7680 (unless token (setq token (js2-current-token)))
7681 (js2-set-face (js2-token-beg token) (js2-token-end token) face 'record))
7682
7683 (defsubst js2-node-end (n)
7684 "Computes the absolute end of node N.
7685 Use with caution! Assumes `js2-node-pos' is -absolute-, which
7686 is only true until the node is added to its parent; i.e., while parsing."
7687 (+ (js2-node-pos n)
7688 (js2-node-len n)))
7689
7690 (defun js2-record-comment (token)
7691 "Record a comment in `js2-scanned-comments'."
7692 (let ((ct (js2-token-comment-type token))
7693 (beg (js2-token-beg token))
7694 (end (js2-token-end token)))
7695 (push (make-js2-comment-node :len (- end beg)
7696 :format ct)
7697 js2-scanned-comments)
7698 (when js2-parse-ide-mode
7699 (js2-record-face (if (eq ct 'jsdoc)
7700 'font-lock-doc-face
7701 'font-lock-comment-face)
7702 token)
7703 (when (memq ct '(html preprocessor))
7704 ;; Tell cc-engine the bounds of the comment.
7705 (js2-record-text-property beg (1- end) 'c-in-sws t)))))
7706
7707 (defun js2-peek-token ()
7708 "Return the next token type without consuming it.
7709 If `js2-ti-lookahead' is positive, return the type of next token
7710 from `js2-ti-tokens'. Otherwise, call `js2-get-token'."
7711 (if (not (zerop js2-ti-lookahead))
7712 (js2-token-type
7713 (aref js2-ti-tokens (mod (1+ js2-ti-tokens-cursor) js2-ti-ntokens)))
7714 (let ((tt (js2-get-token-internal nil)))
7715 (js2-unget-token)
7716 tt)))
7717
7718 (defalias 'js2-next-token 'js2-get-token)
7719
7720 (defun js2-match-token (match &optional dont-unget)
7721 "Get next token and return t if it matches MATCH, a bytecode.
7722 Returns nil and consumes nothing if MATCH is not the next token."
7723 (if (/= (js2-get-token) match)
7724 (ignore (unless dont-unget (js2-unget-token)))
7725 t))
7726
7727 (defun js2-match-contextual-kwd (name)
7728 "Consume and return t if next token is `js2-NAME', and its
7729 string is NAME. Returns nil and keeps current token otherwise."
7730 (if (js2-contextual-kwd-p (progn (js2-get-token)
7731 (js2-current-token))
7732 name)
7733 (progn (js2-record-face 'font-lock-keyword-face) t)
7734 (js2-unget-token)
7735 nil))
7736
7737 (defun js2-contextual-kwd-p (token name)
7738 "Return t if TOKEN is `js2-NAME', and its string is NAME."
7739 (and (= (js2-token-type token) js2-NAME)
7740 (string= (js2-token-string token) name)))
7741
7742 (defun js2-match-async-function ()
7743 (when (and (js2-contextual-kwd-p (js2-current-token) "async")
7744 (= (js2-peek-token) js2-FUNCTION))
7745 (js2-record-face 'font-lock-keyword-face)
7746 (js2-get-token)
7747 t))
7748
7749 (defun js2-match-async-arrow-function ()
7750 (when (and (js2-contextual-kwd-p (js2-current-token) "async")
7751 (/= (js2-peek-token) js2-FUNCTION))
7752 (js2-record-face 'font-lock-keyword-face)
7753 (js2-get-token)
7754 t))
7755
7756 (defun js2-match-await ()
7757 (when (and (= tt js2-NAME)
7758 (js2-contextual-kwd-p (js2-current-token) "await"))
7759 (js2-record-face 'font-lock-keyword-face)
7760 (let ((beg (js2-current-token-beg))
7761 (end (js2-current-token-end)))
7762 (js2-get-token)
7763 (unless (and (js2-inside-function)
7764 (js2-function-node-async js2-current-script-or-fn))
7765 (js2-report-error "msg.bad.await" nil
7766 beg (- end beg))))
7767 t))
7768
7769 (defun js2-get-prop-name-token ()
7770 (js2-get-token (and (>= js2-language-version 170) 'KEYWORD_IS_NAME)))
7771
7772 (defun js2-match-prop-name ()
7773 "Consume token and return t if next token is a valid property name.
7774 If `js2-language-version' is >= 180, a keyword or reserved word
7775 is considered valid name as well."
7776 (if (eq js2-NAME (js2-get-prop-name-token))
7777 t
7778 (js2-unget-token)
7779 nil))
7780
7781 (defun js2-must-match-prop-name (msg-id &optional pos len)
7782 (if (js2-match-prop-name)
7783 t
7784 (js2-report-error msg-id nil pos len)
7785 nil))
7786
7787 (defun js2-peek-token-or-eol ()
7788 "Return js2-EOL if the next token immediately follows a newline.
7789 Else returns the next token. Used in situations where we don't
7790 consider certain token types valid if they are preceded by a newline.
7791 One example is the postfix ++ or -- operator, which has to be on the
7792 same line as its operand."
7793 (let ((tt (js2-get-token))
7794 (follows-eol (js2-token-follows-eol-p (js2-current-token))))
7795 (js2-unget-token)
7796 (if follows-eol
7797 js2-EOL
7798 tt)))
7799
7800 (defun js2-must-match (token msg-id &optional pos len)
7801 "Match next token to token code TOKEN, or record a syntax error.
7802 MSG-ID is the error message to report if the match fails.
7803 Returns t on match, nil if no match."
7804 (if (js2-match-token token t)
7805 t
7806 (js2-report-error msg-id nil pos len)
7807 (js2-unget-token)
7808 nil))
7809
7810 (defun js2-must-match-name (msg-id)
7811 (if (js2-match-token js2-NAME t)
7812 t
7813 (if (eq (js2-current-token-type) js2-RESERVED)
7814 (js2-report-error "msg.reserved.id" (js2-current-token-string))
7815 (js2-report-error msg-id)
7816 (js2-unget-token))
7817 nil))
7818
7819 (defsubst js2-inside-function ()
7820 (cl-plusp js2-nesting-of-function))
7821
7822 (defun js2-set-requires-activation ()
7823 (if (js2-function-node-p js2-current-script-or-fn)
7824 (setf (js2-function-node-needs-activation js2-current-script-or-fn) t)))
7825
7826 (defun js2-check-activation-name (name _token)
7827 (when (js2-inside-function)
7828 ;; skip language-version 1.2 check from Rhino
7829 (if (or (string= "arguments" name)
7830 (and js2-compiler-activation-names ; only used in codegen
7831 (gethash name js2-compiler-activation-names)))
7832 (js2-set-requires-activation))))
7833
7834 (defun js2-set-is-generator ()
7835 (let ((fn-node js2-current-script-or-fn))
7836 (when (and (js2-function-node-p fn-node)
7837 (not (js2-function-node-generator-type fn-node)))
7838 (setf (js2-function-node-generator-type js2-current-script-or-fn) 'LEGACY))))
7839
7840 (defun js2-must-have-xml ()
7841 (unless js2-compiler-xml-available
7842 (js2-report-error "msg.XML.not.available")))
7843
7844 (defun js2-push-scope (scope)
7845 "Push SCOPE, a `js2-scope', onto the lexical scope chain."
7846 (cl-assert (js2-scope-p scope))
7847 (cl-assert (null (js2-scope-parent-scope scope)))
7848 (cl-assert (not (eq js2-current-scope scope)))
7849 (setf (js2-scope-parent-scope scope) js2-current-scope
7850 js2-current-scope scope))
7851
7852 (defsubst js2-pop-scope ()
7853 (setq js2-current-scope
7854 (js2-scope-parent-scope js2-current-scope)))
7855
7856 (defun js2-enter-loop (loop-node)
7857 (push loop-node js2-loop-set)
7858 (push loop-node js2-loop-and-switch-set)
7859 (js2-push-scope loop-node)
7860 ;; Tell the current labeled statement (if any) its statement,
7861 ;; and set the jump target of the first label to the loop.
7862 ;; These are used in `js2-parse-continue' to verify that the
7863 ;; continue target is an actual labeled loop. (And for codegen.)
7864 (when js2-labeled-stmt
7865 (setf (js2-labeled-stmt-node-stmt js2-labeled-stmt) loop-node
7866 (js2-label-node-loop (car (js2-labeled-stmt-node-labels
7867 js2-labeled-stmt))) loop-node)))
7868
7869 (defun js2-exit-loop ()
7870 (pop js2-loop-set)
7871 (pop js2-loop-and-switch-set)
7872 (js2-pop-scope))
7873
7874 (defsubst js2-enter-switch (switch-node)
7875 (push switch-node js2-loop-and-switch-set))
7876
7877 (defsubst js2-exit-switch ()
7878 (pop js2-loop-and-switch-set))
7879
7880 (defsubst js2-get-directive (node)
7881 "Return NODE's value if it is a directive, nil otherwise.
7882
7883 A directive is an otherwise-meaningless expression statement
7884 consisting of a string literal, such as \"use strict\"."
7885 (and (js2-expr-stmt-node-p node)
7886 (js2-string-node-p (setq node (js2-expr-stmt-node-expr node)))
7887 (js2-string-node-value node)))
7888
7889 (defun js2-parse (&optional buf cb)
7890 "Tell the js2 parser to parse a region of JavaScript.
7891
7892 BUF is a buffer or buffer name containing the code to parse.
7893 Call `narrow-to-region' first to parse only part of the buffer.
7894
7895 The returned AST root node is given some additional properties:
7896 `node-count' - total number of nodes in the AST
7897 `buffer' - BUF. The buffer it refers to may change or be killed,
7898 so the value is not necessarily reliable.
7899
7900 An optional callback CB can be specified to report parsing
7901 progress. If `(functionp CB)' returns t, it will be called with
7902 the current line number once before parsing begins, then again
7903 each time the lexer reaches a new line number.
7904
7905 CB can also be a list of the form `(symbol cb ...)' to specify
7906 multiple callbacks with different criteria. Each symbol is a
7907 criterion keyword, and the following element is the callback to
7908 call
7909
7910 :line - called whenever the line number changes
7911 :token - called for each new token consumed
7912
7913 The list of criteria could be extended to include entering or
7914 leaving a statement, an expression, or a function definition."
7915 (if (and cb (not (functionp cb)))
7916 (error "criteria callbacks not yet implemented"))
7917 (let ((inhibit-point-motion-hooks t)
7918 (js2-compiler-xml-available (>= js2-language-version 160))
7919 ;; This is a recursive-descent parser, so give it a big stack.
7920 (max-lisp-eval-depth (max max-lisp-eval-depth 3000))
7921 (max-specpdl-size (max max-specpdl-size 3000))
7922 (case-fold-search nil)
7923 ast)
7924 (with-current-buffer (or buf (current-buffer))
7925 (setq js2-scanned-comments nil
7926 js2-parsed-errors nil
7927 js2-parsed-warnings nil
7928 js2-imenu-recorder nil
7929 js2-imenu-function-map nil
7930 js2-label-set nil)
7931 (js2-init-scanner)
7932 (setq ast (js2-do-parse))
7933 (unless js2-ts-hit-eof
7934 (js2-report-error "msg.got.syntax.errors" (length js2-parsed-errors)))
7935 (setf (js2-ast-root-errors ast) js2-parsed-errors
7936 (js2-ast-root-warnings ast) js2-parsed-warnings)
7937 ;; if we didn't find any declarations, put a dummy in this list so we
7938 ;; don't end up re-parsing the buffer in `js2-mode-create-imenu-index'
7939 (unless js2-imenu-recorder
7940 (setq js2-imenu-recorder 'empty))
7941 (run-hooks 'js2-parse-finished-hook)
7942 ast)))
7943
7944 ;; Corresponds to Rhino's Parser.parse() method.
7945 (defun js2-do-parse ()
7946 "Parse current buffer starting from current point.
7947 Scanner should be initialized."
7948 (let ((pos js2-ts-cursor)
7949 (end js2-ts-cursor) ; in case file is empty
7950 root n tt
7951 (in-directive-prologue t)
7952 (js2-in-use-strict-directive js2-in-use-strict-directive)
7953 directive)
7954 ;; initialize buffer-local parsing vars
7955 (setf root (make-js2-ast-root :buffer (buffer-name) :pos pos)
7956 js2-current-script-or-fn root
7957 js2-current-scope root
7958 js2-nesting-of-function 0
7959 js2-labeled-stmt nil
7960 js2-recorded-identifiers nil ; for js2-highlight
7961 js2-in-use-strict-directive nil)
7962 (while (/= (setq tt (js2-get-token)) js2-EOF)
7963 (if (= tt js2-FUNCTION)
7964 (progn
7965 (setq n (if js2-called-by-compile-function
7966 (js2-parse-function-expr)
7967 (js2-parse-function-stmt))))
7968 ;; not a function - parse a statement
7969 (js2-unget-token)
7970 (setq n (js2-parse-statement))
7971 (when in-directive-prologue
7972 (setq directive (js2-get-directive n))
7973 (cond
7974 ((null directive)
7975 (setq in-directive-prologue nil))
7976 ((string= directive "use strict")
7977 (setq js2-in-use-strict-directive t)))))
7978 ;; add function or statement to script
7979 (setq end (js2-node-end n))
7980 (js2-block-node-push root n))
7981 ;; add comments to root in lexical order
7982 (when js2-scanned-comments
7983 ;; if we find a comment beyond end of normal kids, use its end
7984 (setq end (max end (js2-node-end (cl-first js2-scanned-comments))))
7985 (dolist (comment js2-scanned-comments)
7986 (push comment (js2-ast-root-comments root))
7987 (js2-node-add-children root comment)))
7988 (setf (js2-node-len root) (- end pos))
7989 (setq js2-mode-ast root) ; Make sure this is available for callbacks.
7990 ;; Give extensions a chance to muck with things before highlighting starts.
7991 (let ((js2-additional-externs js2-additional-externs))
7992 (save-excursion
7993 (run-hooks 'js2-post-parse-callbacks))
7994 (js2-highlight-undeclared-vars))
7995 root))
7996
7997 (defun js2-parse-function-closure-body (fn-node)
7998 "Parse a JavaScript 1.8 function closure body."
7999 (let ((js2-nesting-of-function (1+ js2-nesting-of-function)))
8000 (if js2-ts-hit-eof
8001 (js2-report-error "msg.no.brace.body" nil
8002 (js2-node-pos fn-node)
8003 (- js2-ts-cursor (js2-node-pos fn-node)))
8004 (js2-node-add-children fn-node
8005 (setf (js2-function-node-body fn-node)
8006 (js2-parse-expr t))))))
8007
8008 (defun js2-parse-function-body (fn-node)
8009 (js2-must-match js2-LC "msg.no.brace.body"
8010 (js2-node-pos fn-node)
8011 (- js2-ts-cursor (js2-node-pos fn-node)))
8012 (let ((pos (js2-current-token-beg)) ; LC position
8013 (pn (make-js2-block-node)) ; starts at LC position
8014 tt
8015 end
8016 not-in-directive-prologue
8017 node
8018 directive)
8019 (cl-incf js2-nesting-of-function)
8020 (unwind-protect
8021 (while (not (or (= (setq tt (js2-peek-token)) js2-ERROR)
8022 (= tt js2-EOF)
8023 (= tt js2-RC)))
8024 (js2-block-node-push
8025 pn
8026 (if (/= tt js2-FUNCTION)
8027 (if not-in-directive-prologue
8028 (js2-parse-statement)
8029 (setq node (js2-parse-statement)
8030 directive (js2-get-directive node))
8031 (cond
8032 ((null directive)
8033 (setq not-in-directive-prologue t))
8034 ((string= directive "use strict")
8035 ;; Back up and reparse the function, because new rules apply
8036 ;; to the function name and parameters.
8037 (when (not js2-in-use-strict-directive)
8038 (setq js2-in-use-strict-directive t)
8039 (throw 'reparse t))))
8040 node)
8041 (js2-get-token)
8042 (js2-parse-function-stmt))))
8043 (cl-decf js2-nesting-of-function))
8044 (setq end (js2-current-token-end)) ; assume no curly and leave at current token
8045 (if (js2-must-match js2-RC "msg.no.brace.after.body" pos)
8046 (setq end (js2-current-token-end)))
8047 (setf (js2-node-pos pn) pos
8048 (js2-node-len pn) (- end pos))
8049 (setf (js2-function-node-body fn-node) pn)
8050 (js2-node-add-children fn-node pn)
8051 pn))
8052
8053 (defun js2-define-destruct-symbols (node decl-type face &optional ignore-not-in-block)
8054 "Declare and fontify destructuring parameters inside NODE.
8055 NODE is either `js2-array-node', `js2-object-node', or `js2-name-node'.
8056
8057 Return a list of `js2-name-node' nodes representing the symbols
8058 declared; probably to check them for errors."
8059 (let (name-nodes)
8060 (cond
8061 ((js2-name-node-p node)
8062 (let (leftpos)
8063 (js2-define-symbol decl-type (js2-name-node-name node)
8064 node ignore-not-in-block)
8065 (when face
8066 (js2-set-face (setq leftpos (js2-node-abs-pos node))
8067 (+ leftpos (js2-node-len node))
8068 face 'record))
8069 (list node)))
8070 ((js2-object-node-p node)
8071 (dolist (elem (js2-object-node-elems node))
8072 (let ((subexpr (cond
8073 ((and (js2-infix-node-p elem)
8074 (= js2-ASSIGN (js2-infix-node-type elem)))
8075 (js2-infix-node-left elem))
8076 ((and (js2-infix-node-p elem)
8077 (= js2-COLON (js2-infix-node-type elem)))
8078 (js2-infix-node-right elem))
8079 ((and (js2-unary-node-p elem)
8080 (= js2-TRIPLEDOT (js2-unary-node-type elem)))
8081 (js2-unary-node-operand elem)))))
8082 (when subexpr
8083 (push (js2-define-destruct-symbols
8084 subexpr decl-type face ignore-not-in-block)
8085 name-nodes))))
8086 (apply #'append (nreverse name-nodes)))
8087 ((js2-array-node-p node)
8088 (dolist (elem (js2-array-node-elems node))
8089 (when elem
8090 (setq elem (cond ((js2-infix-node-p elem) ;; default (=)
8091 (js2-infix-node-left elem))
8092 ((js2-unary-node-p elem) ;; rest (...)
8093 (js2-unary-node-operand elem))
8094 (t elem)))
8095 (push (js2-define-destruct-symbols
8096 elem decl-type face ignore-not-in-block)
8097 name-nodes)))
8098 (apply #'append (nreverse name-nodes)))
8099 (t (js2-report-error "msg.no.parm" nil (js2-node-abs-pos node)
8100 (js2-node-len node))
8101 nil))))
8102
8103 (defvar js2-illegal-strict-identifiers
8104 '("eval" "arguments")
8105 "Identifiers not allowed as variables in strict mode.")
8106
8107 (defun js2-check-strict-identifier (name-node)
8108 "Check that NAME-NODE makes a legal strict mode identifier."
8109 (when js2-in-use-strict-directive
8110 (let ((param-name (js2-name-node-name name-node)))
8111 (when (member param-name js2-illegal-strict-identifiers)
8112 (js2-report-error "msg.bad.id.strict" param-name
8113 (js2-node-abs-pos name-node) (js2-node-len name-node))))))
8114
8115 (defun js2-check-strict-function-params (preceding-params params)
8116 "Given PRECEDING-PARAMS in a function's parameter list, check
8117 for strict mode errors caused by PARAMS."
8118 (when js2-in-use-strict-directive
8119 (dolist (param params)
8120 (let ((param-name (js2-name-node-name param)))
8121 (js2-check-strict-identifier param)
8122 (when (cl-some (lambda (param)
8123 (string= (js2-name-node-name param) param-name))
8124 preceding-params)
8125 (js2-report-error "msg.dup.param.strict" param-name
8126 (js2-node-abs-pos param) (js2-node-len param)))))))
8127
8128 (defun js2-parse-function-params (function-type fn-node pos)
8129 "Parse the parameters of a function of FUNCTION-TYPE
8130 represented by FN-NODE at POS."
8131 (if (js2-match-token js2-RP)
8132 (setf (js2-function-node-rp fn-node) (- (js2-current-token-beg) pos))
8133 (let ((paren-free-arrow (and (eq function-type 'FUNCTION_ARROW)
8134 (eq (js2-current-token-type) js2-NAME)))
8135 params param
8136 param-name-nodes new-param-name-nodes
8137 rest-param-at)
8138 (when paren-free-arrow
8139 (js2-unget-token))
8140 (cl-loop for tt = (js2-peek-token)
8141 do
8142 (cond
8143 ;; destructuring param
8144 ((and (not paren-free-arrow)
8145 (or (= tt js2-LB) (= tt js2-LC)))
8146 (js2-get-token)
8147 (setq param (js2-parse-destruct-primary-expr)
8148 new-param-name-nodes (js2-define-destruct-symbols
8149 param js2-LP 'js2-function-param))
8150 (js2-check-strict-function-params param-name-nodes new-param-name-nodes)
8151 (setq param-name-nodes (append param-name-nodes new-param-name-nodes)))
8152 ;; variable name
8153 (t
8154 (when (and (>= js2-language-version 200)
8155 (not paren-free-arrow)
8156 (js2-match-token js2-TRIPLEDOT)
8157 (not rest-param-at))
8158 ;; to report errors if there are more parameters
8159 (setq rest-param-at (length params)))
8160 (js2-must-match-name "msg.no.parm")
8161 (js2-record-face 'js2-function-param)
8162 (setq param (js2-create-name-node))
8163 (js2-define-symbol js2-LP (js2-current-token-string) param)
8164 (js2-check-strict-function-params param-name-nodes (list param))
8165 (setq param-name-nodes (append param-name-nodes (list param)))))
8166 ;; default parameter value
8167 (when (and (not rest-param-at)
8168 (>= js2-language-version 200)
8169 (js2-match-token js2-ASSIGN))
8170 (cl-assert (not paren-free-arrow))
8171 (let* ((pos (js2-node-pos param))
8172 (tt (js2-current-token-type))
8173 (op-pos (- (js2-current-token-beg) pos))
8174 (left param)
8175 (right (js2-parse-assign-expr))
8176 (len (- (js2-node-end right) pos)))
8177 (setq param (make-js2-assign-node
8178 :type tt :pos pos :len len :op-pos op-pos
8179 :left left :right right))
8180 (js2-node-add-children param left right)))
8181 (push param params)
8182 (when (and rest-param-at (> (length params) (1+ rest-param-at)))
8183 (js2-report-error "msg.param.after.rest" nil
8184 (js2-node-pos param) (js2-node-len param)))
8185 while
8186 (js2-match-token js2-COMMA))
8187 (when (and (not paren-free-arrow)
8188 (js2-must-match js2-RP "msg.no.paren.after.parms"))
8189 (setf (js2-function-node-rp fn-node) (- (js2-current-token-beg) pos)))
8190 (when rest-param-at
8191 (setf (js2-function-node-rest-p fn-node) t))
8192 (dolist (p params)
8193 (js2-node-add-children fn-node p)
8194 (push p (js2-function-node-params fn-node))))))
8195
8196 (defun js2-check-inconsistent-return-warning (fn-node name)
8197 "Possibly show inconsistent-return warning.
8198 Last token scanned is the close-curly for the function body."
8199 (when (and js2-mode-show-strict-warnings
8200 js2-strict-inconsistent-return-warning
8201 (not (js2-has-consistent-return-usage
8202 (js2-function-node-body fn-node))))
8203 ;; Have it extend from close-curly to bol or beginning of block.
8204 (let ((pos (save-excursion
8205 (goto-char (js2-current-token-end))
8206 (max (js2-node-abs-pos (js2-function-node-body fn-node))
8207 (point-at-bol))))
8208 (end (js2-current-token-end)))
8209 (if (cl-plusp (js2-name-node-length name))
8210 (js2-add-strict-warning "msg.no.return.value"
8211 (js2-name-node-name name) pos end)
8212 (js2-add-strict-warning "msg.anon.no.return.value" nil pos end)))))
8213
8214 (defun js2-parse-function-stmt (&optional async-p)
8215 (let ((pos (js2-current-token-beg))
8216 (star-p (js2-match-token js2-MUL)))
8217 (js2-must-match-name "msg.unnamed.function.stmt")
8218 (let ((name (js2-create-name-node t))
8219 pn member-expr)
8220 (cond
8221 ((js2-match-token js2-LP)
8222 (js2-parse-function 'FUNCTION_STATEMENT pos star-p async-p name))
8223 (js2-allow-member-expr-as-function-name
8224 (setq member-expr (js2-parse-member-expr-tail nil name))
8225 (js2-parse-highlight-member-expr-fn-name member-expr)
8226 (js2-must-match js2-LP "msg.no.paren.parms")
8227 (setf pn (js2-parse-function 'FUNCTION_STATEMENT pos star-p async-p)
8228 (js2-function-node-member-expr pn) member-expr)
8229 pn)
8230 (t
8231 (js2-report-error "msg.no.paren.parms")
8232 (make-js2-error-node))))))
8233
8234 (defun js2-parse-async-function-stmt ()
8235 (js2-parse-function-stmt t))
8236
8237 (defun js2-parse-function-expr (&optional async-p)
8238 (let ((pos (js2-current-token-beg))
8239 (star-p (js2-match-token js2-MUL))
8240 name)
8241 (when (js2-match-token js2-NAME)
8242 (setq name (js2-create-name-node t)))
8243 (js2-must-match js2-LP "msg.no.paren.parms")
8244 (js2-parse-function 'FUNCTION_EXPRESSION pos star-p async-p name)))
8245
8246 (defun js2-parse-function-internal (function-type pos star-p &optional async-p name)
8247 (let (fn-node lp)
8248 (if (= (js2-current-token-type) js2-LP) ; eventually matched LP?
8249 (setq lp (js2-current-token-beg)))
8250 (setf fn-node (make-js2-function-node :pos pos
8251 :name name
8252 :form function-type
8253 :lp (if lp (- lp pos))
8254 :generator-type (and star-p 'STAR)
8255 :async async-p))
8256 (when name
8257 (js2-set-face (js2-node-pos name) (js2-node-end name)
8258 'font-lock-function-name-face 'record)
8259 (when (and (eq function-type 'FUNCTION_STATEMENT)
8260 (cl-plusp (js2-name-node-length name)))
8261 ;; Function statements define a symbol in the enclosing scope
8262 (js2-define-symbol js2-FUNCTION (js2-name-node-name name) fn-node))
8263 (when js2-in-use-strict-directive
8264 (js2-check-strict-identifier name)))
8265 (if (or (js2-inside-function) (cl-plusp js2-nesting-of-with))
8266 ;; 1. Nested functions are not affected by the dynamic scope flag
8267 ;; as dynamic scope is already a parent of their scope.
8268 ;; 2. Functions defined under the with statement also immune to
8269 ;; this setup, in which case dynamic scope is ignored in favor
8270 ;; of the with object.
8271 (setf (js2-function-node-ignore-dynamic fn-node) t))
8272 ;; dynamically bind all the per-function variables
8273 (let ((js2-current-script-or-fn fn-node)
8274 (js2-current-scope fn-node)
8275 (js2-nesting-of-with 0)
8276 (js2-end-flags 0)
8277 js2-label-set
8278 js2-loop-set
8279 js2-loop-and-switch-set)
8280 (js2-parse-function-params function-type fn-node pos)
8281 (when (eq function-type 'FUNCTION_ARROW)
8282 (js2-must-match js2-ARROW "msg.bad.arrow.args"))
8283 (if (and (>= js2-language-version 180)
8284 (/= (js2-peek-token) js2-LC))
8285 (js2-parse-function-closure-body fn-node)
8286 (js2-parse-function-body fn-node))
8287 (js2-check-inconsistent-return-warning fn-node name)
8288
8289 (when name
8290 (js2-node-add-children fn-node name)
8291 ;; Function expressions define a name only in the body of the
8292 ;; function, and only if not hidden by a parameter name
8293 (when (and (eq function-type 'FUNCTION_EXPRESSION)
8294 (null (js2-scope-get-symbol js2-current-scope
8295 (js2-name-node-name name))))
8296 (js2-define-symbol js2-FUNCTION
8297 (js2-name-node-name name)
8298 fn-node))
8299 (when (eq function-type 'FUNCTION_STATEMENT)
8300 (js2-record-imenu-functions fn-node))))
8301
8302 (setf (js2-node-len fn-node) (- js2-ts-cursor pos))
8303 ;; Rhino doesn't do this, but we need it for finding undeclared vars.
8304 ;; We wait until after parsing the function to set its parent scope,
8305 ;; since `js2-define-symbol' needs the defining-scope check to stop
8306 ;; at the function boundary when checking for redeclarations.
8307 (setf (js2-scope-parent-scope fn-node) js2-current-scope)
8308 fn-node))
8309
8310 (defun js2-parse-function (function-type pos star-p &optional async-p name)
8311 "Function parser. FUNCTION-TYPE is a symbol, POS is the
8312 beginning of the first token (function keyword, unless it's an
8313 arrow function), NAME is js2-name-node."
8314 (let ((continue t)
8315 ts-state
8316 fn-node
8317 ;; Preserve strict state outside this function.
8318 (js2-in-use-strict-directive js2-in-use-strict-directive))
8319 ;; Parse multiple times if a new strict mode directive is discovered in the
8320 ;; function body, as new rules will be retroactively applied to the legality
8321 ;; of function names and parameters.
8322 (while continue
8323 (setq ts-state (make-js2-ts-state))
8324 (setq continue (catch 'reparse
8325 (setq fn-node (js2-parse-function-internal
8326 function-type pos star-p async-p name))
8327 ;; Don't continue.
8328 nil))
8329 (when continue
8330 (js2-ts-seek ts-state)))
8331 fn-node))
8332
8333 (defun js2-parse-statements (&optional parent)
8334 "Parse a statement list. Last token consumed must be js2-LC.
8335
8336 PARENT can be a `js2-block-node', in which case the statements are
8337 appended to PARENT. Otherwise a new `js2-block-node' is created
8338 and returned.
8339
8340 This function does not match the closing js2-RC: the caller
8341 matches the RC so it can provide a suitable error message if not
8342 matched. This means it's up to the caller to set the length of
8343 the node to include the closing RC. The node start pos is set to
8344 the absolute buffer start position, and the caller should fix it
8345 up to be relative to the parent node. All children of this block
8346 node are given relative start positions and correct lengths."
8347 (let ((pn (or parent (make-js2-block-node)))
8348 tt)
8349 (while (and (> (setq tt (js2-peek-token)) js2-EOF)
8350 (/= tt js2-RC))
8351 (js2-block-node-push pn (js2-parse-statement)))
8352 pn))
8353
8354 (defun js2-parse-statement ()
8355 (let (pn beg end)
8356 ;; coarse-grained user-interrupt check - needs work
8357 (and js2-parse-interruptable-p
8358 (zerop (% (cl-incf js2-parse-stmt-count)
8359 js2-statements-per-pause))
8360 (input-pending-p)
8361 (throw 'interrupted t))
8362 (setq pn (js2-statement-helper))
8363 ;; no-side-effects warning check
8364 (unless (js2-node-has-side-effects pn)
8365 (setq end (js2-node-end pn))
8366 (save-excursion
8367 (goto-char end)
8368 (setq beg (max (js2-node-pos pn) (point-at-bol))))
8369 (js2-add-strict-warning "msg.no.side.effects" nil beg end))
8370 pn))
8371
8372 ;; These correspond to the switch cases in Parser.statementHelper
8373 (defconst js2-parsers
8374 (let ((parsers (make-vector js2-num-tokens
8375 #'js2-parse-expr-stmt)))
8376 (aset parsers js2-BREAK #'js2-parse-break)
8377 (aset parsers js2-CLASS #'js2-parse-class-stmt)
8378 (aset parsers js2-CONST #'js2-parse-const-var)
8379 (aset parsers js2-CONTINUE #'js2-parse-continue)
8380 (aset parsers js2-DEBUGGER #'js2-parse-debugger)
8381 (aset parsers js2-DEFAULT #'js2-parse-default-xml-namespace)
8382 (aset parsers js2-DO #'js2-parse-do)
8383 (aset parsers js2-EXPORT #'js2-parse-export)
8384 (aset parsers js2-FOR #'js2-parse-for)
8385 (aset parsers js2-FUNCTION #'js2-parse-function-stmt)
8386 (aset parsers js2-IF #'js2-parse-if)
8387 (aset parsers js2-IMPORT #'js2-parse-import)
8388 (aset parsers js2-LC #'js2-parse-block)
8389 (aset parsers js2-LET #'js2-parse-let-stmt)
8390 (aset parsers js2-NAME #'js2-parse-name-or-label)
8391 (aset parsers js2-RETURN #'js2-parse-ret-yield)
8392 (aset parsers js2-SEMI #'js2-parse-semi)
8393 (aset parsers js2-SWITCH #'js2-parse-switch)
8394 (aset parsers js2-THROW #'js2-parse-throw)
8395 (aset parsers js2-TRY #'js2-parse-try)
8396 (aset parsers js2-VAR #'js2-parse-const-var)
8397 (aset parsers js2-WHILE #'js2-parse-while)
8398 (aset parsers js2-WITH #'js2-parse-with)
8399 (aset parsers js2-YIELD #'js2-parse-ret-yield)
8400 parsers)
8401 "A vector mapping token types to parser functions.")
8402
8403 (defun js2-parse-warn-missing-semi (beg end)
8404 (and js2-mode-show-strict-warnings
8405 js2-strict-missing-semi-warning
8406 (js2-add-strict-warning
8407 "msg.missing.semi" nil
8408 ;; back up to beginning of statement or line
8409 (max beg (save-excursion
8410 (goto-char end)
8411 (point-at-bol)))
8412 end)))
8413
8414 (defconst js2-no-semi-insertion
8415 (list js2-IF
8416 js2-SWITCH
8417 js2-WHILE
8418 js2-DO
8419 js2-FOR
8420 js2-TRY
8421 js2-WITH
8422 js2-LC
8423 js2-ERROR
8424 js2-SEMI
8425 js2-CLASS
8426 js2-FUNCTION
8427 js2-EXPORT)
8428 "List of tokens that don't do automatic semicolon insertion.")
8429
8430 (defconst js2-autoinsert-semi-and-warn
8431 (list js2-ERROR js2-EOF js2-RC))
8432
8433 (defun js2-statement-helper ()
8434 (let* ((tt (js2-get-token))
8435 (first-tt tt)
8436 (async-stmt (js2-match-async-function))
8437 (parser (if (= tt js2-ERROR)
8438 #'js2-parse-semi
8439 (if async-stmt
8440 #'js2-parse-async-function-stmt
8441 (aref js2-parsers tt))))
8442 pn)
8443 ;; If the statement is set, then it's been told its label by now.
8444 (and js2-labeled-stmt
8445 (js2-labeled-stmt-node-stmt js2-labeled-stmt)
8446 (setq js2-labeled-stmt nil))
8447 (setq pn (funcall parser))
8448 ;; Don't do auto semi insertion for certain statement types.
8449 (unless (or (memq first-tt js2-no-semi-insertion)
8450 (js2-labeled-stmt-node-p pn)
8451 async-stmt)
8452 (js2-auto-insert-semicolon pn))
8453 pn))
8454
8455 (defun js2-auto-insert-semicolon (pn)
8456 (let* ((tt (js2-get-token))
8457 (pos (js2-node-pos pn)))
8458 (cond
8459 ((= tt js2-SEMI)
8460 ;; extend the node bounds to include the semicolon.
8461 (setf (js2-node-len pn) (- (js2-current-token-end) pos)))
8462 ((memq tt js2-autoinsert-semi-and-warn)
8463 (js2-unget-token) ; Not ';', do not consume.
8464 ;; Autoinsert ;
8465 (js2-parse-warn-missing-semi pos (js2-node-end pn)))
8466 (t
8467 (if (not (js2-token-follows-eol-p (js2-current-token)))
8468 ;; Report error if no EOL or autoinsert ';' otherwise
8469 (js2-report-error "msg.no.semi.stmt")
8470 (js2-parse-warn-missing-semi pos (js2-node-end pn)))
8471 (js2-unget-token) ; Not ';', do not consume.
8472 ))))
8473
8474 (defun js2-parse-condition ()
8475 "Parse a parenthesized boolean expression, e.g. in an if- or while-stmt.
8476 The parens are discarded and the expression node is returned.
8477 The `pos' field of the return value is set to an absolute position
8478 that must be fixed up by the caller.
8479 Return value is a list (EXPR LP RP), with absolute paren positions."
8480 (let (pn lp rp)
8481 (if (js2-must-match js2-LP "msg.no.paren.cond")
8482 (setq lp (js2-current-token-beg)))
8483 (setq pn (js2-parse-expr))
8484 (if (js2-must-match js2-RP "msg.no.paren.after.cond")
8485 (setq rp (js2-current-token-beg)))
8486 ;; Report strict warning on code like "if (a = 7) ..."
8487 (if (and js2-strict-cond-assign-warning
8488 (js2-assign-node-p pn))
8489 (js2-add-strict-warning "msg.equal.as.assign" nil
8490 (js2-node-pos pn)
8491 (+ (js2-node-pos pn)
8492 (js2-node-len pn))))
8493 (list pn lp rp)))
8494
8495 (defun js2-parse-if ()
8496 "Parser for if-statement. Last matched token must be js2-IF."
8497 (let ((pos (js2-current-token-beg))
8498 cond if-true if-false else-pos end pn)
8499 (setq cond (js2-parse-condition)
8500 if-true (js2-parse-statement)
8501 if-false (if (js2-match-token js2-ELSE)
8502 (progn
8503 (setq else-pos (- (js2-current-token-beg) pos))
8504 (js2-parse-statement)))
8505 end (js2-node-end (or if-false if-true))
8506 pn (make-js2-if-node :pos pos
8507 :len (- end pos)
8508 :condition (car cond)
8509 :then-part if-true
8510 :else-part if-false
8511 :else-pos else-pos
8512 :lp (js2-relpos (cl-second cond) pos)
8513 :rp (js2-relpos (cl-third cond) pos)))
8514 (js2-node-add-children pn (car cond) if-true if-false)
8515 pn))
8516
8517 (defun js2-parse-import ()
8518 "Parse import statement. The current token must be js2-IMPORT."
8519 (unless (js2-ast-root-p js2-current-scope)
8520 (js2-report-error "msg.mod.import.decl.at.top.level"))
8521 (let ((beg (js2-current-token-beg)))
8522 (cond ((js2-match-token js2-STRING)
8523 (make-js2-import-node
8524 :pos beg
8525 :len (- (js2-current-token-end) beg)
8526 :module-id (js2-current-token-string)))
8527 (t
8528 (let* ((import-clause (js2-parse-import-clause))
8529 (from-clause (and import-clause (js2-parse-from-clause)))
8530 (module-id (when from-clause (js2-from-clause-node-module-id from-clause)))
8531 (node (make-js2-import-node
8532 :pos beg
8533 :len (- (js2-current-token-end) beg)
8534 :import import-clause
8535 :from from-clause
8536 :module-id module-id)))
8537 (when import-clause
8538 (js2-node-add-children node import-clause))
8539 (when from-clause
8540 (js2-node-add-children node from-clause))
8541 node)))))
8542
8543 (defun js2-parse-import-clause ()
8544 "Parse the bindings in an import statement.
8545 This can take many forms:
8546
8547 ImportedDefaultBinding -> 'foo'
8548 NameSpaceImport -> '* as lib'
8549 NamedImports -> '{foo as bar, bang}'
8550 ImportedDefaultBinding , NameSpaceImport -> 'foo, * as lib'
8551 ImportedDefaultBinding , NamedImports -> 'foo, {bar, baz as bif}'
8552
8553 Try to match namespace imports and named imports first because nothing can
8554 come after them. If it is an imported default binding, then it could have named
8555 imports or a namespace import that follows it.
8556 "
8557 (let* ((beg (js2-current-token-beg))
8558 (clause (make-js2-import-clause-node
8559 :pos beg))
8560 (children (list)))
8561 (cond
8562 ((js2-match-token js2-MUL)
8563 (let ((ns-import (js2-parse-namespace-import)))
8564 (when ns-import
8565 (let ((name-node (js2-namespace-import-node-name ns-import)))
8566 (js2-define-symbol
8567 js2-LET (js2-name-node-name name-node) name-node t)))
8568 (setf (js2-import-clause-node-namespace-import clause) ns-import)
8569 (push ns-import children)))
8570 ((js2-match-token js2-LC)
8571 (let ((imports (js2-parse-export-bindings t)))
8572 (setf (js2-import-clause-node-named-imports clause) imports)
8573 (dolist (import imports)
8574 (push import children)
8575 (let ((name-node (js2-export-binding-node-local-name import)))
8576 (when name-node
8577 (js2-define-symbol
8578 js2-LET (js2-name-node-name name-node) name-node t))))))
8579 ((= (js2-peek-token) js2-NAME)
8580 (let ((binding (js2-maybe-parse-export-binding)))
8581 (let ((node-name (js2-export-binding-node-local-name binding)))
8582 (js2-define-symbol js2-LET (js2-name-node-name node-name) node-name t))
8583 (setf (js2-import-clause-node-default-binding clause) binding)
8584 (push binding children))
8585 (when (js2-match-token js2-COMMA)
8586 (cond
8587 ((js2-match-token js2-MUL)
8588 (let ((ns-import (js2-parse-namespace-import)))
8589 (let ((name-node (js2-namespace-import-node-name ns-import)))
8590 (js2-define-symbol
8591 js2-LET (js2-name-node-name name-node) name-node t))
8592 (setf (js2-import-clause-node-namespace-import clause) ns-import)
8593 (push ns-import children)))
8594 ((js2-match-token js2-LC)
8595 (let ((imports (js2-parse-export-bindings t)))
8596 (setf (js2-import-clause-node-named-imports clause) imports)
8597 (dolist (import imports)
8598 (push import children)
8599 (let ((name-node (js2-export-binding-node-local-name import)))
8600 (when name-node
8601 (js2-define-symbol
8602 js2-LET (js2-name-node-name name-node) name-node t))))))
8603 (t (js2-report-error "msg.syntax")))))
8604 (t (js2-report-error "msg.mod.declaration.after.import")))
8605 (setf (js2-node-len clause) (- (js2-current-token-end) beg))
8606 (apply #'js2-node-add-children clause children)
8607 clause))
8608
8609 (defun js2-parse-namespace-import ()
8610 "Parse a namespace import expression such as '* as bar'.
8611 The current token must be js2-MUL."
8612 (let ((beg (js2-current-token-beg)))
8613 (when (js2-must-match js2-NAME "msg.syntax")
8614 (if (equal "as" (js2-current-token-string))
8615 (when (js2-must-match-prop-name "msg.syntax")
8616 (let ((node (make-js2-namespace-import-node
8617 :pos beg
8618 :len (- (js2-current-token-end) beg)
8619 :name (make-js2-name-node
8620 :pos (js2-current-token-beg)
8621 :len (js2-current-token-end)
8622 :name (js2-current-token-string)))))
8623 (js2-node-add-children node (js2-namespace-import-node-name node))
8624 node))
8625 (js2-unget-token)
8626 (js2-report-error "msg.syntax")))))
8627
8628
8629 (defun js2-parse-from-clause ()
8630 "Parse the from clause in an import or export statement. E.g. from 'src/lib'"
8631 (when (js2-must-match-name "msg.mod.from.after.import.spec.set")
8632 (let ((beg (js2-current-token-beg)))
8633 (if (equal "from" (js2-current-token-string))
8634 (cond
8635 ((js2-match-token js2-STRING)
8636 (make-js2-from-clause-node
8637 :pos beg
8638 :len (- (js2-current-token-end) beg)
8639 :module-id (js2-current-token-string)
8640 :metadata-p nil))
8641 ((js2-match-token js2-THIS)
8642 (when (js2-must-match-name "msg.mod.spec.after.from")
8643 (if (equal "module" (js2-current-token-string))
8644 (make-js2-from-clause-node
8645 :pos beg
8646 :len (- (js2-current-token-end) beg)
8647 :module-id "this"
8648 :metadata-p t)
8649 (js2-unget-token)
8650 (js2-unget-token)
8651 (js2-report-error "msg.mod.spec.after.from")
8652 nil)))
8653 (t (js2-report-error "msg.mod.spec.after.from") nil))
8654 (js2-unget-token)
8655 (js2-report-error "msg.mod.from.after.import.spec.set")
8656 nil))))
8657
8658 (defun js2-parse-export-bindings (&optional import-p)
8659 "Parse a list of export binding expressions such as {}, {foo, bar}, and
8660 {foo as bar, baz as bang}. The current token must be
8661 js2-LC. Return a lisp list of js2-export-binding-node"
8662 (let ((bindings (list)))
8663 (while
8664 (let ((binding (js2-maybe-parse-export-binding)))
8665 (when binding
8666 (push binding bindings))
8667 (js2-match-token js2-COMMA)))
8668 (when (js2-must-match js2-RC (if import-p
8669 "msg.mod.rc.after.import.spec.list"
8670 "msg.mod.rc.after.export.spec.list"))
8671 (reverse bindings))))
8672
8673 (defun js2-maybe-parse-export-binding ()
8674 "Attempt to parse a binding expression found inside an import/export statement.
8675 This can take the form of either as single js2-NAME token as in 'foo' or as in a
8676 rebinding expression 'bar as foo'. If it matches, it will return an instance of
8677 js2-export-binding-node and consume all the tokens. If it does not match, it
8678 consumes no tokens."
8679 (let ((extern-name (when (js2-match-prop-name) (js2-current-token-string)))
8680 (beg (js2-current-token-beg))
8681 (extern-name-len (js2-current-token-len))
8682 (is-reserved-name (or (= (js2-current-token-type) js2-RESERVED)
8683 (aref js2-kwd-tokens (js2-current-token-type)))))
8684 (if extern-name
8685 (let ((as (and (js2-match-token js2-NAME) (js2-current-token-string))))
8686 (if (and as (equal "as" (js2-current-token-string)))
8687 (let ((name
8688 (or
8689 (and (js2-match-token js2-DEFAULT) "default")
8690 (and (js2-match-token js2-NAME) (js2-current-token-string)))))
8691 (if name
8692 (let ((node (make-js2-export-binding-node
8693 :pos beg
8694 :len (- (js2-current-token-end) beg)
8695 :local-name (make-js2-name-node
8696 :name name
8697 :pos (js2-current-token-beg)
8698 :len (js2-current-token-len))
8699 :extern-name (make-js2-name-node
8700 :name extern-name
8701 :pos beg
8702 :len extern-name-len))))
8703 (js2-node-add-children
8704 node
8705 (js2-export-binding-node-local-name node)
8706 (js2-export-binding-node-extern-name node))
8707 node)
8708 (js2-unget-token)
8709 nil))
8710 (when as (js2-unget-token))
8711 (let* ((name-node (make-js2-name-node
8712 :name (js2-current-token-string)
8713 :pos (js2-current-token-beg)
8714 :len (js2-current-token-len)))
8715 (node (make-js2-export-binding-node
8716 :pos (js2-current-token-beg)
8717 :len (js2-current-token-len)
8718 :local-name name-node
8719 :extern-name name-node)))
8720 (when is-reserved-name
8721 (js2-report-error "msg.mod.as.after.reserved.word" extern-name))
8722 (js2-node-add-children node name-node)
8723 node)))
8724 nil)))
8725
8726 (defun js2-parse-switch ()
8727 "Parser for switch-statement. Last matched token must be js2-SWITCH."
8728 (let ((pos (js2-current-token-beg))
8729 tt pn discriminant has-default case-expr case-node
8730 case-pos cases stmt lp)
8731 (if (js2-must-match js2-LP "msg.no.paren.switch")
8732 (setq lp (js2-current-token-beg)))
8733 (setq discriminant (js2-parse-expr)
8734 pn (make-js2-switch-node :discriminant discriminant
8735 :pos pos
8736 :lp (js2-relpos lp pos)))
8737 (js2-node-add-children pn discriminant)
8738 (js2-enter-switch pn)
8739 (unwind-protect
8740 (progn
8741 (if (js2-must-match js2-RP "msg.no.paren.after.switch")
8742 (setf (js2-switch-node-rp pn) (- (js2-current-token-beg) pos)))
8743 (js2-must-match js2-LC "msg.no.brace.switch")
8744 (catch 'break
8745 (while t
8746 (setq tt (js2-next-token)
8747 case-pos (js2-current-token-beg))
8748 (cond
8749 ((= tt js2-RC)
8750 (setf (js2-node-len pn) (- (js2-current-token-end) pos))
8751 (throw 'break nil)) ; done
8752 ((= tt js2-CASE)
8753 (setq case-expr (js2-parse-expr))
8754 (js2-must-match js2-COLON "msg.no.colon.case"))
8755 ((= tt js2-DEFAULT)
8756 (if has-default
8757 (js2-report-error "msg.double.switch.default"))
8758 (setq has-default t
8759 case-expr nil)
8760 (js2-must-match js2-COLON "msg.no.colon.case"))
8761 (t
8762 (js2-report-error "msg.bad.switch")
8763 (throw 'break nil)))
8764 (setq case-node (make-js2-case-node :pos case-pos
8765 :len (- (js2-current-token-end) case-pos)
8766 :expr case-expr))
8767 (js2-node-add-children case-node case-expr)
8768 (while (and (/= (setq tt (js2-peek-token)) js2-RC)
8769 (/= tt js2-CASE)
8770 (/= tt js2-DEFAULT)
8771 (/= tt js2-EOF))
8772 (setf stmt (js2-parse-statement)
8773 (js2-node-len case-node) (- (js2-node-end stmt) case-pos))
8774 (js2-block-node-push case-node stmt))
8775 (push case-node cases)))
8776 ;; add cases last, as pushing reverses the order to be correct
8777 (dolist (kid cases)
8778 (js2-node-add-children pn kid)
8779 (push kid (js2-switch-node-cases pn)))
8780 pn) ; return value
8781 (js2-exit-switch))))
8782
8783 (defun js2-parse-while ()
8784 "Parser for while-statement. Last matched token must be js2-WHILE."
8785 (let ((pos (js2-current-token-beg))
8786 (pn (make-js2-while-node))
8787 cond body)
8788 (js2-enter-loop pn)
8789 (unwind-protect
8790 (progn
8791 (setf cond (js2-parse-condition)
8792 (js2-while-node-condition pn) (car cond)
8793 body (js2-parse-statement)
8794 (js2-while-node-body pn) body
8795 (js2-node-len pn) (- (js2-node-end body) pos)
8796 (js2-while-node-lp pn) (js2-relpos (cl-second cond) pos)
8797 (js2-while-node-rp pn) (js2-relpos (cl-third cond) pos))
8798 (js2-node-add-children pn body (car cond)))
8799 (js2-exit-loop))
8800 pn))
8801
8802 (defun js2-parse-do ()
8803 "Parser for do-statement. Last matched token must be js2-DO."
8804 (let ((pos (js2-current-token-beg))
8805 (pn (make-js2-do-node))
8806 cond body end)
8807 (js2-enter-loop pn)
8808 (unwind-protect
8809 (progn
8810 (setq body (js2-parse-statement))
8811 (js2-must-match js2-WHILE "msg.no.while.do")
8812 (setf (js2-do-node-while-pos pn) (- (js2-current-token-beg) pos)
8813 cond (js2-parse-condition)
8814 (js2-do-node-condition pn) (car cond)
8815 (js2-do-node-body pn) body
8816 end js2-ts-cursor
8817 (js2-do-node-lp pn) (js2-relpos (cl-second cond) pos)
8818 (js2-do-node-rp pn) (js2-relpos (cl-third cond) pos))
8819 (js2-node-add-children pn (car cond) body))
8820 (js2-exit-loop))
8821 ;; Always auto-insert semicolon to follow SpiderMonkey:
8822 ;; It is required by ECMAScript but is ignored by the rest of
8823 ;; world; see bug 238945
8824 (if (js2-match-token js2-SEMI)
8825 (setq end js2-ts-cursor))
8826 (setf (js2-node-len pn) (- end pos))
8827 pn))
8828
8829 (defun js2-parse-export ()
8830 "Parse an export statement.
8831 The Last matched token must be js2-EXPORT. Currently, the 'default' and 'expr'
8832 expressions should only be either hoistable expressions (function or generator)
8833 or assignment expressions, but there is no checking to enforce that and so it
8834 will parse without error a small subset of
8835 invalid export statements."
8836 (unless (js2-ast-root-p js2-current-scope)
8837 (js2-report-error "msg.mod.export.decl.at.top.level"))
8838 (let ((beg (js2-current-token-beg))
8839 (children (list))
8840 exports-list from-clause declaration default)
8841 (cond
8842 ((js2-match-token js2-MUL)
8843 (setq from-clause (js2-parse-from-clause))
8844 (when from-clause
8845 (push from-clause children)))
8846 ((js2-match-token js2-LC)
8847 (setq exports-list (js2-parse-export-bindings))
8848 (when exports-list
8849 (dolist (export exports-list)
8850 (push export children)))
8851 (when (js2-match-token js2-NAME)
8852 (if (equal "from" (js2-current-token-string))
8853 (progn
8854 (js2-unget-token)
8855 (setq from-clause (js2-parse-from-clause)))
8856 (js2-unget-token))))
8857 ((js2-match-token js2-DEFAULT)
8858 (setq default (cond ((js2-match-token js2-CLASS)
8859 (js2-parse-class-stmt))
8860 ((js2-match-token js2-FUNCTION)
8861 (js2-parse-function-stmt))
8862 (t (js2-parse-expr)))))
8863 ((or (js2-match-token js2-VAR) (js2-match-token js2-CONST) (js2-match-token js2-LET))
8864 (setq declaration (js2-parse-variables (js2-current-token-type) (js2-current-token-beg))))
8865 ((js2-match-token js2-CLASS)
8866 (setq declaration (js2-parse-class-stmt)))
8867 ((js2-match-token js2-FUNCTION)
8868 (setq declaration (js2-parse-function-stmt)))
8869 (t
8870 (setq declaration (js2-parse-expr))))
8871 (when from-clause
8872 (push from-clause children))
8873 (when declaration
8874 (push declaration children)
8875 (when (not (or (js2-function-node-p declaration)
8876 (js2-class-node-p declaration)))
8877 (js2-auto-insert-semicolon declaration)))
8878 (when default
8879 (push default children)
8880 (when (not (or (js2-function-node-p default)
8881 (js2-class-node-p default)))
8882 (js2-auto-insert-semicolon default)))
8883 (let ((node (make-js2-export-node
8884 :pos beg
8885 :len (- (js2-current-token-end) beg)
8886 :exports-list exports-list
8887 :from-clause from-clause
8888 :declaration declaration
8889 :default default)))
8890 (apply #'js2-node-add-children node children)
8891 node)))
8892
8893 (defun js2-parse-for ()
8894 "Parse a for, for-in or for each-in statement.
8895 Last matched token must be js2-FOR."
8896 (let ((for-pos (js2-current-token-beg))
8897 (tmp-scope (make-js2-scope))
8898 pn is-for-each is-for-in-or-of is-for-of
8899 in-pos each-pos tmp-pos
8900 init ; Node init is also foo in 'foo in object'.
8901 cond ; Node cond is also object in 'foo in object'.
8902 incr ; 3rd section of for-loop initializer.
8903 body tt lp rp)
8904 ;; See if this is a for each () instead of just a for ()
8905 (when (js2-match-token js2-NAME)
8906 (if (string= "each" (js2-current-token-string))
8907 (progn
8908 (setq is-for-each t
8909 each-pos (- (js2-current-token-beg) for-pos)) ; relative
8910 (js2-record-face 'font-lock-keyword-face))
8911 (js2-report-error "msg.no.paren.for")))
8912 (if (js2-must-match js2-LP "msg.no.paren.for")
8913 (setq lp (- (js2-current-token-beg) for-pos)))
8914 (setq tt (js2-get-token))
8915 ;; Capture identifiers inside parens. We can't create the node
8916 ;; (and use it as the current scope) until we know its type.
8917 (js2-push-scope tmp-scope)
8918 (unwind-protect
8919 (progn
8920 ;; parse init clause
8921 (let ((js2-in-for-init t)) ; set as dynamic variable
8922 (cond
8923 ((= tt js2-SEMI)
8924 (js2-unget-token)
8925 (setq init (make-js2-empty-expr-node)))
8926 ((or (= tt js2-VAR) (= tt js2-LET))
8927 (setq init (js2-parse-variables tt (js2-current-token-beg))))
8928 (t
8929 (js2-unget-token)
8930 (setq init (js2-parse-expr)))))
8931 (if (or (js2-match-token js2-IN)
8932 (and (>= js2-language-version 200)
8933 (js2-match-contextual-kwd "of")
8934 (setq is-for-of t)))
8935 (setq is-for-in-or-of t
8936 in-pos (- (js2-current-token-beg) for-pos)
8937 ;; scope of iteration target object is not the scope we've created above.
8938 ;; stash current scope temporary.
8939 cond (let ((js2-current-scope (js2-scope-parent-scope js2-current-scope)))
8940 (js2-parse-expr))) ; object over which we're iterating
8941 ;; else ordinary for loop - parse cond and incr
8942 (js2-must-match js2-SEMI "msg.no.semi.for")
8943 (setq cond (if (= (js2-peek-token) js2-SEMI)
8944 (make-js2-empty-expr-node) ; no loop condition
8945 (js2-parse-expr)))
8946 (js2-must-match js2-SEMI "msg.no.semi.for.cond")
8947 (setq tmp-pos (js2-current-token-end)
8948 incr (if (= (js2-peek-token) js2-RP)
8949 (make-js2-empty-expr-node :pos tmp-pos)
8950 (js2-parse-expr)))))
8951 (js2-pop-scope))
8952 (if (js2-must-match js2-RP "msg.no.paren.for.ctrl")
8953 (setq rp (- (js2-current-token-beg) for-pos)))
8954 (if (not is-for-in-or-of)
8955 (setq pn (make-js2-for-node :init init
8956 :condition cond
8957 :update incr
8958 :lp lp
8959 :rp rp))
8960 ;; cond could be null if 'in obj' got eaten by the init node.
8961 (if (js2-infix-node-p init)
8962 ;; it was (foo in bar) instead of (var foo in bar)
8963 (setq cond (js2-infix-node-right init)
8964 init (js2-infix-node-left init))
8965 (if (and (js2-var-decl-node-p init)
8966 (> (length (js2-var-decl-node-kids init)) 1))
8967 (js2-report-error "msg.mult.index")))
8968 (setq pn (make-js2-for-in-node :iterator init
8969 :object cond
8970 :in-pos in-pos
8971 :foreach-p is-for-each
8972 :each-pos each-pos
8973 :forof-p is-for-of
8974 :lp lp
8975 :rp rp)))
8976 ;; Transplant the declarations.
8977 (setf (js2-scope-symbol-table pn)
8978 (js2-scope-symbol-table tmp-scope))
8979 (unwind-protect
8980 (progn
8981 (js2-enter-loop pn)
8982 ;; We have to parse the body -after- creating the loop node,
8983 ;; so that the loop node appears in the js2-loop-set, allowing
8984 ;; break/continue statements to find the enclosing loop.
8985 (setf body (js2-parse-statement)
8986 (js2-loop-node-body pn) body
8987 (js2-node-pos pn) for-pos
8988 (js2-node-len pn) (- (js2-node-end body) for-pos))
8989 (js2-node-add-children pn init cond incr body))
8990 ;; finally
8991 (js2-exit-loop))
8992 pn))
8993
8994 (defun js2-parse-try ()
8995 "Parse a try statement. Last matched token must be js2-TRY."
8996 (let ((try-pos (js2-current-token-beg))
8997 try-end
8998 try-block
8999 catch-blocks
9000 finally-block
9001 saw-default-catch
9002 peek)
9003 (if (/= (js2-peek-token) js2-LC)
9004 (js2-report-error "msg.no.brace.try"))
9005 (setq try-block (js2-parse-statement)
9006 try-end (js2-node-end try-block)
9007 peek (js2-peek-token))
9008 (cond
9009 ((= peek js2-CATCH)
9010 (while (js2-match-token js2-CATCH)
9011 (let* ((catch-pos (js2-current-token-beg))
9012 (catch-node (make-js2-catch-node :pos catch-pos))
9013 param
9014 guard-kwd
9015 catch-cond
9016 lp rp)
9017 (if saw-default-catch
9018 (js2-report-error "msg.catch.unreachable"))
9019 (if (js2-must-match js2-LP "msg.no.paren.catch")
9020 (setq lp (- (js2-current-token-beg) catch-pos)))
9021 (js2-push-scope catch-node)
9022 (let ((tt (js2-peek-token)))
9023 (cond
9024 ;; Destructuring pattern:
9025 ;; catch ({ message, file }) { ... }
9026 ((or (= tt js2-LB) (= tt js2-LC))
9027 (js2-get-token)
9028 (setq param (js2-parse-destruct-primary-expr))
9029 (js2-define-destruct-symbols param js2-LET nil))
9030 ;; Simple name.
9031 (t
9032 (js2-must-match-name "msg.bad.catchcond")
9033 (setq param (js2-create-name-node))
9034 (js2-define-symbol js2-LET (js2-current-token-string) param)
9035 (js2-check-strict-identifier param))))
9036 ;; Catch condition.
9037 (if (js2-match-token js2-IF)
9038 (setq guard-kwd (- (js2-current-token-beg) catch-pos)
9039 catch-cond (js2-parse-expr))
9040 (setq saw-default-catch t))
9041 (if (js2-must-match js2-RP "msg.bad.catchcond")
9042 (setq rp (- (js2-current-token-beg) catch-pos)))
9043 (js2-must-match js2-LC "msg.no.brace.catchblock")
9044 (js2-parse-statements catch-node)
9045 (if (js2-must-match js2-RC "msg.no.brace.after.body")
9046 (setq try-end (js2-current-token-end)))
9047 (js2-pop-scope)
9048 (setf (js2-node-len catch-node) (- try-end catch-pos)
9049 (js2-catch-node-param catch-node) param
9050 (js2-catch-node-guard-expr catch-node) catch-cond
9051 (js2-catch-node-guard-kwd catch-node) guard-kwd
9052 (js2-catch-node-lp catch-node) lp
9053 (js2-catch-node-rp catch-node) rp)
9054 (js2-node-add-children catch-node param catch-cond)
9055 (push catch-node catch-blocks))))
9056 ((/= peek js2-FINALLY)
9057 (js2-must-match js2-FINALLY "msg.try.no.catchfinally"
9058 (js2-node-pos try-block)
9059 (- (setq try-end (js2-node-end try-block))
9060 (js2-node-pos try-block)))))
9061 (when (js2-match-token js2-FINALLY)
9062 (let ((finally-pos (js2-current-token-beg))
9063 (block (js2-parse-statement)))
9064 (setq try-end (js2-node-end block)
9065 finally-block (make-js2-finally-node :pos finally-pos
9066 :len (- try-end finally-pos)
9067 :body block))
9068 (js2-node-add-children finally-block block)))
9069 (let ((pn (make-js2-try-node :pos try-pos
9070 :len (- try-end try-pos)
9071 :try-block try-block
9072 :finally-block finally-block)))
9073 (js2-node-add-children pn try-block finally-block)
9074 ;; Push them onto the try-node, which reverses and corrects their order.
9075 (dolist (cb catch-blocks)
9076 (js2-node-add-children pn cb)
9077 (push cb (js2-try-node-catch-clauses pn)))
9078 pn)))
9079
9080 (defun js2-parse-throw ()
9081 "Parser for throw-statement. Last matched token must be js2-THROW."
9082 (let ((pos (js2-current-token-beg))
9083 expr pn)
9084 (if (= (js2-peek-token-or-eol) js2-EOL)
9085 ;; ECMAScript does not allow new lines before throw expression,
9086 ;; see bug 256617
9087 (js2-report-error "msg.bad.throw.eol"))
9088 (setq expr (js2-parse-expr)
9089 pn (make-js2-throw-node :pos pos
9090 :len (- (js2-node-end expr) pos)
9091 :expr expr))
9092 (js2-node-add-children pn expr)
9093 pn))
9094
9095 (defun js2-match-jump-label-name (label-name)
9096 "If break/continue specified a label, return that label's labeled stmt.
9097 Returns the corresponding `js2-labeled-stmt-node', or if LABEL-NAME
9098 does not match an existing label, reports an error and returns nil."
9099 (let ((bundle (cdr (assoc label-name js2-label-set))))
9100 (if (null bundle)
9101 (js2-report-error "msg.undef.label"))
9102 bundle))
9103
9104 (defun js2-parse-break ()
9105 "Parser for break-statement. Last matched token must be js2-BREAK."
9106 (let ((pos (js2-current-token-beg))
9107 (end (js2-current-token-end))
9108 break-target ; statement to break from
9109 break-label ; in "break foo", name-node representing the foo
9110 labels ; matching labeled statement to break to
9111 pn)
9112 (when (eq (js2-peek-token-or-eol) js2-NAME)
9113 (js2-get-token)
9114 (setq break-label (js2-create-name-node)
9115 end (js2-node-end break-label)
9116 ;; matchJumpLabelName only matches if there is one
9117 labels (js2-match-jump-label-name (js2-current-token-string))
9118 break-target (if labels (car (js2-labeled-stmt-node-labels labels)))))
9119 (unless (or break-target break-label)
9120 ;; no break target specified - try for innermost enclosing loop/switch
9121 (if (null js2-loop-and-switch-set)
9122 (unless break-label
9123 (js2-report-error "msg.bad.break" nil pos (length "break")))
9124 (setq break-target (car js2-loop-and-switch-set))))
9125 (setq pn (make-js2-break-node :pos pos
9126 :len (- end pos)
9127 :label break-label
9128 :target break-target))
9129 (js2-node-add-children pn break-label) ; but not break-target
9130 pn))
9131
9132 (defun js2-parse-continue ()
9133 "Parser for continue-statement. Last matched token must be js2-CONTINUE."
9134 (let ((pos (js2-current-token-beg))
9135 (end (js2-current-token-end))
9136 label ; optional user-specified label, a `js2-name-node'
9137 labels ; current matching labeled stmt, if any
9138 target ; the `js2-loop-node' target of this continue stmt
9139 pn)
9140 (when (= (js2-peek-token-or-eol) js2-NAME)
9141 (js2-get-token)
9142 (setq label (js2-create-name-node)
9143 end (js2-node-end label)
9144 ;; matchJumpLabelName only matches if there is one
9145 labels (js2-match-jump-label-name (js2-current-token-string))))
9146 (cond
9147 ((null labels) ; no current label to go to
9148 (if (null js2-loop-set) ; no loop to continue to
9149 (js2-report-error "msg.continue.outside" nil pos
9150 (length "continue"))
9151 (setq target (car js2-loop-set)))) ; innermost enclosing loop
9152 (t
9153 (if (js2-loop-node-p (js2-labeled-stmt-node-stmt labels))
9154 (setq target (js2-labeled-stmt-node-stmt labels))
9155 (js2-report-error "msg.continue.nonloop" nil pos (- end pos)))))
9156 (setq pn (make-js2-continue-node :pos pos
9157 :len (- end pos)
9158 :label label
9159 :target target))
9160 (js2-node-add-children pn label) ; but not target - it's not our child
9161 pn))
9162
9163 (defun js2-parse-with ()
9164 "Parser for with-statement. Last matched token must be js2-WITH."
9165 (when js2-in-use-strict-directive
9166 (js2-report-error "msg.no.with.strict"))
9167 (let ((pos (js2-current-token-beg))
9168 obj body pn lp rp)
9169 (if (js2-must-match js2-LP "msg.no.paren.with")
9170 (setq lp (js2-current-token-beg)))
9171 (setq obj (js2-parse-expr))
9172 (if (js2-must-match js2-RP "msg.no.paren.after.with")
9173 (setq rp (js2-current-token-beg)))
9174 (let ((js2-nesting-of-with (1+ js2-nesting-of-with)))
9175 (setq body (js2-parse-statement)))
9176 (setq pn (make-js2-with-node :pos pos
9177 :len (- (js2-node-end body) pos)
9178 :object obj
9179 :body body
9180 :lp (js2-relpos lp pos)
9181 :rp (js2-relpos rp pos)))
9182 (js2-node-add-children pn obj body)
9183 pn))
9184
9185 (defun js2-parse-const-var ()
9186 "Parser for var- or const-statement.
9187 Last matched token must be js2-CONST or js2-VAR."
9188 (let ((tt (js2-current-token-type))
9189 (pos (js2-current-token-beg))
9190 expr pn)
9191 (setq expr (js2-parse-variables tt (js2-current-token-beg))
9192 pn (make-js2-expr-stmt-node :pos pos
9193 :len (- (js2-node-end expr) pos)
9194 :expr expr))
9195 (js2-node-add-children pn expr)
9196 pn))
9197
9198 (defun js2-wrap-with-expr-stmt (pos expr &optional add-child)
9199 (let ((pn (make-js2-expr-stmt-node :pos pos
9200 :len (js2-node-len expr)
9201 :type (if (js2-inside-function)
9202 js2-EXPR_VOID
9203 js2-EXPR_RESULT)
9204 :expr expr)))
9205 (if add-child
9206 (js2-node-add-children pn expr))
9207 pn))
9208
9209 (defun js2-parse-let-stmt ()
9210 "Parser for let-statement. Last matched token must be js2-LET."
9211 (let ((pos (js2-current-token-beg))
9212 expr pn)
9213 (if (= (js2-peek-token) js2-LP)
9214 ;; let expression in statement context
9215 (setq expr (js2-parse-let pos 'statement)
9216 pn (js2-wrap-with-expr-stmt pos expr t))
9217 ;; else we're looking at a statement like let x=6, y=7;
9218 (setf expr (js2-parse-variables js2-LET pos)
9219 pn (js2-wrap-with-expr-stmt pos expr t)
9220 (js2-node-type pn) js2-EXPR_RESULT))
9221 pn))
9222
9223 (defun js2-parse-ret-yield ()
9224 (js2-parse-return-or-yield (js2-current-token-type) nil))
9225
9226 (defconst js2-parse-return-stmt-enders
9227 (list js2-SEMI js2-RC js2-EOF js2-EOL js2-ERROR js2-RB js2-RP js2-YIELD))
9228
9229 (defsubst js2-now-all-set (before after mask)
9230 "Return whether or not the bits in the mask have changed to all set.
9231 BEFORE is bits before change, AFTER is bits after change, and MASK is
9232 the mask for bits. Returns t if all the bits in the mask are set in AFTER
9233 but not BEFORE."
9234 (and (/= (logand before mask) mask)
9235 (= (logand after mask) mask)))
9236
9237 (defun js2-parse-return-or-yield (tt expr-context)
9238 (let* ((pos (js2-current-token-beg))
9239 (end (js2-current-token-end))
9240 (before js2-end-flags)
9241 (inside-function (js2-inside-function))
9242 (gen-type (and inside-function (js2-function-node-generator-type
9243 js2-current-script-or-fn)))
9244 e ret name yield-star-p)
9245 (unless inside-function
9246 (js2-report-error (if (eq tt js2-RETURN)
9247 "msg.bad.return"
9248 "msg.bad.yield")))
9249 (when (and inside-function
9250 (eq gen-type 'STAR)
9251 (js2-match-token js2-MUL))
9252 (setq yield-star-p t))
9253 ;; This is ugly, but we don't want to require a semicolon.
9254 (unless (memq (js2-peek-token-or-eol) js2-parse-return-stmt-enders)
9255 (setq e (js2-parse-expr)
9256 end (js2-node-end e)))
9257 (cond
9258 ((eq tt js2-RETURN)
9259 (js2-set-flag js2-end-flags (if (null e)
9260 js2-end-returns
9261 js2-end-returns-value))
9262 (setq ret (make-js2-return-node :pos pos
9263 :len (- end pos)
9264 :retval e))
9265 (js2-node-add-children ret e)
9266 ;; See if we need a strict mode warning.
9267 ;; TODO: The analysis done by `js2-has-consistent-return-usage' is
9268 ;; more thorough and accurate than this before/after flag check.
9269 ;; E.g. if there's a finally-block that always returns, we shouldn't
9270 ;; show a warning generated by inconsistent returns in the catch blocks.
9271 ;; Basically `js2-has-consistent-return-usage' needs to keep more state,
9272 ;; so we know which returns/yields to highlight, and we should get rid of
9273 ;; all the checking in `js2-parse-return-or-yield'.
9274 (if (and js2-strict-inconsistent-return-warning
9275 (js2-now-all-set before js2-end-flags
9276 (logior js2-end-returns js2-end-returns-value)))
9277 (js2-add-strict-warning "msg.return.inconsistent" nil pos end)))
9278 ((eq gen-type 'COMPREHENSION)
9279 ;; FIXME: We should probably switch to saving and using lastYieldOffset,
9280 ;; like SpiderMonkey does.
9281 (js2-report-error "msg.syntax" nil pos 5))
9282 (t
9283 (setq ret (make-js2-yield-node :pos pos
9284 :len (- end pos)
9285 :value e
9286 :star-p yield-star-p))
9287 (js2-node-add-children ret e)
9288 (unless expr-context
9289 (setq e ret
9290 ret (js2-wrap-with-expr-stmt pos e t))
9291 (js2-set-requires-activation)
9292 (js2-set-is-generator))))
9293 ;; see if we are mixing yields and value returns.
9294 (when (and inside-function
9295 (js2-flag-set-p js2-end-flags js2-end-returns-value)
9296 (eq (js2-function-node-generator-type js2-current-script-or-fn)
9297 'LEGACY))
9298 (setq name (js2-function-name js2-current-script-or-fn))
9299 (if (zerop (length name))
9300 (js2-report-error "msg.anon.generator.returns" nil pos (- end pos))
9301 (js2-report-error "msg.generator.returns" name pos (- end pos))))
9302 ret))
9303
9304 (defun js2-parse-debugger ()
9305 (make-js2-keyword-node :type js2-DEBUGGER))
9306
9307 (defun js2-parse-block ()
9308 "Parser for a curly-delimited statement block.
9309 Last token matched must be `js2-LC'."
9310 (let ((pos (js2-current-token-beg))
9311 (pn (make-js2-scope)))
9312 (js2-push-scope pn)
9313 (unwind-protect
9314 (progn
9315 (js2-parse-statements pn)
9316 (js2-must-match js2-RC "msg.no.brace.block")
9317 (setf (js2-node-len pn) (- (js2-current-token-end) pos)))
9318 (js2-pop-scope))
9319 pn))
9320
9321 ;; For `js2-ERROR' too, to have a node for error recovery to work on.
9322 (defun js2-parse-semi ()
9323 "Parse a statement or handle an error.
9324 Current token type is `js2-SEMI' or `js2-ERROR'."
9325 (let ((tt (js2-current-token-type)) pos len)
9326 (if (eq tt js2-SEMI)
9327 (make-js2-empty-expr-node :len 1)
9328 (setq pos (js2-current-token-beg)
9329 len (- (js2-current-token-end) pos))
9330 (js2-report-error "msg.syntax" nil pos len)
9331 (make-js2-error-node :pos pos :len len))))
9332
9333 (defun js2-parse-default-xml-namespace ()
9334 "Parse a `default xml namespace = <expr>' e4x statement."
9335 (let ((pos (js2-current-token-beg))
9336 end len expr unary)
9337 (js2-must-have-xml)
9338 (js2-set-requires-activation)
9339 (setq len (- js2-ts-cursor pos))
9340 (unless (and (js2-match-token js2-NAME)
9341 (string= (js2-current-token-string) "xml"))
9342 (js2-report-error "msg.bad.namespace" nil pos len))
9343 (unless (and (js2-match-token js2-NAME)
9344 (string= (js2-current-token-string) "namespace"))
9345 (js2-report-error "msg.bad.namespace" nil pos len))
9346 (unless (js2-match-token js2-ASSIGN)
9347 (js2-report-error "msg.bad.namespace" nil pos len))
9348 (setq expr (js2-parse-expr)
9349 end (js2-node-end expr)
9350 unary (make-js2-unary-node :type js2-DEFAULTNAMESPACE
9351 :pos pos
9352 :len (- end pos)
9353 :operand expr))
9354 (js2-node-add-children unary expr)
9355 (make-js2-expr-stmt-node :pos pos
9356 :len (- end pos)
9357 :expr unary)))
9358
9359 (defun js2-record-label (label bundle)
9360 ;; current token should be colon that `js2-parse-primary-expr' left untouched
9361 (js2-get-token)
9362 (let ((name (js2-label-node-name label))
9363 labeled-stmt
9364 dup)
9365 (when (setq labeled-stmt (cdr (assoc name js2-label-set)))
9366 ;; flag both labels if possible when used in editing mode
9367 (if (and js2-parse-ide-mode
9368 (setq dup (js2-get-label-by-name labeled-stmt name)))
9369 (js2-report-error "msg.dup.label" nil
9370 (js2-node-abs-pos dup) (js2-node-len dup)))
9371 (js2-report-error "msg.dup.label" nil
9372 (js2-node-pos label) (js2-node-len label)))
9373 (js2-labeled-stmt-node-add-label bundle label)
9374 (js2-node-add-children bundle label)
9375 ;; Add one reference to the bundle per label in `js2-label-set'
9376 (push (cons name bundle) js2-label-set)))
9377
9378 (defun js2-parse-name-or-label ()
9379 "Parser for identifier or label. Last token matched must be js2-NAME.
9380 Called when we found a name in a statement context. If it's a label, we gather
9381 up any following labels and the next non-label statement into a
9382 `js2-labeled-stmt-node' bundle and return that. Otherwise we parse an
9383 expression and return it wrapped in a `js2-expr-stmt-node'."
9384 (let ((pos (js2-current-token-beg))
9385 expr stmt bundle
9386 (continue t))
9387 ;; set check for label and call down to `js2-parse-primary-expr'
9388 (setq expr (js2-maybe-parse-label))
9389 (if (null expr)
9390 ;; Parse the non-label expression and wrap with expression stmt.
9391 (js2-wrap-with-expr-stmt pos (js2-parse-expr) t)
9392 ;; else parsed a label
9393 (setq bundle (make-js2-labeled-stmt-node :pos pos))
9394 (js2-record-label expr bundle)
9395 ;; look for more labels
9396 (while (and continue (= (js2-get-token) js2-NAME))
9397 (if (setq expr (js2-maybe-parse-label))
9398 (js2-record-label expr bundle)
9399 (setq expr (js2-parse-expr)
9400 stmt (js2-wrap-with-expr-stmt (js2-node-pos expr) expr t)
9401 continue nil)
9402 (js2-auto-insert-semicolon stmt)))
9403 ;; no more labels; now parse the labeled statement
9404 (unwind-protect
9405 (unless stmt
9406 (let ((js2-labeled-stmt bundle)) ; bind dynamically
9407 (js2-unget-token)
9408 (setq stmt (js2-statement-helper))))
9409 ;; remove the labels for this statement from the global set
9410 (dolist (label (js2-labeled-stmt-node-labels bundle))
9411 (setq js2-label-set (remove label js2-label-set))))
9412 (setf (js2-labeled-stmt-node-stmt bundle) stmt
9413 (js2-node-len bundle) (- (js2-node-end stmt) pos))
9414 (js2-node-add-children bundle stmt)
9415 bundle)))
9416
9417 (defun js2-maybe-parse-label ()
9418 (cl-assert (= (js2-current-token-type) js2-NAME))
9419 (let (label-pos
9420 (next-tt (js2-get-token))
9421 (label-end (js2-current-token-end)))
9422 ;; Do not consume colon, it is used as unwind indicator
9423 ;; to return to statementHelper.
9424 (js2-unget-token)
9425 (if (= next-tt js2-COLON)
9426 (prog2
9427 (setq label-pos (js2-current-token-beg))
9428 (make-js2-label-node :pos label-pos
9429 :len (- label-end label-pos)
9430 :name (js2-current-token-string))
9431 (js2-set-face label-pos
9432 label-end
9433 'font-lock-variable-name-face 'record))
9434 ;; Backtrack from the name token, too.
9435 (js2-unget-token)
9436 nil)))
9437
9438 (defun js2-parse-expr-stmt ()
9439 "Default parser in statement context, if no recognized statement found."
9440 (js2-wrap-with-expr-stmt (js2-current-token-beg)
9441 (progn
9442 (js2-unget-token)
9443 (js2-parse-expr)) t))
9444
9445 (defun js2-parse-variables (decl-type pos)
9446 "Parse a comma-separated list of variable declarations.
9447 Could be a 'var', 'const' or 'let' expression, possibly in a for-loop initializer.
9448
9449 DECL-TYPE is a token value: either VAR, CONST, or LET depending on context.
9450 For 'var' or 'const', the keyword should be the token last scanned.
9451
9452 POS is the position where the node should start. It's sometimes the
9453 var/const/let keyword, and other times the beginning of the first token
9454 in the first variable declaration.
9455
9456 Returns the parsed `js2-var-decl-node' expression node."
9457 (let* ((result (make-js2-var-decl-node :decl-type decl-type
9458 :pos pos))
9459 destructuring kid-pos tt init name end nbeg nend vi
9460 (continue t))
9461 ;; Example:
9462 ;; var foo = {a: 1, b: 2}, bar = [3, 4];
9463 ;; var {b: s2, a: s1} = foo, x = 6, y, [s3, s4] = bar;
9464 ;; var {a, b} = baz;
9465 (while continue
9466 (setq destructuring nil
9467 name nil
9468 tt (js2-get-token)
9469 kid-pos (js2-current-token-beg)
9470 end (js2-current-token-end)
9471 init nil)
9472 (if (or (= tt js2-LB) (= tt js2-LC))
9473 ;; Destructuring assignment, e.g., var [a, b] = ...
9474 (setq destructuring (js2-parse-destruct-primary-expr)
9475 end (js2-node-end destructuring))
9476 ;; Simple variable name
9477 (js2-unget-token)
9478 (when (js2-must-match-name "msg.bad.var")
9479 (setq name (js2-create-name-node)
9480 nbeg (js2-current-token-beg)
9481 nend (js2-current-token-end)
9482 end nend)
9483 (js2-define-symbol decl-type (js2-current-token-string) name js2-in-for-init)
9484 (js2-check-strict-identifier name)))
9485 (when (js2-match-token js2-ASSIGN)
9486 (setq init (js2-parse-assign-expr)
9487 end (js2-node-end init))
9488 (js2-record-imenu-functions init name))
9489 (when name
9490 (js2-set-face nbeg nend (if (js2-function-node-p init)
9491 'font-lock-function-name-face
9492 'font-lock-variable-name-face)
9493 'record))
9494 (setq vi (make-js2-var-init-node :pos kid-pos
9495 :len (- end kid-pos)
9496 :type decl-type))
9497 (if destructuring
9498 (progn
9499 (if (and (null init) (not js2-in-for-init))
9500 (js2-report-error "msg.destruct.assign.no.init"))
9501 (js2-define-destruct-symbols destructuring
9502 decl-type
9503 'font-lock-variable-name-face)
9504 (setf (js2-var-init-node-target vi) destructuring))
9505 (setf (js2-var-init-node-target vi) name))
9506 (setf (js2-var-init-node-initializer vi) init)
9507 (js2-node-add-children vi name destructuring init)
9508 (js2-block-node-push result vi)
9509 (unless (js2-match-token js2-COMMA)
9510 (setq continue nil)))
9511 (setf (js2-node-len result) (- end pos))
9512 result))
9513
9514 (defun js2-parse-let (pos &optional stmt-p)
9515 "Parse a let expression or statement.
9516 A let-expression is of the form `let (vars) expr'.
9517 A let-statement is of the form `let (vars) {statements}'.
9518 The third form of let is a variable declaration list, handled
9519 by `js2-parse-variables'."
9520 (let ((pn (make-js2-let-node :pos pos))
9521 beg vars body)
9522 (if (js2-must-match js2-LP "msg.no.paren.after.let")
9523 (setf (js2-let-node-lp pn) (- (js2-current-token-beg) pos)))
9524 (js2-push-scope pn)
9525 (unwind-protect
9526 (progn
9527 (setq vars (js2-parse-variables js2-LET (js2-current-token-beg)))
9528 (if (js2-must-match js2-RP "msg.no.paren.let")
9529 (setf (js2-let-node-rp pn) (- (js2-current-token-beg) pos)))
9530 (if (and stmt-p (js2-match-token js2-LC))
9531 ;; let statement
9532 (progn
9533 (setf beg (js2-current-token-beg) ; position stmt at LC
9534 body (js2-parse-statements))
9535 (js2-must-match js2-RC "msg.no.curly.let")
9536 (setf (js2-node-len body) (- (js2-current-token-end) beg)
9537 (js2-node-len pn) (- (js2-current-token-end) pos)
9538 (js2-let-node-body pn) body
9539 (js2-node-type pn) js2-LET))
9540 ;; let expression
9541 (setf body (js2-parse-expr)
9542 (js2-node-len pn) (- (js2-node-end body) pos)
9543 (js2-let-node-body pn) body))
9544 (setf (js2-let-node-vars pn) vars)
9545 (js2-node-add-children pn vars body))
9546 (js2-pop-scope))
9547 pn))
9548
9549 (defun js2-define-new-symbol (decl-type name node &optional scope)
9550 (js2-scope-put-symbol (or scope js2-current-scope)
9551 name
9552 (make-js2-symbol decl-type name node)))
9553
9554 (defun js2-define-symbol (decl-type name &optional node ignore-not-in-block)
9555 "Define a symbol in the current scope.
9556 If NODE is non-nil, it is the AST node associated with the symbol."
9557 (let* ((defining-scope (js2-get-defining-scope js2-current-scope name))
9558 (symbol (if defining-scope
9559 (js2-scope-get-symbol defining-scope name)))
9560 (sdt (if symbol (js2-symbol-decl-type symbol) -1))
9561 (pos (if node (js2-node-abs-pos node)))
9562 (len (if node (js2-node-len node))))
9563 (cond
9564 ((and symbol ; already defined
9565 (or (if js2-in-use-strict-directive
9566 ;; two const-bound vars in this block have same name
9567 (and (= sdt js2-CONST)
9568 (eq defining-scope js2-current-scope))
9569 (or (= sdt js2-CONST) ; old version is const
9570 (= decl-type js2-CONST))) ; new version is const
9571 ;; two let-bound vars in this block have same name
9572 (and (= sdt js2-LET)
9573 (eq defining-scope js2-current-scope))))
9574 (js2-report-error
9575 (cond
9576 ((= sdt js2-CONST) "msg.const.redecl")
9577 ((= sdt js2-LET) "msg.let.redecl")
9578 ((= sdt js2-VAR) "msg.var.redecl")
9579 ((= sdt js2-FUNCTION) "msg.function.redecl")
9580 (t "msg.parm.redecl"))
9581 name pos len))
9582 ((or (= decl-type js2-LET)
9583 ;; strict mode const is scoped to the current LexicalEnvironment
9584 (and js2-in-use-strict-directive
9585 (= decl-type js2-CONST)))
9586 (if (and (= decl-type js2-LET)
9587 (not ignore-not-in-block)
9588 (or (= (js2-node-type js2-current-scope) js2-IF)
9589 (js2-loop-node-p js2-current-scope)))
9590 (js2-report-error "msg.let.decl.not.in.block")
9591 (js2-define-new-symbol decl-type name node)))
9592 ((or (= decl-type js2-VAR)
9593 (= decl-type js2-FUNCTION)
9594 ;; sloppy mode const is scoped to the current VariableEnvironment
9595 (and (not js2-in-use-strict-directive)
9596 (= decl-type js2-CONST)))
9597 (if symbol
9598 (if (and js2-strict-var-redeclaration-warning (= sdt js2-VAR))
9599 (js2-add-strict-warning "msg.var.redecl" name)
9600 (if (and js2-strict-var-hides-function-arg-warning (= sdt js2-LP))
9601 (js2-add-strict-warning "msg.var.hides.arg" name)))
9602 (js2-define-new-symbol decl-type name node
9603 js2-current-script-or-fn)))
9604 ((= decl-type js2-LP)
9605 (if symbol
9606 ;; must be duplicate parameter. Second parameter hides the
9607 ;; first, so go ahead and add the second pararameter
9608 (js2-report-warning "msg.dup.parms" name))
9609 (js2-define-new-symbol decl-type name node))
9610 (t (js2-code-bug)))))
9611
9612 (defun js2-parse-paren-expr-or-generator-comp ()
9613 (let ((px-pos (js2-current-token-beg)))
9614 (cond
9615 ((and (>= js2-language-version 200)
9616 (js2-match-token js2-FOR))
9617 (js2-parse-generator-comp px-pos))
9618 ((and (>= js2-language-version 200)
9619 (js2-match-token js2-RP))
9620 ;; Not valid expression syntax, but this is valid in an arrow
9621 ;; function with no params: () => body.
9622 (if (eq (js2-peek-token) js2-ARROW)
9623 ;; Return whatever, it will hopefully be rewinded and
9624 ;; reparsed when we reach the =>.
9625 (make-js2-keyword-node :type js2-NULL)
9626 (js2-report-error "msg.syntax")
9627 (make-js2-error-node)))
9628 (t
9629 (let* ((js2-in-for-init nil)
9630 (expr (js2-parse-expr))
9631 (pn (make-js2-paren-node :pos px-pos
9632 :expr expr)))
9633 (js2-node-add-children pn (js2-paren-node-expr pn))
9634 (js2-must-match js2-RP "msg.no.paren")
9635 (setf (js2-node-len pn) (- (js2-current-token-end) px-pos))
9636 pn)))))
9637
9638 (defun js2-parse-expr (&optional oneshot)
9639 (let* ((pn (js2-parse-assign-expr))
9640 (pos (js2-node-pos pn))
9641 left
9642 right
9643 op-pos)
9644 (while (and (not oneshot)
9645 (js2-match-token js2-COMMA))
9646 (setq op-pos (- (js2-current-token-beg) pos)) ; relative
9647 (if (= (js2-peek-token) js2-YIELD)
9648 (js2-report-error "msg.yield.parenthesized"))
9649 (setq right (js2-parse-assign-expr)
9650 left pn
9651 pn (make-js2-infix-node :type js2-COMMA
9652 :pos pos
9653 :len (- js2-ts-cursor pos)
9654 :op-pos op-pos
9655 :left left
9656 :right right))
9657 (js2-node-add-children pn left right))
9658 pn))
9659
9660 (defun js2-parse-assign-expr ()
9661 (let ((tt (js2-get-token))
9662 (pos (js2-current-token-beg))
9663 pn left right op-pos
9664 ts-state recorded-identifiers parsed-errors
9665 async-p)
9666 (if (= tt js2-YIELD)
9667 (js2-parse-return-or-yield tt t)
9668 ;; TODO(mooz): Bit confusing.
9669 ;; If we meet `async` token and it's not part of `async
9670 ;; function`, then this `async` is for a succeeding async arrow
9671 ;; function.
9672 ;; Since arrow function parsing doesn't rely on neither
9673 ;; `js2-parse-function-stmt' nor `js2-parse-function-expr' that
9674 ;; interpret `async` token, we trash `async` and just remember
9675 ;; we met `async` keyword to `async-p'.
9676 (when (js2-match-async-arrow-function)
9677 (setq async-p t))
9678 ;; Save the tokenizer state in case we find an arrow function
9679 ;; and have to rewind.
9680 (setq ts-state (make-js2-ts-state)
9681 recorded-identifiers js2-recorded-identifiers
9682 parsed-errors js2-parsed-errors)
9683 ;; not yield - parse assignment expression
9684 (setq pn (js2-parse-cond-expr)
9685 tt (js2-get-token))
9686 (cond
9687 ((and (<= js2-first-assign tt)
9688 (<= tt js2-last-assign))
9689 ;; tt express assignment (=, |=, ^=, ..., %=)
9690 (setq op-pos (- (js2-current-token-beg) pos) ; relative
9691 left pn)
9692 ;; The assigned node could be a js2-prop-get-node (foo.bar = 0), we only
9693 ;; care about assignment to strict variable names.
9694 (when (js2-name-node-p left)
9695 (js2-check-strict-identifier left))
9696 (setq right (js2-parse-assign-expr)
9697 pn (make-js2-assign-node :type tt
9698 :pos pos
9699 :len (- (js2-node-end right) pos)
9700 :op-pos op-pos
9701 :left left
9702 :right right))
9703 (when js2-parse-ide-mode
9704 (js2-highlight-assign-targets pn left right)
9705 (js2-record-imenu-functions right left))
9706 ;; do this last so ide checks above can use absolute positions
9707 (js2-node-add-children pn left right))
9708 ((and (= tt js2-ARROW)
9709 (>= js2-language-version 200))
9710 (js2-ts-seek ts-state)
9711 (setq js2-recorded-identifiers recorded-identifiers
9712 js2-parsed-errors parsed-errors)
9713 (setq pn (js2-parse-function 'FUNCTION_ARROW (js2-current-token-beg) nil async-p)))
9714 (t
9715 (js2-unget-token)))
9716 pn)))
9717
9718 (defun js2-parse-cond-expr ()
9719 (let ((pos (js2-current-token-beg))
9720 (pn (js2-parse-or-expr))
9721 test-expr
9722 if-true
9723 if-false
9724 q-pos
9725 c-pos)
9726 (when (js2-match-token js2-HOOK)
9727 (setq q-pos (- (js2-current-token-beg) pos)
9728 if-true (let (js2-in-for-init) (js2-parse-assign-expr)))
9729 (js2-must-match js2-COLON "msg.no.colon.cond")
9730 (setq c-pos (- (js2-current-token-beg) pos)
9731 if-false (js2-parse-assign-expr)
9732 test-expr pn
9733 pn (make-js2-cond-node :pos pos
9734 :len (- (js2-node-end if-false) pos)
9735 :test-expr test-expr
9736 :true-expr if-true
9737 :false-expr if-false
9738 :q-pos q-pos
9739 :c-pos c-pos))
9740 (js2-node-add-children pn test-expr if-true if-false))
9741 pn))
9742
9743 (defun js2-make-binary (type left parser &optional no-get)
9744 "Helper for constructing a binary-operator AST node.
9745 LEFT is the left-side-expression, already parsed, and the
9746 binary operator should have just been matched.
9747 PARSER is a function to call to parse the right operand,
9748 or a `js2-node' struct if it has already been parsed.
9749 FIXME: The latter option is unused?"
9750 (let* ((pos (js2-node-pos left))
9751 (op-pos (- (js2-current-token-beg) pos))
9752 (right (if (js2-node-p parser)
9753 parser
9754 (unless no-get (js2-get-token))
9755 (funcall parser)))
9756 (pn (make-js2-infix-node :type type
9757 :pos pos
9758 :len (- (js2-node-end right) pos)
9759 :op-pos op-pos
9760 :left left
9761 :right right)))
9762 (js2-node-add-children pn left right)
9763 pn))
9764
9765 (defun js2-parse-or-expr ()
9766 (let ((pn (js2-parse-and-expr)))
9767 (when (js2-match-token js2-OR)
9768 (setq pn (js2-make-binary js2-OR
9769 pn
9770 'js2-parse-or-expr)))
9771 pn))
9772
9773 (defun js2-parse-and-expr ()
9774 (let ((pn (js2-parse-bit-or-expr)))
9775 (when (js2-match-token js2-AND)
9776 (setq pn (js2-make-binary js2-AND
9777 pn
9778 'js2-parse-and-expr)))
9779 pn))
9780
9781 (defun js2-parse-bit-or-expr ()
9782 (let ((pn (js2-parse-bit-xor-expr)))
9783 (while (js2-match-token js2-BITOR)
9784 (setq pn (js2-make-binary js2-BITOR
9785 pn
9786 'js2-parse-bit-xor-expr)))
9787 pn))
9788
9789 (defun js2-parse-bit-xor-expr ()
9790 (let ((pn (js2-parse-bit-and-expr)))
9791 (while (js2-match-token js2-BITXOR)
9792 (setq pn (js2-make-binary js2-BITXOR
9793 pn
9794 'js2-parse-bit-and-expr)))
9795 pn))
9796
9797 (defun js2-parse-bit-and-expr ()
9798 (let ((pn (js2-parse-eq-expr)))
9799 (while (js2-match-token js2-BITAND)
9800 (setq pn (js2-make-binary js2-BITAND
9801 pn
9802 'js2-parse-eq-expr)))
9803 pn))
9804
9805 (defconst js2-parse-eq-ops
9806 (list js2-EQ js2-NE js2-SHEQ js2-SHNE))
9807
9808 (defun js2-parse-eq-expr ()
9809 (let ((pn (js2-parse-rel-expr))
9810 tt)
9811 (while (memq (setq tt (js2-get-token)) js2-parse-eq-ops)
9812 (setq pn (js2-make-binary tt
9813 pn
9814 'js2-parse-rel-expr)))
9815 (js2-unget-token)
9816 pn))
9817
9818 (defconst js2-parse-rel-ops
9819 (list js2-IN js2-INSTANCEOF js2-LE js2-LT js2-GE js2-GT))
9820
9821 (defun js2-parse-rel-expr ()
9822 (let ((pn (js2-parse-shift-expr))
9823 (continue t)
9824 tt)
9825 (while continue
9826 (setq tt (js2-get-token))
9827 (cond
9828 ((and js2-in-for-init (= tt js2-IN))
9829 (js2-unget-token)
9830 (setq continue nil))
9831 ((memq tt js2-parse-rel-ops)
9832 (setq pn (js2-make-binary tt pn 'js2-parse-shift-expr)))
9833 (t
9834 (js2-unget-token)
9835 (setq continue nil))))
9836 pn))
9837
9838 (defconst js2-parse-shift-ops
9839 (list js2-LSH js2-URSH js2-RSH))
9840
9841 (defun js2-parse-shift-expr ()
9842 (let ((pn (js2-parse-add-expr))
9843 tt
9844 (continue t))
9845 (while continue
9846 (setq tt (js2-get-token))
9847 (if (memq tt js2-parse-shift-ops)
9848 (setq pn (js2-make-binary tt pn 'js2-parse-add-expr))
9849 (js2-unget-token)
9850 (setq continue nil)))
9851 pn))
9852
9853 (defun js2-parse-add-expr ()
9854 (let ((pn (js2-parse-mul-expr))
9855 tt
9856 (continue t))
9857 (while continue
9858 (setq tt (js2-get-token))
9859 (if (or (= tt js2-ADD) (= tt js2-SUB))
9860 (setq pn (js2-make-binary tt pn 'js2-parse-mul-expr))
9861 (js2-unget-token)
9862 (setq continue nil)))
9863 pn))
9864
9865 (defconst js2-parse-mul-ops
9866 (list js2-MUL js2-DIV js2-MOD))
9867
9868 (defun js2-parse-mul-expr ()
9869 (let ((pn (js2-parse-unary-expr))
9870 tt
9871 (continue t))
9872 (while continue
9873 (setq tt (js2-get-token))
9874 (if (memq tt js2-parse-mul-ops)
9875 (setq pn (js2-make-binary tt pn 'js2-parse-unary-expr))
9876 (js2-unget-token)
9877 (setq continue nil)))
9878 pn))
9879
9880 (defun js2-make-unary (type parser &rest args)
9881 "Make a unary node of type TYPE.
9882 PARSER is either a node (for postfix operators) or a function to call
9883 to parse the operand (for prefix operators)."
9884 (let* ((pos (js2-current-token-beg))
9885 (postfix (js2-node-p parser))
9886 (expr (if postfix
9887 parser
9888 (apply parser args)))
9889 end
9890 pn)
9891 (if postfix ; e.g. i++
9892 (setq pos (js2-node-pos expr)
9893 end (js2-current-token-end))
9894 (setq end (js2-node-end expr)))
9895 (setq pn (make-js2-unary-node :type type
9896 :pos pos
9897 :len (- end pos)
9898 :operand expr))
9899 (js2-node-add-children pn expr)
9900 pn))
9901
9902 (defun js2-make-await ()
9903 "Make an await node."
9904 (let* ((pos (js2-current-token-beg))
9905 (expr (js2-parse-unary-expr))
9906 (end (js2-node-end expr))
9907 pn)
9908 (setq pn (make-js2-await-node :pos pos
9909 :len (- end pos)
9910 :operand expr))
9911 (js2-node-add-children pn expr)
9912 pn))
9913
9914 (defconst js2-incrementable-node-types
9915 (list js2-NAME js2-GETPROP js2-GETELEM js2-GET_REF js2-CALL)
9916 "Node types that can be the operand of a ++ or -- operator.")
9917
9918 (defun js2-check-bad-inc-dec (tt beg end unary)
9919 (unless (memq (js2-node-type (js2-unary-node-operand unary))
9920 js2-incrementable-node-types)
9921 (js2-report-error (if (= tt js2-INC)
9922 "msg.bad.incr"
9923 "msg.bad.decr")
9924 nil beg (- end beg))))
9925
9926 (defun js2-parse-unary-expr ()
9927 (let ((tt (js2-current-token-type))
9928 pn expr beg end)
9929 (cond
9930 ((or (= tt js2-VOID)
9931 (= tt js2-NOT)
9932 (= tt js2-BITNOT)
9933 (= tt js2-TYPEOF))
9934 (js2-get-token)
9935 (js2-make-unary tt 'js2-parse-unary-expr))
9936 ((= tt js2-ADD)
9937 (js2-get-token)
9938 ;; Convert to special POS token in decompiler and parse tree
9939 (js2-make-unary js2-POS 'js2-parse-unary-expr))
9940 ((= tt js2-SUB)
9941 (js2-get-token)
9942 ;; Convert to special NEG token in decompiler and parse tree
9943 (js2-make-unary js2-NEG 'js2-parse-unary-expr))
9944 ((or (= tt js2-INC)
9945 (= tt js2-DEC))
9946 (js2-get-token)
9947 (prog1
9948 (setq beg (js2-current-token-beg)
9949 end (js2-current-token-end)
9950 expr (js2-make-unary tt 'js2-parse-member-expr t))
9951 (js2-check-bad-inc-dec tt beg end expr)))
9952 ((= tt js2-DELPROP)
9953 (js2-get-token)
9954 (js2-make-unary js2-DELPROP 'js2-parse-unary-expr))
9955 ((js2-match-await)
9956 (js2-make-unary js2-AWAIT 'js2-parse-unary-expr))
9957 ((= tt js2-ERROR)
9958 (js2-get-token)
9959 (make-js2-error-node)) ; try to continue
9960 ((and (= tt js2-LT)
9961 js2-compiler-xml-available)
9962 ;; XML stream encountered in expression.
9963 (js2-parse-member-expr-tail t (js2-parse-xml-initializer)))
9964 (t
9965 (setq pn (js2-parse-member-expr t)
9966 ;; Don't look across a newline boundary for a postfix incop.
9967 tt (js2-peek-token-or-eol))
9968 (when (or (= tt js2-INC) (= tt js2-DEC))
9969 (js2-get-token)
9970 (setf expr pn
9971 pn (js2-make-unary tt expr))
9972 (js2-node-set-prop pn 'postfix t)
9973 (js2-check-bad-inc-dec tt (js2-current-token-beg) (js2-current-token-end) pn))
9974 pn))))
9975
9976 (defun js2-parse-xml-initializer ()
9977 "Parse an E4X XML initializer.
9978 I'm parsing it the way Rhino parses it, but without the tree-rewriting.
9979 Then I'll postprocess the result, depending on whether we're in IDE
9980 mode or codegen mode, and generate the appropriate rewritten AST.
9981 IDE mode uses a rich AST that models the XML structure. Codegen mode
9982 just concatenates everything and makes a new XML or XMLList out of it."
9983 (let ((tt (js2-get-first-xml-token))
9984 pn-xml pn expr kids expr-pos
9985 (continue t)
9986 (first-token t))
9987 (when (not (or (= tt js2-XML) (= tt js2-XMLEND)))
9988 (js2-report-error "msg.syntax"))
9989 (setq pn-xml (make-js2-xml-node))
9990 (while continue
9991 (if first-token
9992 (setq first-token nil)
9993 (setq tt (js2-get-next-xml-token)))
9994 (cond
9995 ;; js2-XML means we found a {expr} in the XML stream.
9996 ;; The token string is the XML up to the left-curly.
9997 ((= tt js2-XML)
9998 (push (make-js2-string-node :pos (js2-current-token-beg)
9999 :len (- js2-ts-cursor (js2-current-token-beg)))
10000 kids)
10001 (js2-must-match js2-LC "msg.syntax")
10002 (setq expr-pos js2-ts-cursor
10003 expr (if (eq (js2-peek-token) js2-RC)
10004 (make-js2-empty-expr-node :pos expr-pos)
10005 (js2-parse-expr)))
10006 (js2-must-match js2-RC "msg.syntax")
10007 (setq pn (make-js2-xml-js-expr-node :pos (js2-node-pos expr)
10008 :len (js2-node-len expr)
10009 :expr expr))
10010 (js2-node-add-children pn expr)
10011 (push pn kids))
10012 ;; a js2-XMLEND token means we hit the final close-tag.
10013 ((= tt js2-XMLEND)
10014 (push (make-js2-string-node :pos (js2-current-token-beg)
10015 :len (- js2-ts-cursor (js2-current-token-beg)))
10016 kids)
10017 (dolist (kid (nreverse kids))
10018 (js2-block-node-push pn-xml kid))
10019 (setf (js2-node-len pn-xml) (- js2-ts-cursor
10020 (js2-node-pos pn-xml))
10021 continue nil))
10022 (t
10023 (js2-report-error "msg.syntax")
10024 (setq continue nil))))
10025 pn-xml))
10026
10027
10028 (defun js2-parse-argument-list ()
10029 "Parse an argument list and return it as a Lisp list of nodes.
10030 Returns the list in reverse order. Consumes the right-paren token."
10031 (let (result)
10032 (unless (js2-match-token js2-RP)
10033 (cl-loop do
10034 (let ((tt (js2-get-token)))
10035 (if (= tt js2-YIELD)
10036 (js2-report-error "msg.yield.parenthesized"))
10037 (if (and (= tt js2-TRIPLEDOT)
10038 (>= js2-language-version 200))
10039 (push (js2-make-unary tt 'js2-parse-assign-expr) result)
10040 (js2-unget-token)
10041 (push (js2-parse-assign-expr) result)))
10042 while
10043 (js2-match-token js2-COMMA))
10044 (js2-must-match js2-RP "msg.no.paren.arg")
10045 result)))
10046
10047 (defun js2-parse-member-expr (&optional allow-call-syntax)
10048 (let ((tt (js2-current-token-type))
10049 pn pos target args beg end init)
10050 (if (/= tt js2-NEW)
10051 (setq pn (js2-parse-primary-expr))
10052 ;; parse a 'new' expression
10053 (js2-get-token)
10054 (setq pos (js2-current-token-beg)
10055 beg pos
10056 target (js2-parse-member-expr)
10057 end (js2-node-end target)
10058 pn (make-js2-new-node :pos pos
10059 :target target
10060 :len (- end pos)))
10061 (js2-highlight-function-call (js2-current-token))
10062 (js2-node-add-children pn target)
10063 (when (js2-match-token js2-LP)
10064 ;; Add the arguments to pn, if any are supplied.
10065 (setf beg pos ; start of "new" keyword
10066 pos (js2-current-token-beg)
10067 args (nreverse (js2-parse-argument-list))
10068 (js2-new-node-args pn) args
10069 end (js2-current-token-end)
10070 (js2-new-node-lp pn) (- pos beg)
10071 (js2-new-node-rp pn) (- end 1 beg))
10072 (apply #'js2-node-add-children pn args))
10073 (when (and js2-allow-rhino-new-expr-initializer
10074 (js2-match-token js2-LC))
10075 (setf init (js2-parse-object-literal)
10076 end (js2-node-end init)
10077 (js2-new-node-initializer pn) init)
10078 (js2-node-add-children pn init))
10079 (setf (js2-node-len pn) (- end beg))) ; end outer if
10080 (js2-parse-member-expr-tail allow-call-syntax pn)))
10081
10082 (defun js2-parse-member-expr-tail (allow-call-syntax pn)
10083 "Parse a chain of property/array accesses or function calls.
10084 Includes parsing for E4X operators like `..' and `.@'.
10085 If ALLOW-CALL-SYNTAX is nil, stops when we encounter a left-paren.
10086 Returns an expression tree that includes PN, the parent node."
10087 (let (tt
10088 (continue t))
10089 (while continue
10090 (setq tt (js2-get-token))
10091 (cond
10092 ((or (= tt js2-DOT) (= tt js2-DOTDOT))
10093 (setq pn (js2-parse-property-access tt pn)))
10094 ((= tt js2-DOTQUERY)
10095 (setq pn (js2-parse-dot-query pn)))
10096 ((= tt js2-LB)
10097 (setq pn (js2-parse-element-get pn)))
10098 ((= tt js2-LP)
10099 (js2-unget-token)
10100 (if allow-call-syntax
10101 (setq pn (js2-parse-function-call pn))
10102 (setq continue nil)))
10103 ((= tt js2-TEMPLATE_HEAD)
10104 (setq pn (js2-parse-tagged-template pn (js2-parse-template-literal))))
10105 ((= tt js2-NO_SUBS_TEMPLATE)
10106 (setq pn (js2-parse-tagged-template pn (make-js2-string-node :type tt))))
10107 (t
10108 (js2-unget-token)
10109 (setq continue nil)))
10110 (if (>= js2-highlight-level 2)
10111 (js2-parse-highlight-member-expr-node pn)))
10112 pn))
10113
10114 (defun js2-parse-tagged-template (tag-node tpl-node)
10115 "Parse tagged template expression."
10116 (let* ((beg (js2-node-pos tag-node))
10117 (pn (make-js2-tagged-template-node :beg beg
10118 :len (- (js2-current-token-end) beg)
10119 :tag tag-node
10120 :template tpl-node)))
10121 (js2-node-add-children pn tag-node tpl-node)
10122 pn))
10123
10124 (defun js2-parse-dot-query (pn)
10125 "Parse a dot-query expression, e.g. foo.bar.(@name == 2)
10126 Last token parsed must be `js2-DOTQUERY'."
10127 (let ((pos (js2-node-pos pn))
10128 op-pos expr end)
10129 (js2-must-have-xml)
10130 (js2-set-requires-activation)
10131 (setq op-pos (js2-current-token-beg)
10132 expr (js2-parse-expr)
10133 end (js2-node-end expr)
10134 pn (make-js2-xml-dot-query-node :left pn
10135 :pos pos
10136 :op-pos op-pos
10137 :right expr))
10138 (js2-node-add-children pn
10139 (js2-xml-dot-query-node-left pn)
10140 (js2-xml-dot-query-node-right pn))
10141 (if (js2-must-match js2-RP "msg.no.paren")
10142 (setf (js2-xml-dot-query-node-rp pn) (js2-current-token-beg)
10143 end (js2-current-token-end)))
10144 (setf (js2-node-len pn) (- end pos))
10145 pn))
10146
10147 (defun js2-parse-element-get (pn)
10148 "Parse an element-get expression, e.g. foo[bar].
10149 Last token parsed must be `js2-RB'."
10150 (let ((lb (js2-current-token-beg))
10151 (pos (js2-node-pos pn))
10152 rb expr)
10153 (setq expr (js2-parse-expr))
10154 (if (js2-must-match js2-RB "msg.no.bracket.index")
10155 (setq rb (js2-current-token-beg)))
10156 (setq pn (make-js2-elem-get-node :target pn
10157 :pos pos
10158 :element expr
10159 :lb (js2-relpos lb pos)
10160 :rb (js2-relpos rb pos)
10161 :len (- (js2-current-token-end) pos)))
10162 (js2-node-add-children pn
10163 (js2-elem-get-node-target pn)
10164 (js2-elem-get-node-element pn))
10165 pn))
10166
10167 (defun js2-highlight-function-call (token)
10168 (when (eq (js2-token-type token) js2-NAME)
10169 (js2-record-face 'js2-function-call token)))
10170
10171 (defun js2-parse-function-call (pn)
10172 (js2-highlight-function-call (js2-current-token))
10173 (js2-get-token)
10174 (let (args
10175 (pos (js2-node-pos pn)))
10176 (setq pn (make-js2-call-node :pos pos
10177 :target pn
10178 :lp (- (js2-current-token-beg) pos)))
10179 (js2-node-add-children pn (js2-call-node-target pn))
10180 ;; Add the arguments to pn, if any are supplied.
10181 (setf args (nreverse (js2-parse-argument-list))
10182 (js2-call-node-rp pn) (- (js2-current-token-beg) pos)
10183 (js2-call-node-args pn) args)
10184 (apply #'js2-node-add-children pn args)
10185 (setf (js2-node-len pn) (- js2-ts-cursor pos))
10186 pn))
10187
10188 (defun js2-parse-property-access (tt pn)
10189 "Parse a property access, XML descendants access, or XML attr access."
10190 (let ((member-type-flags 0)
10191 (dot-pos (js2-current-token-beg))
10192 (dot-len (if (= tt js2-DOTDOT) 2 1))
10193 name
10194 ref ; right side of . or .. operator
10195 result)
10196 (when (= tt js2-DOTDOT)
10197 (js2-must-have-xml)
10198 (setq member-type-flags js2-descendants-flag))
10199 (if (not js2-compiler-xml-available)
10200 (progn
10201 (js2-must-match-prop-name "msg.no.name.after.dot")
10202 (setq name (js2-create-name-node t js2-GETPROP)
10203 result (make-js2-prop-get-node :left pn
10204 :pos (js2-current-token-beg)
10205 :right name
10206 :len (js2-current-token-len)))
10207 (js2-node-add-children result pn name)
10208 result)
10209 ;; otherwise look for XML operators
10210 (setf result (if (= tt js2-DOT)
10211 (make-js2-prop-get-node)
10212 (make-js2-infix-node :type js2-DOTDOT))
10213 (js2-node-pos result) (js2-node-pos pn)
10214 (js2-infix-node-op-pos result) dot-pos
10215 (js2-infix-node-left result) pn ; do this after setting position
10216 tt (js2-get-prop-name-token))
10217 (cond
10218 ;; handles: name, ns::name, ns::*, ns::[expr]
10219 ((= tt js2-NAME)
10220 (setq ref (js2-parse-property-name -1 nil member-type-flags)))
10221 ;; handles: *, *::name, *::*, *::[expr]
10222 ((= tt js2-MUL)
10223 (setq ref (js2-parse-property-name nil "*" member-type-flags)))
10224 ;; handles: '@attr', '@ns::attr', '@ns::*', '@ns::[expr]', etc.
10225 ((= tt js2-XMLATTR)
10226 (setq result (js2-parse-attribute-access)))
10227 (t
10228 (js2-report-error "msg.no.name.after.dot" nil dot-pos dot-len)))
10229 (if ref
10230 (setf (js2-node-len result) (- (js2-node-end ref)
10231 (js2-node-pos result))
10232 (js2-infix-node-right result) ref))
10233 (if (js2-infix-node-p result)
10234 (js2-node-add-children result
10235 (js2-infix-node-left result)
10236 (js2-infix-node-right result)))
10237 result)))
10238
10239 (defun js2-parse-attribute-access ()
10240 "Parse an E4X XML attribute expression.
10241 This includes expressions of the forms:
10242
10243 @attr @ns::attr @ns::*
10244 @* @*::attr @*::*
10245 @[expr] @*::[expr] @ns::[expr]
10246
10247 Called if we peeked an '@' token."
10248 (let ((tt (js2-get-prop-name-token))
10249 (at-pos (js2-current-token-beg)))
10250 (cond
10251 ;; handles: @name, @ns::name, @ns::*, @ns::[expr]
10252 ((= tt js2-NAME)
10253 (js2-parse-property-name at-pos nil 0))
10254 ;; handles: @*, @*::name, @*::*, @*::[expr]
10255 ((= tt js2-MUL)
10256 (js2-parse-property-name (js2-current-token-beg) "*" 0))
10257 ;; handles @[expr]
10258 ((= tt js2-LB)
10259 (js2-parse-xml-elem-ref at-pos))
10260 (t
10261 (js2-report-error "msg.no.name.after.xmlAttr")
10262 ;; Avoid cascaded errors that happen if we make an error node here.
10263 (js2-parse-property-name (js2-current-token-beg) "" 0)))))
10264
10265 (defun js2-parse-property-name (at-pos s member-type-flags)
10266 "Check if :: follows name in which case it becomes qualified name.
10267
10268 AT-POS is a natural number if we just read an '@' token, else nil.
10269 S is the name or string that was matched: an identifier, 'throw' or '*'.
10270 MEMBER-TYPE-FLAGS is a bit set tracking whether we're a '.' or '..' child.
10271
10272 Returns a `js2-xml-ref-node' if it's an attribute access, a child of a '..'
10273 operator, or the name is followed by ::. For a plain name, returns a
10274 `js2-name-node'. Returns a `js2-error-node' for malformed XML expressions."
10275 (let ((pos (or at-pos (js2-current-token-beg)))
10276 colon-pos
10277 (name (js2-create-name-node t (js2-current-token-type) s))
10278 ns tt pn)
10279 (catch 'return
10280 (when (js2-match-token js2-COLONCOLON)
10281 (setq ns name
10282 colon-pos (js2-current-token-beg)
10283 tt (js2-get-prop-name-token))
10284 (cond
10285 ;; handles name::name
10286 ((= tt js2-NAME)
10287 (setq name (js2-create-name-node)))
10288 ;; handles name::*
10289 ((= tt js2-MUL)
10290 (setq name (js2-create-name-node nil nil "*")))
10291 ;; handles name::[expr]
10292 ((= tt js2-LB)
10293 (throw 'return (js2-parse-xml-elem-ref at-pos ns colon-pos)))
10294 (t
10295 (js2-report-error "msg.no.name.after.coloncolon"))))
10296 (if (and (null ns) (zerop member-type-flags))
10297 name
10298 (prog1
10299 (setq pn
10300 (make-js2-xml-prop-ref-node :pos pos
10301 :len (- (js2-node-end name) pos)
10302 :at-pos at-pos
10303 :colon-pos colon-pos
10304 :propname name))
10305 (js2-node-add-children pn name))))))
10306
10307 (defun js2-parse-xml-elem-ref (at-pos &optional namespace colon-pos)
10308 "Parse the [expr] portion of an xml element reference.
10309 For instance, @[expr], @*::[expr], or ns::[expr]."
10310 (let* ((lb (js2-current-token-beg))
10311 (pos (or at-pos lb))
10312 rb
10313 (expr (js2-parse-expr))
10314 (end (js2-node-end expr))
10315 pn)
10316 (if (js2-must-match js2-RB "msg.no.bracket.index")
10317 (setq rb (js2-current-token-beg)
10318 end (js2-current-token-end)))
10319 (prog1
10320 (setq pn
10321 (make-js2-xml-elem-ref-node :pos pos
10322 :len (- end pos)
10323 :namespace namespace
10324 :colon-pos colon-pos
10325 :at-pos at-pos
10326 :expr expr
10327 :lb (js2-relpos lb pos)
10328 :rb (js2-relpos rb pos)))
10329 (js2-node-add-children pn namespace expr))))
10330
10331 (defun js2-parse-destruct-primary-expr ()
10332 (let ((js2-is-in-destructuring t))
10333 (js2-parse-primary-expr)))
10334
10335 (defun js2-parse-primary-expr ()
10336 "Parse a literal (leaf) expression of some sort.
10337 Includes complex literals such as functions, object-literals,
10338 array-literals, array comprehensions and regular expressions."
10339 (let (tt node)
10340 (setq tt (js2-current-token-type))
10341 (cond
10342 ((= tt js2-CLASS)
10343 (js2-parse-class-expr))
10344 ((= tt js2-FUNCTION)
10345 (js2-parse-function-expr))
10346 ((js2-match-async-function)
10347 (js2-parse-function-expr t))
10348 ((= tt js2-LB)
10349 (js2-parse-array-comp-or-literal))
10350 ((= tt js2-LC)
10351 (js2-parse-object-literal))
10352 ((= tt js2-LET)
10353 (js2-parse-let (js2-current-token-beg)))
10354 ((= tt js2-LP)
10355 (js2-parse-paren-expr-or-generator-comp))
10356 ((= tt js2-XMLATTR)
10357 (js2-must-have-xml)
10358 (js2-parse-attribute-access))
10359 ((= tt js2-NAME)
10360 (js2-parse-name tt))
10361 ((= tt js2-NUMBER)
10362 (setq node (make-js2-number-node))
10363 (when (and js2-in-use-strict-directive
10364 (= (js2-number-node-num-base node) 8)
10365 (js2-number-node-legacy-octal-p node))
10366 (js2-report-error "msg.no.octal.strict"))
10367 node)
10368 ((or (= tt js2-STRING) (= tt js2-NO_SUBS_TEMPLATE))
10369 (make-js2-string-node :type tt))
10370 ((= tt js2-TEMPLATE_HEAD)
10371 (js2-parse-template-literal))
10372 ((or (= tt js2-DIV) (= tt js2-ASSIGN_DIV))
10373 ;; Got / or /= which in this context means a regexp literal
10374 (let ((px-pos (js2-current-token-beg))
10375 (flags (js2-read-regexp tt))
10376 (end (js2-current-token-end)))
10377 (prog1
10378 (make-js2-regexp-node :pos px-pos
10379 :len (- end px-pos)
10380 :value (js2-current-token-string)
10381 :flags flags)
10382 (js2-set-face px-pos end 'font-lock-string-face 'record)
10383 (js2-record-text-property px-pos end 'syntax-table '(2)))))
10384 ((or (= tt js2-NULL)
10385 (= tt js2-THIS)
10386 (= tt js2-SUPER)
10387 (= tt js2-FALSE)
10388 (= tt js2-TRUE))
10389 (make-js2-keyword-node :type tt))
10390 ((= tt js2-TRIPLEDOT)
10391 ;; Likewise, only valid in an arrow function with a rest param.
10392 (if (and (js2-match-token js2-NAME)
10393 (js2-match-token js2-RP)
10394 (eq (js2-peek-token) js2-ARROW))
10395 (progn
10396 (js2-unget-token) ; Put back the right paren.
10397 ;; See the previous case.
10398 (make-js2-keyword-node :type js2-NULL))
10399 (js2-report-error "msg.syntax")
10400 (make-js2-error-node)))
10401 ((= tt js2-RESERVED)
10402 (js2-report-error "msg.reserved.id")
10403 (make-js2-name-node))
10404 ((= tt js2-ERROR)
10405 ;; the scanner or one of its subroutines reported the error.
10406 (make-js2-error-node))
10407 ((= tt js2-EOF)
10408 (let* ((px-pos (point-at-bol))
10409 (len (- js2-ts-cursor px-pos)))
10410 (js2-report-error "msg.unexpected.eof" nil px-pos len))
10411 (make-js2-error-node :pos (1- js2-ts-cursor)))
10412 (t
10413 (js2-report-error "msg.syntax")
10414 (make-js2-error-node)))))
10415
10416 (defun js2-parse-template-literal ()
10417 (let ((beg (js2-current-token-beg))
10418 (kids (list (make-js2-string-node :type js2-TEMPLATE_HEAD)))
10419 (tt js2-TEMPLATE_HEAD))
10420 (while (eq tt js2-TEMPLATE_HEAD)
10421 (push (js2-parse-expr) kids)
10422 (js2-must-match js2-RC "msg.syntax")
10423 (setq tt (js2-get-token 'TEMPLATE_TAIL))
10424 (push (make-js2-string-node :type tt) kids))
10425 (setq kids (nreverse kids))
10426 (let ((tpl (make-js2-template-node :beg beg
10427 :len (- (js2-current-token-end) beg)
10428 :kids kids)))
10429 (apply #'js2-node-add-children tpl kids)
10430 tpl)))
10431
10432 (defun js2-parse-name (_tt)
10433 (let ((name (js2-current-token-string))
10434 node)
10435 (setq node (if js2-compiler-xml-available
10436 (js2-parse-property-name nil name 0)
10437 (js2-create-name-node 'check-activation nil name)))
10438 (if js2-highlight-external-variables
10439 (js2-record-name-node node))
10440 node))
10441
10442 (defun js2-parse-warn-trailing-comma (msg pos elems comma-pos)
10443 (js2-add-strict-warning
10444 msg nil
10445 ;; back up from comma to beginning of line or array/objlit
10446 (max (if elems
10447 (js2-node-pos (car elems))
10448 pos)
10449 (save-excursion
10450 (goto-char comma-pos)
10451 (back-to-indentation)
10452 (point)))
10453 comma-pos))
10454
10455 (defun js2-parse-array-comp-or-literal ()
10456 (let ((pos (js2-current-token-beg)))
10457 (if (and (>= js2-language-version 200)
10458 (js2-match-token js2-FOR))
10459 (js2-parse-array-comp pos)
10460 (js2-parse-array-literal pos))))
10461
10462 (defun js2-parse-array-literal (pos)
10463 (let ((after-lb-or-comma t)
10464 after-comma tt elems pn was-rest
10465 (continue t))
10466 (unless js2-is-in-destructuring
10467 (js2-push-scope (make-js2-scope))) ; for the legacy array comp
10468 (while continue
10469 (setq tt (js2-get-token))
10470 (cond
10471 ;; end of array
10472 ((or (= tt js2-RB)
10473 (= tt js2-EOF)) ; prevent infinite loop
10474 (if (= tt js2-EOF)
10475 (js2-report-error "msg.no.bracket.arg" nil pos))
10476 (when (and after-comma (< js2-language-version 170))
10477 (js2-parse-warn-trailing-comma "msg.array.trailing.comma"
10478 pos (remove nil elems) after-comma))
10479 (setq continue nil
10480 pn (make-js2-array-node :pos pos
10481 :len (- js2-ts-cursor pos)
10482 :elems (nreverse elems)))
10483 (apply #'js2-node-add-children pn (js2-array-node-elems pn)))
10484 ;; anything after rest element (...foo)
10485 (was-rest
10486 (js2-report-error "msg.param.after.rest"))
10487 ;; comma
10488 ((= tt js2-COMMA)
10489 (setq after-comma (js2-current-token-end))
10490 (if (not after-lb-or-comma)
10491 (setq after-lb-or-comma t)
10492 (push nil elems)))
10493 ;; array comp
10494 ((and (>= js2-language-version 170)
10495 (not js2-is-in-destructuring)
10496 (= tt js2-FOR) ; check for array comprehension
10497 (not after-lb-or-comma) ; "for" can't follow a comma
10498 elems ; must have at least 1 element
10499 (not (cdr elems))) ; but no 2nd element
10500 (js2-unget-token)
10501 (setf continue nil
10502 pn (js2-parse-legacy-array-comp (car elems) pos)))
10503 ;; another element
10504 (t
10505 (unless after-lb-or-comma
10506 (js2-report-error "msg.no.bracket.arg"))
10507 (if (and (= tt js2-TRIPLEDOT)
10508 (>= js2-language-version 200))
10509 ;; rest/spread operator
10510 (progn
10511 (push (js2-make-unary tt 'js2-parse-assign-expr)
10512 elems)
10513 (if js2-is-in-destructuring
10514 (setq was-rest t)))
10515 (js2-unget-token)
10516 (push (js2-parse-assign-expr) elems))
10517 (setq after-lb-or-comma nil
10518 after-comma nil))))
10519 (unless js2-is-in-destructuring
10520 (js2-pop-scope))
10521 pn))
10522
10523 (defun js2-parse-legacy-array-comp (expr pos)
10524 "Parse a legacy array comprehension (JavaScript 1.7).
10525 EXPR is the first expression after the opening left-bracket.
10526 POS is the beginning of the LB token preceding EXPR.
10527 We should have just parsed the 'for' keyword before calling this function."
10528 (let ((current-scope js2-current-scope)
10529 loops first filter result)
10530 (unwind-protect
10531 (progn
10532 (while (js2-match-token js2-FOR)
10533 (let ((loop (make-js2-comp-loop-node)))
10534 (js2-push-scope loop)
10535 (push loop loops)
10536 (js2-parse-comp-loop loop)))
10537 ;; First loop takes expr scope's parent.
10538 (setf (js2-scope-parent-scope (setq first (car (last loops))))
10539 (js2-scope-parent-scope current-scope))
10540 ;; Set expr scope's parent to the last loop.
10541 (setf (js2-scope-parent-scope current-scope) (car loops))
10542 (if (/= (js2-get-token) js2-IF)
10543 (js2-unget-token)
10544 (setq filter (js2-parse-condition))))
10545 (dotimes (_ (1- (length loops)))
10546 (js2-pop-scope)))
10547 (js2-must-match js2-RB "msg.no.bracket.arg" pos)
10548 (setq result (make-js2-comp-node :pos pos
10549 :len (- js2-ts-cursor pos)
10550 :result expr
10551 :loops (nreverse loops)
10552 :filters (and filter (list (car filter)))
10553 :form 'LEGACY_ARRAY))
10554 ;; Set comp loop's parent to the last loop.
10555 ;; TODO: Get rid of the bogus expr scope.
10556 (setf (js2-scope-parent-scope result) first)
10557 (apply #'js2-node-add-children result expr (car filter)
10558 (js2-comp-node-loops result))
10559 result))
10560
10561 (defun js2-parse-array-comp (pos)
10562 "Parse an ES6 array comprehension.
10563 POS is the beginning of the LB token.
10564 We should have just parsed the 'for' keyword before calling this function."
10565 (let ((pn (js2-parse-comprehension pos 'ARRAY)))
10566 (js2-must-match js2-RB "msg.no.bracket.arg" pos)
10567 pn))
10568
10569 (defun js2-parse-generator-comp (pos)
10570 (let* ((js2-nesting-of-function (1+ js2-nesting-of-function))
10571 (js2-current-script-or-fn
10572 (make-js2-function-node :generator-type 'COMPREHENSION))
10573 (pn (js2-parse-comprehension pos 'STAR_GENERATOR)))
10574 (js2-must-match js2-RP "msg.no.paren" pos)
10575 pn))
10576
10577 (defun js2-parse-comprehension (pos form)
10578 (let (loops filters expr result last)
10579 (unwind-protect
10580 (progn
10581 (js2-unget-token)
10582 (while (js2-match-token js2-FOR)
10583 (let ((loop (make-js2-comp-loop-node)))
10584 (js2-push-scope loop)
10585 (push loop loops)
10586 (js2-parse-comp-loop loop)))
10587 (while (js2-match-token js2-IF)
10588 (push (car (js2-parse-condition)) filters))
10589 (setq expr (js2-parse-assign-expr))
10590 (setq last (car loops)))
10591 (dolist (_ loops)
10592 (js2-pop-scope)))
10593 (setq result (make-js2-comp-node :pos pos
10594 :len (- js2-ts-cursor pos)
10595 :result expr
10596 :loops (nreverse loops)
10597 :filters (nreverse filters)
10598 :form form))
10599 (apply #'js2-node-add-children result (js2-comp-node-loops result))
10600 (apply #'js2-node-add-children result expr (js2-comp-node-filters result))
10601 (setf (js2-scope-parent-scope result) last)
10602 result))
10603
10604 (defun js2-parse-comp-loop (pn &optional only-of-p)
10605 "Parse a 'for [each] (foo [in|of] bar)' expression in an Array comprehension.
10606 The current token should be the initial FOR.
10607 If ONLY-OF-P is non-nil, only the 'for (foo of bar)' form is allowed."
10608 (let ((pos (js2-comp-loop-node-pos pn))
10609 tt iter obj foreach-p forof-p in-pos each-pos lp rp)
10610 (when (and (not only-of-p) (js2-match-token js2-NAME))
10611 (if (string= (js2-current-token-string) "each")
10612 (progn
10613 (setq foreach-p t
10614 each-pos (- (js2-current-token-beg) pos)) ; relative
10615 (js2-record-face 'font-lock-keyword-face))
10616 (js2-report-error "msg.no.paren.for")))
10617 (if (js2-must-match js2-LP "msg.no.paren.for")
10618 (setq lp (- (js2-current-token-beg) pos)))
10619 (setq tt (js2-peek-token))
10620 (cond
10621 ((or (= tt js2-LB)
10622 (= tt js2-LC))
10623 (js2-get-token)
10624 (setq iter (js2-parse-destruct-primary-expr))
10625 (js2-define-destruct-symbols iter js2-LET
10626 'font-lock-variable-name-face t))
10627 ((js2-match-token js2-NAME)
10628 (setq iter (js2-create-name-node)))
10629 (t
10630 (js2-report-error "msg.bad.var")))
10631 ;; Define as a let since we want the scope of the variable to
10632 ;; be restricted to the array comprehension
10633 (if (js2-name-node-p iter)
10634 (js2-define-symbol js2-LET (js2-name-node-name iter) pn t))
10635 (if (or (and (not only-of-p) (js2-match-token js2-IN))
10636 (and (>= js2-language-version 200)
10637 (js2-match-contextual-kwd "of")
10638 (setq forof-p t)))
10639 (setq in-pos (- (js2-current-token-beg) pos))
10640 (js2-report-error "msg.in.after.for.name"))
10641 (setq obj (js2-parse-expr))
10642 (if (js2-must-match js2-RP "msg.no.paren.for.ctrl")
10643 (setq rp (- (js2-current-token-beg) pos)))
10644 (setf (js2-node-pos pn) pos
10645 (js2-node-len pn) (- js2-ts-cursor pos)
10646 (js2-comp-loop-node-iterator pn) iter
10647 (js2-comp-loop-node-object pn) obj
10648 (js2-comp-loop-node-in-pos pn) in-pos
10649 (js2-comp-loop-node-each-pos pn) each-pos
10650 (js2-comp-loop-node-foreach-p pn) foreach-p
10651 (js2-comp-loop-node-forof-p pn) forof-p
10652 (js2-comp-loop-node-lp pn) lp
10653 (js2-comp-loop-node-rp pn) rp)
10654 (js2-node-add-children pn iter obj)
10655 pn))
10656
10657 (defun js2-parse-class-stmt ()
10658 (let ((pos (js2-current-token-beg))
10659 (_ (js2-must-match-name "msg.unnamed.class.stmt"))
10660 (name (js2-create-name-node t)))
10661 (js2-set-face (js2-node-pos name) (js2-node-end name)
10662 'font-lock-function-name-face 'record)
10663 (let ((node (js2-parse-class pos 'CLASS_STATEMENT name)))
10664 (js2-define-symbol js2-FUNCTION
10665 (js2-name-node-name name)
10666 node)
10667 node)))
10668
10669 (defun js2-parse-class-expr ()
10670 (let ((pos (js2-current-token-beg))
10671 name)
10672 (when (js2-match-token js2-NAME)
10673 (setq name (js2-create-name-node t)))
10674 (js2-parse-class pos 'CLASS_EXPRESSION name)))
10675
10676 (defun js2-parse-class (pos form name)
10677 ;; class X [extends ...] {
10678 (let (pn elems extends)
10679 (if (js2-match-token js2-EXTENDS)
10680 (if (= (js2-peek-token) js2-LC)
10681 (js2-report-error "msg.missing.extends")
10682 ;; TODO(sdh): this should be left-hand-side-expr, not assign-expr
10683 (setq extends (js2-parse-assign-expr))
10684 (if (not extends)
10685 (js2-report-error "msg.bad.extends"))))
10686 (js2-must-match js2-LC "msg.no.brace.class")
10687 (setq elems (js2-parse-object-literal-elems t)
10688 pn (make-js2-class-node :pos pos
10689 :len (- js2-ts-cursor pos)
10690 :form form
10691 :name name
10692 :extends extends
10693 :elems elems))
10694 (apply #'js2-node-add-children pn (js2-class-node-elems pn))
10695 pn))
10696
10697 (defun js2-parse-object-literal ()
10698 (let* ((pos (js2-current-token-beg))
10699 (elems (js2-parse-object-literal-elems))
10700 (result (make-js2-object-node :pos pos
10701 :len (- js2-ts-cursor pos)
10702 :elems elems)))
10703 (apply #'js2-node-add-children result (js2-object-node-elems result))
10704 result))
10705
10706 (defun js2-property-key-string (property-node)
10707 "Return the key of PROPERTY-NODE (a `js2-object-prop-node' or
10708 `js2-method-node') as a string, or nil if it can't be
10709 represented as a string (e.g., the key is computed by an
10710 expression)."
10711 (cond
10712 ((js2-unary-node-p property-node) nil) ;; {...foo}
10713 (t
10714 (let ((key (js2-infix-node-left property-node)))
10715 (when (js2-computed-prop-name-node-p key)
10716 (setq key (js2-computed-prop-name-node-expr key)))
10717 (cond
10718 ((js2-name-node-p key)
10719 (js2-name-node-name key))
10720 ((js2-string-node-p key)
10721 (js2-string-node-value key))
10722 ((js2-number-node-p key)
10723 (js2-number-node-value key)))))))
10724
10725 (defun js2-parse-object-literal-elems (&optional class-p)
10726 (let ((pos (js2-current-token-beg))
10727 (static nil)
10728 (continue t)
10729 tt elems elem
10730 elem-key-string previous-elem-key-string
10731 after-comma previous-token)
10732 (while continue
10733 (setq tt (js2-get-prop-name-token)
10734 static nil
10735 elem nil
10736 previous-token nil)
10737 ;; Handle 'static' keyword only if we're in a class
10738 (when (and class-p (= js2-NAME tt)
10739 (string= "static" (js2-current-token-string)))
10740 (js2-record-face 'font-lock-keyword-face)
10741 (setq static t
10742 tt (js2-get-prop-name-token)))
10743 ;; Handle generator * before the property name for in-line functions
10744 (when (and (>= js2-language-version 200)
10745 (= js2-MUL tt))
10746 (setq previous-token (js2-current-token)
10747 tt (js2-get-prop-name-token)))
10748 ;; Handle getter, setter and async methods
10749 (let ((prop (js2-current-token-string)))
10750 (when (and (>= js2-language-version 200)
10751 (= js2-NAME tt)
10752 (member prop '("get" "set" "async"))
10753 (member (js2-peek-token)
10754 (list js2-NAME js2-STRING js2-NUMBER js2-LB)))
10755 (setq previous-token (js2-current-token)
10756 tt (js2-get-prop-name-token))))
10757 (cond
10758 ;; Rest/spread (...expr)
10759 ((and (>= js2-language-version 200)
10760 (not class-p) (not static) (not previous-token)
10761 (= js2-TRIPLEDOT tt))
10762 (setq after-comma nil
10763 elem (js2-make-unary js2-TRIPLEDOT 'js2-parse-assign-expr)))
10764 ;; Found a key/value property (of any sort)
10765 ((member tt (list js2-NAME js2-STRING js2-NUMBER js2-LB))
10766 (setq after-comma nil
10767 elem (js2-parse-named-prop tt pos previous-token))
10768 (if (and (null elem)
10769 (not js2-recover-from-parse-errors))
10770 (setq continue nil)))
10771 ;; Break out of loop, and handle trailing commas.
10772 ((or (= tt js2-RC)
10773 (= tt js2-EOF))
10774 (js2-unget-token)
10775 (setq continue nil)
10776 (if after-comma
10777 (js2-parse-warn-trailing-comma "msg.extra.trailing.comma"
10778 pos elems after-comma)))
10779 ;; Skip semicolons in a class body
10780 ((and class-p
10781 (= tt js2-SEMI))
10782 nil)
10783 (t
10784 (js2-report-error "msg.bad.prop")
10785 (unless js2-recover-from-parse-errors
10786 (setq continue nil)))) ; end switch
10787 ;; Handle static for classes' codegen.
10788 (if static
10789 (if elem (js2-node-set-prop elem 'STATIC t)
10790 (js2-report-error "msg.unexpected.static")))
10791 ;; Handle commas, depending on class-p.
10792 (let ((tok (js2-get-prop-name-token)))
10793 (if (eq tok js2-COMMA)
10794 (if class-p
10795 (js2-report-error "msg.class.unexpected.comma")
10796 (setq after-comma (js2-current-token-end)))
10797 (js2-unget-token)
10798 (unless class-p (setq continue nil))))
10799 (when elem
10800 (when (and js2-in-use-strict-directive
10801 (setq elem-key-string (js2-property-key-string elem))
10802 (cl-some
10803 (lambda (previous-elem)
10804 (and (setq previous-elem-key-string
10805 (js2-property-key-string previous-elem))
10806 ;; Check if the property is a duplicate.
10807 (string= previous-elem-key-string elem-key-string)
10808 ;; But make an exception for getter / setter pairs.
10809 (not (and (js2-method-node-p elem)
10810 (js2-method-node-p previous-elem)
10811 (let ((type (js2-node-get-prop (js2-method-node-right elem) 'METHOD_TYPE))
10812 (previous-type (js2-node-get-prop (js2-method-node-right previous-elem) 'METHOD_TYPE)))
10813 (and (member type '(GET SET))
10814 (member previous-type '(GET SET))
10815 (not (eq type previous-type))))))))
10816 elems))
10817 (js2-report-error "msg.dup.obj.lit.prop.strict"
10818 elem-key-string
10819 (js2-node-abs-pos (js2-infix-node-left elem))
10820 (js2-node-len (js2-infix-node-left elem))))
10821 ;; Append any parsed element.
10822 (push elem elems))) ; end loop
10823 (js2-must-match js2-RC "msg.no.brace.prop")
10824 (nreverse elems)))
10825
10826 (defun js2-parse-named-prop (tt pos previous-token)
10827 "Parse a name, string, or getter/setter object property.
10828 When `js2-is-in-destructuring' is t, forms like {a, b, c} will be permitted."
10829 (let ((key (js2-parse-prop-name tt))
10830 (prop (and previous-token (js2-token-string previous-token)))
10831 (property-type (when previous-token
10832 (if (= (js2-token-type previous-token) js2-MUL)
10833 "*"
10834 (js2-token-string previous-token)))))
10835 (when (member prop '("get" "set" "async"))
10836 (js2-set-face (js2-token-beg previous-token)
10837 (js2-token-end previous-token)
10838 'font-lock-keyword-face 'record)) ; get/set/async
10839 (cond
10840 ;; method definition: {f() {...}}
10841 ((and (= (js2-peek-token) js2-LP)
10842 (>= js2-language-version 200))
10843 (when (js2-name-node-p key) ; highlight function name properties
10844 (js2-record-face 'font-lock-function-name-face))
10845 (js2-parse-method-prop pos key property-type))
10846 ;; binding element with initializer
10847 ((and (= (js2-peek-token) js2-ASSIGN)
10848 (>= js2-language-version 200))
10849 (if (not js2-is-in-destructuring)
10850 (js2-report-error "msg.init.no.destruct"))
10851 (js2-parse-initialized-binding key))
10852 ;; regular prop
10853 (t
10854 (let ((beg (js2-current-token-beg))
10855 (end (js2-current-token-end))
10856 (expr (js2-parse-plain-property key)))
10857 (when (and (= tt js2-NAME)
10858 (not js2-is-in-destructuring)
10859 js2-highlight-external-variables
10860 (js2-node-get-prop expr 'SHORTHAND))
10861 (js2-record-name-node key))
10862 (js2-set-face beg end
10863 (if (js2-function-node-p
10864 (js2-object-prop-node-right expr))
10865 'font-lock-function-name-face
10866 'js2-object-property)
10867 'record)
10868 expr)))))
10869
10870 (defun js2-parse-initialized-binding (name)
10871 "Parse a `SingleNameBinding' with initializer.
10872
10873 `name' is the `BindingIdentifier'."
10874 (when (js2-match-token js2-ASSIGN)
10875 (js2-make-binary js2-ASSIGN name 'js2-parse-assign-expr t)))
10876
10877 (defun js2-parse-prop-name (tt)
10878 (cond
10879 ;; Literal string keys: {'foo': 'bar'}
10880 ((= tt js2-STRING)
10881 (make-js2-string-node))
10882 ;; Handle computed keys: {[Symbol.iterator]: ...}, *[1+2]() {...}},
10883 ;; {[foo + bar]() { ... }}, {[get ['x' + 1]() {...}}
10884 ((and (= tt js2-LB)
10885 (>= js2-language-version 200))
10886 (make-js2-computed-prop-name-node
10887 :expr (prog1 (js2-parse-assign-expr)
10888 (js2-must-match js2-RB "msg.missing.computed.rb"))))
10889 ;; Numeric keys: {12: 'foo'}, {10.7: 'bar'}
10890 ((= tt js2-NUMBER)
10891 (make-js2-number-node))
10892 ;; Unquoted names: {foo: 12}
10893 ((= tt js2-NAME)
10894 (js2-create-name-node))
10895 ;; Anything else is an error
10896 (t (js2-report-error "msg.bad.prop"))))
10897
10898 (defun js2-parse-plain-property (prop)
10899 "Parse a non-getter/setter property in an object literal.
10900 PROP is the node representing the property: a number, name,
10901 string or expression."
10902 (let* ((tt (js2-get-token))
10903 (pos (js2-node-pos prop))
10904 colon expr result)
10905 (cond
10906 ;; Abbreviated property, as in {foo, bar}
10907 ((and (>= js2-language-version 200)
10908 (or (= tt js2-COMMA)
10909 (= tt js2-RC))
10910 (not (js2-number-node-p prop)))
10911 (js2-unget-token)
10912 (setq result (make-js2-object-prop-node
10913 :pos pos
10914 :left prop
10915 :right prop
10916 :op-pos (js2-current-token-len)))
10917 (js2-node-add-children result prop)
10918 (js2-node-set-prop result 'SHORTHAND t)
10919 result)
10920 ;; Normal property
10921 (t
10922 (if (= tt js2-COLON)
10923 (setq colon (- (js2-current-token-beg) pos)
10924 expr (js2-parse-assign-expr))
10925 (js2-report-error "msg.no.colon.prop")
10926 (setq expr (make-js2-error-node)))
10927 (setq result (make-js2-object-prop-node
10928 :pos pos
10929 ;; don't include last consumed token in length
10930 :len (- (+ (js2-node-pos expr)
10931 (js2-node-len expr))
10932 pos)
10933 :left prop
10934 :right expr
10935 :op-pos colon))
10936 (js2-node-add-children result prop expr)
10937 result))))
10938
10939 (defun js2-parse-method-prop (pos prop type-string)
10940 "Parse method property in an object literal or a class body.
10941 JavaScript syntax is:
10942
10943 { foo(...) {...}, get foo() {...}, set foo(x) {...}, *foo(...) {...},
10944 async foo(...) {...} }
10945
10946 and expression closure style is also supported
10947
10948 { get foo() x, set foo(x) _x = x }
10949
10950 POS is the start position of the `get' or `set' keyword.
10951 PROP is the `js2-name-node' representing the property name.
10952 TYPE-STRING is a string `get', `set', `*', or nil, indicating a found keyword."
10953 (let* ((type (or (cdr (assoc type-string '(("get" . GET)
10954 ("set" . SET)
10955 ("async" . ASYNC))))
10956 'FUNCTION))
10957 result end
10958 (fn (js2-parse-function-expr (eq type 'ASYNC))))
10959 ;; it has to be an anonymous function, as we already parsed the name
10960 (if (/= (js2-node-type fn) js2-FUNCTION)
10961 (js2-report-error "msg.bad.prop")
10962 (if (cl-plusp (length (js2-function-name fn)))
10963 (js2-report-error "msg.bad.prop")))
10964 (js2-node-set-prop fn 'METHOD_TYPE type) ; for codegen
10965 (when (string= type-string "*")
10966 (setf (js2-function-node-generator-type fn) 'STAR))
10967 (setq end (js2-node-end fn)
10968 result (make-js2-method-node :pos pos
10969 :len (- end pos)
10970 :left prop
10971 :right fn))
10972 (js2-node-add-children result prop fn)
10973 result))
10974
10975 (defun js2-create-name-node (&optional check-activation-p token string)
10976 "Create a name node using the current token and, optionally, STRING.
10977 And, if CHECK-ACTIVATION-P is non-nil, use the value of TOKEN."
10978 (let* ((beg (js2-current-token-beg))
10979 (tt (js2-current-token-type))
10980 (s (or string
10981 (if (= js2-NAME tt)
10982 (js2-current-token-string)
10983 (js2-tt-name tt))))
10984 name)
10985 (setq name (make-js2-name-node :pos beg
10986 :name s
10987 :len (length s)))
10988 (if check-activation-p
10989 (js2-check-activation-name s (or token js2-NAME)))
10990 name))
10991
10992 ;;; Use AST to extract semantic information
10993
10994 (defun js2-get-element-index-from-array-node (elem array-node &optional hardcoded-array-index)
10995 "Get index of ELEM from ARRAY-NODE or 0 and return it as string."
10996 (let ((idx 0) elems (rlt hardcoded-array-index))
10997 (setq elems (js2-array-node-elems array-node))
10998 (if (and elem (not hardcoded-array-index))
10999 (setq rlt (catch 'nth-elt
11000 (dolist (x elems)
11001 ;; We know the ELEM does belong to ARRAY-NODE,
11002 (if (eq elem x) (throw 'nth-elt idx))
11003 (setq idx (1+ idx)))
11004 0)))
11005 (format "[%s]" rlt)))
11006
11007 (defun js2-print-json-path (&optional hardcoded-array-index)
11008 "Print the path to the JSON value under point, and save it in the kill ring.
11009 If HARDCODED-ARRAY-INDEX provided, array index in JSON path is replaced with it."
11010 (interactive "P")
11011 (let (previous-node current-node
11012 key-name
11013 rlt)
11014
11015 ;; The `js2-node-at-point' starts scanning from AST root node.
11016 ;; So there is no way to optimize it.
11017 (setq current-node (js2-node-at-point))
11018
11019 (while (not (js2-ast-root-p current-node))
11020 (cond
11021 ;; JSON property node
11022 ((js2-object-prop-node-p current-node)
11023 (setq key-name (js2-prop-node-name (js2-object-prop-node-left current-node)))
11024 (if rlt (setq rlt (concat "." key-name rlt))
11025 (setq rlt (concat "." key-name))))
11026
11027 ;; Array node
11028 ((or (js2-array-node-p current-node))
11029 (setq rlt (concat (js2-get-element-index-from-array-node previous-node
11030 current-node
11031 hardcoded-array-index)
11032 rlt)))
11033
11034 ;; Other nodes are ignored
11035 (t))
11036
11037 ;; current node is archived
11038 (setq previous-node current-node)
11039 ;; Get parent node and continue the loop
11040 (setq current-node (js2-node-parent current-node)))
11041
11042 (cond
11043 (rlt
11044 ;; Clean the final result
11045 (setq rlt (replace-regexp-in-string "^\\." "" rlt))
11046 (kill-new rlt)
11047 (message "%s => kill-ring" rlt))
11048 (t
11049 (message "No JSON path found!")))
11050
11051 rlt))
11052
11053 ;;; Indentation support (bouncing)
11054
11055 ;; In recent-enough Emacs, we reuse the indentation code from
11056 ;; `js-mode'. To continue support for the older versions, some code
11057 ;; that was here previously was moved to `js2-old-indent.el'.
11058
11059 ;; Whichever indenter is used, it's often "wrong", however, and needs
11060 ;; to be overridden. The right long-term solution is probably to
11061 ;; emulate (or integrate with) cc-engine, but it's a nontrivial amount
11062 ;; of coding. Even when a parse tree from `js2-parse' is present,
11063 ;; which is not true at the moment the user is typing, computing
11064 ;; indentation is still thousands of lines of code to handle every
11065 ;; possible syntactic edge case.
11066
11067 ;; In the meantime, the compromise solution is that we offer a "bounce
11068 ;; indenter", configured with `js2-bounce-indent-p', which cycles the
11069 ;; current line indent among various likely guess points. This approach
11070 ;; is far from perfect, but should at least make it slightly easier to
11071 ;; move the line towards its desired indentation when manually
11072 ;; overriding Karl's heuristic nesting guesser.
11073
11074 (defun js2-backward-sws ()
11075 "Move backward through whitespace and comments."
11076 (interactive)
11077 (while (forward-comment -1)))
11078
11079 (defun js2-forward-sws ()
11080 "Move forward through whitespace and comments."
11081 (interactive)
11082 (while (forward-comment 1)))
11083
11084 (defun js2-arglist-close ()
11085 "Return non-nil if we're on a line beginning with a close-paren/brace."
11086 (save-excursion
11087 (goto-char (point-at-bol))
11088 (js2-forward-sws)
11089 (looking-at "[])}]")))
11090
11091 (defun js2-indent-looks-like-label-p ()
11092 (goto-char (point-at-bol))
11093 (js2-forward-sws)
11094 (looking-at (concat js2-mode-identifier-re ":")))
11095
11096 (defun js2-indent-in-objlit-p (parse-status)
11097 "Return non-nil if this looks like an object-literal entry."
11098 (let ((start (nth 1 parse-status)))
11099 (and
11100 start
11101 (save-excursion
11102 (and (zerop (forward-line -1))
11103 (not (< (point) start)) ; crossed a {} boundary
11104 (js2-indent-looks-like-label-p)))
11105 (save-excursion
11106 (js2-indent-looks-like-label-p)))))
11107
11108 ;; If prev line looks like foobar({ then we're passing an object
11109 ;; literal to a function call, and people pretty much always want to
11110 ;; de-dent back to the previous line, so move the 'basic-offset'
11111 ;; position to the front.
11112 (defun js2-indent-objlit-arg-p (parse-status)
11113 (save-excursion
11114 (back-to-indentation)
11115 (js2-backward-sws)
11116 (and (eq (1- (point)) (nth 1 parse-status))
11117 (eq (char-before) ?{)
11118 (progn
11119 (forward-char -1)
11120 (skip-chars-backward " \t")
11121 (eq (char-before) ?\()))))
11122
11123 (defun js2-indent-case-block-p ()
11124 (save-excursion
11125 (back-to-indentation)
11126 (js2-backward-sws)
11127 (goto-char (point-at-bol))
11128 (skip-chars-forward " \t")
11129 (looking-at "case\\s-.+:")))
11130
11131 (defun js2-bounce-indent (normal-col parse-status &optional backward)
11132 "Cycle among alternate computed indentation positions.
11133 PARSE-STATUS is the result of `parse-partial-sexp' from the beginning
11134 of the buffer to the current point. NORMAL-COL is the indentation
11135 column computed by the heuristic guesser based on current paren,
11136 bracket, brace and statement nesting. If BACKWARDS, cycle positions
11137 in reverse."
11138 (let ((cur-indent (current-indentation))
11139 (old-buffer-undo-list buffer-undo-list)
11140 ;; Emacs 21 only has `count-lines', not `line-number-at-pos'
11141 (current-line (save-excursion
11142 (forward-line 0) ; move to bol
11143 (1+ (count-lines (point-min) (point)))))
11144 positions pos main-pos anchor arglist-cont same-indent
11145 basic-offset computed-pos)
11146 ;; temporarily don't record undo info, if user requested this
11147 (when js2-mode-indent-inhibit-undo
11148 (setq buffer-undo-list t))
11149 (unwind-protect
11150 (progn
11151 ;; First likely point: indent from beginning of previous code line
11152 (push (setq basic-offset
11153 (+ (save-excursion
11154 (back-to-indentation)
11155 (js2-backward-sws)
11156 (back-to-indentation)
11157 (current-column))
11158 js2-basic-offset))
11159 positions)
11160
11161 ;; (First + epsilon) likely point: indent 2x from beginning of
11162 ;; previous code line. Google does it this way.
11163 (push (setq basic-offset
11164 (+ (save-excursion
11165 (back-to-indentation)
11166 (js2-backward-sws)
11167 (back-to-indentation)
11168 (current-column))
11169 (* 2 js2-basic-offset)))
11170 positions)
11171
11172 ;; Second likely point: indent from assign-expr RHS. This
11173 ;; is just a crude guess based on finding " = " on the previous
11174 ;; line containing actual code.
11175 (setq pos (save-excursion
11176 (forward-line -1)
11177 (goto-char (point-at-bol))
11178 (when (re-search-forward "\\s-+\\(=\\)\\s-+"
11179 (point-at-eol) t)
11180 (goto-char (match-end 1))
11181 (skip-chars-forward " \t\r\n")
11182 (current-column))))
11183 (when pos
11184 (cl-incf pos js2-basic-offset)
11185 (push pos positions))
11186
11187 ;; Third likely point: same indent as previous line of code.
11188 ;; Make it the first likely point if we're not on an
11189 ;; arglist-close line and previous line ends in a comma, or
11190 ;; both this line and prev line look like object-literal
11191 ;; elements.
11192 (setq pos (save-excursion
11193 (goto-char (point-at-bol))
11194 (js2-backward-sws)
11195 (back-to-indentation)
11196 (prog1
11197 (current-column)
11198 ;; while we're here, look for trailing comma
11199 (if (save-excursion
11200 (goto-char (point-at-eol))
11201 (js2-backward-sws)
11202 (eq (char-before) ?,))
11203 (setq arglist-cont (1- (point)))))))
11204 (when pos
11205 (if (and (or arglist-cont
11206 (js2-indent-in-objlit-p parse-status))
11207 (not (js2-arglist-close)))
11208 (setq same-indent pos))
11209 (push pos positions))
11210
11211 ;; Fourth likely point: first preceding code with less indentation.
11212 ;; than the immediately preceding code line.
11213 (setq pos (save-excursion
11214 (back-to-indentation)
11215 (js2-backward-sws)
11216 (back-to-indentation)
11217 (setq anchor (current-column))
11218 (while (and (zerop (forward-line -1))
11219 (>= (progn
11220 (back-to-indentation)
11221 (current-column))
11222 anchor)))
11223 (setq pos (current-column))))
11224 (push pos positions)
11225
11226 ;; nesting-heuristic position, main by default
11227 (push (setq main-pos normal-col) positions)
11228
11229 ;; delete duplicates and sort positions list
11230 (setq positions (sort (delete-dups positions) '<))
11231
11232 ;; comma-list continuation lines: prev line indent takes precedence
11233 (if same-indent
11234 (setq main-pos same-indent))
11235
11236 ;; common special cases where we want to indent in from previous line
11237 (if (or (js2-indent-case-block-p)
11238 (js2-indent-objlit-arg-p parse-status))
11239 (setq main-pos basic-offset))
11240
11241 ;; if bouncing backward, reverse positions list
11242 (if backward
11243 (setq positions (reverse positions)))
11244
11245 ;; record whether we're already sitting on one of the alternatives
11246 (setq pos (member cur-indent positions))
11247
11248 (cond
11249 ;; case 0: we're one one of the alternatives and this is the
11250 ;; first time they've pressed TAB on this line (best-guess).
11251 ((and js2-mode-indent-ignore-first-tab
11252 pos
11253 ;; first time pressing TAB on this line?
11254 (not (eq js2-mode-last-indented-line current-line)))
11255 ;; do nothing
11256 (setq computed-pos nil))
11257 ;; case 1: only one computed position => use it
11258 ((null (cdr positions))
11259 (setq computed-pos 0))
11260 ;; case 2: not on any of the computed spots => use main spot
11261 ((not pos)
11262 (setq computed-pos (js2-position main-pos positions)))
11263 ;; case 3: on last position: cycle to first position
11264 ((null (cdr pos))
11265 (setq computed-pos 0))
11266 ;; case 4: on intermediate position: cycle to next position
11267 (t
11268 (setq computed-pos (js2-position (cl-second pos) positions))))
11269
11270 ;; see if any hooks want to indent; otherwise we do it
11271 (cl-loop with result = nil
11272 for hook in js2-indent-hook
11273 while (null result)
11274 do
11275 (setq result (funcall hook positions computed-pos))
11276 finally do
11277 (unless (or result (null computed-pos))
11278 (indent-line-to (nth computed-pos positions)))))
11279
11280 ;; finally
11281 (if js2-mode-indent-inhibit-undo
11282 (setq buffer-undo-list old-buffer-undo-list))
11283 ;; see commentary for `js2-mode-last-indented-line'
11284 (setq js2-mode-last-indented-line current-line))))
11285
11286 (defun js2-1-line-comment-continuation-p ()
11287 "Return t if we're in a 1-line comment continuation.
11288 If so, we don't ever want to use bounce-indent."
11289 (save-excursion
11290 (and (progn
11291 (forward-line 0)
11292 (looking-at "\\s-*//"))
11293 (progn
11294 (forward-line -1)
11295 (forward-line 0)
11296 (when (looking-at "\\s-*$")
11297 (js2-backward-sws)
11298 (forward-line 0))
11299 (looking-at "\\s-*//")))))
11300
11301 (defun js2-indent-bounce (&optional backward)
11302 "Indent the current line, bouncing between several positions."
11303 (interactive)
11304 (let (parse-status offset indent-col
11305 ;; Don't whine about errors/warnings when we're indenting.
11306 ;; This has to be set before calling parse-partial-sexp below.
11307 (inhibit-point-motion-hooks t))
11308 (setq parse-status (save-excursion
11309 (syntax-ppss (point-at-bol)))
11310 offset (- (point) (save-excursion
11311 (back-to-indentation)
11312 (point))))
11313 ;; Don't touch multiline strings.
11314 (unless (nth 3 parse-status)
11315 (setq indent-col (js2-proper-indentation parse-status))
11316 (cond
11317 ;; It doesn't work well on first line of buffer.
11318 ((and (not (nth 4 parse-status))
11319 (not (js2-same-line (point-min)))
11320 (not (js2-1-line-comment-continuation-p)))
11321 (js2-bounce-indent indent-col parse-status backward))
11322 ;; just indent to the guesser's likely spot
11323 (t (indent-line-to indent-col)))
11324 (when (cl-plusp offset)
11325 (forward-char offset)))))
11326
11327 (defun js2-indent-bounce-backward ()
11328 "Indent the current line, bouncing between positions in reverse."
11329 (interactive)
11330 (js2-indent-bounce t))
11331
11332 (defun js2-indent-region (start end)
11333 "Indent the region, but don't use bounce indenting."
11334 (let ((js2-bounce-indent-p nil)
11335 (indent-region-function nil)
11336 (after-change-functions (remq 'js2-mode-edit
11337 after-change-functions)))
11338 (indent-region start end nil) ; nil for byte-compiler
11339 (js2-mode-edit start end (- end start))))
11340
11341 (defvar js2-minor-mode-map
11342 (let ((map (make-sparse-keymap)))
11343 (define-key map (kbd "C-c C-`") #'js2-next-error)
11344 (define-key map [mouse-1] #'js2-mode-show-node)
11345 map)
11346 "Keymap used when `js2-minor-mode' is active.")
11347
11348 ;;;###autoload
11349 (define-minor-mode js2-minor-mode
11350 "Minor mode for running js2 as a background linter.
11351 This allows you to use a different major mode for JavaScript editing,
11352 such as `js-mode', while retaining the asynchronous error/warning
11353 highlighting features of `js2-mode'."
11354 :group 'js2-mode
11355 :lighter " js-lint"
11356 (if (derived-mode-p 'js2-mode)
11357 (setq js2-minor-mode nil)
11358 (if js2-minor-mode
11359 (js2-minor-mode-enter)
11360 (js2-minor-mode-exit))))
11361
11362 (defun js2-minor-mode-enter ()
11363 "Initialization for `js2-minor-mode'."
11364 (set (make-local-variable 'max-lisp-eval-depth)
11365 (max max-lisp-eval-depth 3000))
11366 (setq next-error-function #'js2-next-error)
11367 (js2-set-default-externs)
11368 ;; Experiment: make reparse-delay longer for longer files.
11369 (if (cl-plusp js2-dynamic-idle-timer-adjust)
11370 (setq js2-idle-timer-delay
11371 (* js2-idle-timer-delay
11372 (/ (point-max) js2-dynamic-idle-timer-adjust))))
11373 (setq js2-mode-buffer-dirty-p t
11374 js2-mode-parsing nil)
11375 (set (make-local-variable 'js2-highlight-level) 0) ; no syntax highlighting
11376 (add-hook 'after-change-functions #'js2-minor-mode-edit nil t)
11377 (add-hook 'change-major-mode-hook #'js2-minor-mode-exit nil t)
11378 (when js2-include-jslint-globals
11379 (add-hook 'js2-post-parse-callbacks 'js2-apply-jslint-globals nil t))
11380 (run-hooks 'js2-init-hook)
11381 (js2-reparse))
11382
11383 (defun js2-minor-mode-exit ()
11384 "Turn off `js2-minor-mode'."
11385 (setq next-error-function nil)
11386 (remove-hook 'after-change-functions #'js2-mode-edit t)
11387 (remove-hook 'change-major-mode-hook #'js2-minor-mode-exit t)
11388 (when js2-mode-node-overlay
11389 (delete-overlay js2-mode-node-overlay)
11390 (setq js2-mode-node-overlay nil))
11391 (js2-remove-overlays)
11392 (remove-hook 'js2-post-parse-callbacks 'js2-apply-jslint-globals t)
11393 (setq js2-mode-ast nil))
11394
11395 (defvar js2-source-buffer nil "Linked source buffer for diagnostics view")
11396 (make-variable-buffer-local 'js2-source-buffer)
11397
11398 (cl-defun js2-display-error-list ()
11399 "Display a navigable buffer listing parse errors/warnings."
11400 (interactive)
11401 (unless (js2-have-errors-p)
11402 (message "No errors")
11403 (cl-return-from js2-display-error-list))
11404 (cl-labels ((annotate-list
11405 (lst type)
11406 "Add diagnostic TYPE and line number to errs list"
11407 (mapcar (lambda (err)
11408 (list err type (line-number-at-pos (nth 1 err))))
11409 lst)))
11410 (let* ((srcbuf (current-buffer))
11411 (errbuf (get-buffer-create "*js-lint*"))
11412 (errors (annotate-list
11413 (when js2-mode-ast (js2-ast-root-errors js2-mode-ast))
11414 'js2-error)) ; must be a valid face name
11415 (warnings (annotate-list
11416 (when js2-mode-ast (js2-ast-root-warnings js2-mode-ast))
11417 'js2-warning)) ; must be a valid face name
11418 (all-errs (sort (append errors warnings)
11419 (lambda (e1 e2) (< (cl-cadar e1) (cl-cadar e2))))))
11420 (with-current-buffer errbuf
11421 (let ((inhibit-read-only t))
11422 (erase-buffer)
11423 (dolist (err all-errs)
11424 (cl-destructuring-bind ((msg-key beg _end &rest) type line) err
11425 (insert-text-button
11426 (format "line %d: %s" line (js2-get-msg msg-key))
11427 'face type
11428 'follow-link "\C-m"
11429 'action 'js2-error-buffer-jump
11430 'js2-msg (js2-get-msg msg-key)
11431 'js2-pos beg)
11432 (insert "\n"))))
11433 (js2-error-buffer-mode)
11434 (setq js2-source-buffer srcbuf)
11435 (pop-to-buffer errbuf)
11436 (goto-char (point-min))
11437 (unless (eobp)
11438 (js2-error-buffer-view))))))
11439
11440 (defvar js2-error-buffer-mode-map
11441 (let ((map (make-sparse-keymap)))
11442 (define-key map "n" #'js2-error-buffer-next)
11443 (define-key map "p" #'js2-error-buffer-prev)
11444 (define-key map (kbd "RET") #'js2-error-buffer-jump)
11445 (define-key map "o" #'js2-error-buffer-view)
11446 (define-key map "q" #'js2-error-buffer-quit)
11447 map)
11448 "Keymap used for js2 diagnostics buffers.")
11449
11450 (defun js2-error-buffer-mode ()
11451 "Major mode for js2 diagnostics buffers.
11452 Selecting an error will jump it to the corresponding source-buffer error.
11453 \\{js2-error-buffer-mode-map}"
11454 (interactive)
11455 (setq major-mode 'js2-error-buffer-mode
11456 mode-name "JS Lint Diagnostics")
11457 (use-local-map js2-error-buffer-mode-map)
11458 (setq truncate-lines t)
11459 (set-buffer-modified-p nil)
11460 (setq buffer-read-only t)
11461 (run-hooks 'js2-error-buffer-mode-hook))
11462
11463 (defun js2-error-buffer-next ()
11464 "Move to next error and view it."
11465 (interactive)
11466 (when (zerop (forward-line 1))
11467 (js2-error-buffer-view)))
11468
11469 (defun js2-error-buffer-prev ()
11470 "Move to previous error and view it."
11471 (interactive)
11472 (when (zerop (forward-line -1))
11473 (js2-error-buffer-view)))
11474
11475 (defun js2-error-buffer-quit ()
11476 "Kill the current buffer."
11477 (interactive)
11478 (kill-buffer))
11479
11480 (defun js2-error-buffer-jump (&rest ignored)
11481 "Jump cursor to current error in source buffer."
11482 (interactive)
11483 (when (js2-error-buffer-view)
11484 (pop-to-buffer js2-source-buffer)))
11485
11486 (defun js2-error-buffer-view ()
11487 "Scroll source buffer to show error at current line."
11488 (interactive)
11489 (cond
11490 ((not (eq major-mode 'js2-error-buffer-mode))
11491 (message "Not in a js2 errors buffer"))
11492 ((not (buffer-live-p js2-source-buffer))
11493 (message "Source buffer has been killed"))
11494 ((not (wholenump (get-text-property (point) 'js2-pos)))
11495 (message "There does not seem to be an error here"))
11496 (t
11497 (let ((pos (get-text-property (point) 'js2-pos))
11498 (msg (get-text-property (point) 'js2-msg)))
11499 (save-selected-window
11500 (pop-to-buffer js2-source-buffer)
11501 (goto-char pos)
11502 (message msg))))))
11503
11504 ;;;###autoload
11505 (define-derived-mode js2-mode js-mode "Javascript-IDE"
11506 "Major mode for editing JavaScript code."
11507 (set (make-local-variable 'max-lisp-eval-depth)
11508 (max max-lisp-eval-depth 3000))
11509 (set (make-local-variable 'indent-line-function) #'js2-indent-line)
11510 (set (make-local-variable 'indent-region-function) #'js2-indent-region)
11511 (set (make-local-variable 'syntax-propertize-function) nil)
11512 (set (make-local-variable 'comment-line-break-function) #'js2-line-break)
11513 (set (make-local-variable 'beginning-of-defun-function) #'js2-beginning-of-defun)
11514 (set (make-local-variable 'end-of-defun-function) #'js2-end-of-defun)
11515 ;; We un-confuse `parse-partial-sexp' by setting syntax-table properties
11516 ;; for characters inside regexp literals.
11517 (set (make-local-variable 'parse-sexp-lookup-properties) t)
11518 ;; this is necessary to make `show-paren-function' work properly
11519 (set (make-local-variable 'parse-sexp-ignore-comments) t)
11520 ;; needed for M-x rgrep, among other things
11521 (put 'js2-mode 'find-tag-default-function #'js2-mode-find-tag)
11522
11523 (setq font-lock-defaults '(nil t))
11524
11525 ;; Experiment: make reparse-delay longer for longer files.
11526 (when (cl-plusp js2-dynamic-idle-timer-adjust)
11527 (setq js2-idle-timer-delay
11528 (* js2-idle-timer-delay
11529 (/ (point-max) js2-dynamic-idle-timer-adjust))))
11530
11531 (add-hook 'change-major-mode-hook #'js2-mode-exit nil t)
11532 (add-hook 'after-change-functions #'js2-mode-edit nil t)
11533 (setq imenu-create-index-function #'js2-mode-create-imenu-index)
11534 (setq next-error-function #'js2-next-error)
11535 (imenu-add-to-menubar (concat "IM-" mode-name))
11536 (add-to-invisibility-spec '(js2-outline . t))
11537 (set (make-local-variable 'line-move-ignore-invisible) t)
11538 (set (make-local-variable 'forward-sexp-function) #'js2-mode-forward-sexp)
11539 (when (fboundp 'cursor-sensor-mode) (cursor-sensor-mode 1))
11540
11541 (setq js2-mode-functions-hidden nil
11542 js2-mode-comments-hidden nil
11543 js2-mode-buffer-dirty-p t
11544 js2-mode-parsing nil)
11545
11546 (js2-set-default-externs)
11547
11548 (when js2-include-jslint-globals
11549 (add-hook 'js2-post-parse-callbacks 'js2-apply-jslint-globals nil t))
11550
11551 (run-hooks 'js2-init-hook)
11552
11553 (js2-reparse))
11554
11555 ;; We may eventually want js2-jsx-mode to derive from js-jsx-mode, but that'd be
11556 ;; a bit more complicated and it doesn't net us much yet.
11557 ;;;###autoload
11558 (define-derived-mode js2-jsx-mode js2-mode "JSX-IDE"
11559 "Major mode for editing JSX code.
11560
11561 To customize the indentation for this mode, set the SGML offset
11562 variables (`sgml-basic-offset' et al) locally, like so:
11563
11564 (defun set-jsx-indentation ()
11565 (setq-local sgml-basic-offset js2-basic-offset))
11566 (add-hook 'js2-jsx-mode-hook #'set-jsx-indentation)"
11567 (set (make-local-variable 'indent-line-function) #'js2-jsx-indent-line))
11568
11569 (defun js2-mode-exit ()
11570 "Exit `js2-mode' and clean up."
11571 (interactive)
11572 (when js2-mode-node-overlay
11573 (delete-overlay js2-mode-node-overlay)
11574 (setq js2-mode-node-overlay nil))
11575 (js2-remove-overlays)
11576 (setq js2-mode-ast nil)
11577 (remove-hook 'change-major-mode-hook #'js2-mode-exit t)
11578 (remove-from-invisibility-spec '(js2-outline . t))
11579 (js2-mode-show-all)
11580 (with-silent-modifications
11581 (js2-clear-face (point-min) (point-max))))
11582
11583 (defun js2-mode-reset-timer ()
11584 "Cancel any existing parse timer and schedule a new one."
11585 (if js2-mode-parse-timer
11586 (cancel-timer js2-mode-parse-timer))
11587 (setq js2-mode-parsing nil)
11588 (let ((timer (timer-create)))
11589 (setq js2-mode-parse-timer timer)
11590 (timer-set-function timer 'js2-mode-idle-reparse (list (current-buffer)))
11591 (timer-set-idle-time timer js2-idle-timer-delay)
11592 ;; http://debbugs.gnu.org/cgi/bugreport.cgi?bug=12326
11593 (timer-activate-when-idle timer nil)))
11594
11595 (defun js2-mode-idle-reparse (buffer)
11596 "Run `js2-reparse' if BUFFER is the current buffer, or schedule
11597 it to be reparsed when the buffer is selected."
11598 (cond ((eq buffer (current-buffer))
11599 (js2-reparse))
11600 ((buffer-live-p buffer)
11601 ;; reparse when the buffer is selected again
11602 (with-current-buffer buffer
11603 (add-hook 'window-configuration-change-hook
11604 #'js2-mode-idle-reparse-inner
11605 nil t)))))
11606
11607 (defun js2-mode-idle-reparse-inner ()
11608 (remove-hook 'window-configuration-change-hook
11609 #'js2-mode-idle-reparse-inner
11610 t)
11611 (js2-reparse))
11612
11613 (defun js2-mode-edit (_beg _end _len)
11614 "Schedule a new parse after buffer is edited.
11615 Buffer edit spans from BEG to END and is of length LEN."
11616 (setq js2-mode-buffer-dirty-p t)
11617 (js2-mode-hide-overlay)
11618 (js2-mode-reset-timer))
11619
11620 (defun js2-minor-mode-edit (_beg _end _len)
11621 "Callback for buffer edits in `js2-mode'.
11622 Schedules a new parse after buffer is edited.
11623 Buffer edit spans from BEG to END and is of length LEN."
11624 (setq js2-mode-buffer-dirty-p t)
11625 (js2-mode-hide-overlay)
11626 (js2-mode-reset-timer))
11627
11628 (defun js2-reparse (&optional force)
11629 "Re-parse current buffer after user finishes some data entry.
11630 If we get any user input while parsing, including cursor motion,
11631 we discard the parse and reschedule it. If FORCE is nil, then the
11632 buffer will only rebuild its `js2-mode-ast' if the buffer is dirty."
11633 (let (time
11634 interrupted-p
11635 (js2-compiler-strict-mode js2-mode-show-strict-warnings))
11636 (unless js2-mode-parsing
11637 (setq js2-mode-parsing t)
11638 (unwind-protect
11639 (when (or js2-mode-buffer-dirty-p force)
11640 (js2-remove-overlays)
11641 (setq js2-mode-buffer-dirty-p nil
11642 js2-mode-fontifications nil
11643 js2-mode-deferred-properties nil)
11644 (if js2-mode-verbose-parse-p
11645 (message "parsing..."))
11646 (setq time
11647 (js2-time
11648 (setq interrupted-p
11649 (catch 'interrupted
11650 (js2-parse)
11651 (with-silent-modifications
11652 ;; if parsing is interrupted, comments and regex
11653 ;; literals stay ignored by `parse-partial-sexp'
11654 (remove-text-properties (point-min) (point-max)
11655 '(syntax-table))
11656 (js2-mode-apply-deferred-properties)
11657 (js2-mode-remove-suppressed-warnings)
11658 (js2-mode-show-warnings)
11659 (js2-mode-show-errors)
11660 (if (>= js2-highlight-level 1)
11661 (js2-highlight-jsdoc js2-mode-ast)))
11662 nil))))
11663 (if interrupted-p
11664 (progn
11665 ;; unfinished parse => try again
11666 (setq js2-mode-buffer-dirty-p t)
11667 (js2-mode-reset-timer))
11668 (if js2-mode-verbose-parse-p
11669 (message "Parse time: %s" time))))
11670 (setq js2-mode-parsing nil)
11671 (unless interrupted-p
11672 (setq js2-mode-parse-timer nil))))))
11673
11674 (defun js2-mode-show-node (event)
11675 "Debugging aid: highlight selected AST node on mouse click."
11676 (interactive "e")
11677 (mouse-set-point event)
11678 (setq deactivate-mark t)
11679 (when js2-mode-show-overlay
11680 (let ((node (js2-node-at-point))
11681 beg end)
11682 (if (null node)
11683 (message "No node found at location %s" (point))
11684 (setq beg (js2-node-abs-pos node)
11685 end (+ beg (js2-node-len node)))
11686 (if js2-mode-node-overlay
11687 (move-overlay js2-mode-node-overlay beg end)
11688 (setq js2-mode-node-overlay (make-overlay beg end))
11689 (overlay-put js2-mode-node-overlay 'font-lock-face 'highlight))
11690 (with-silent-modifications
11691 (if (fboundp 'cursor-sensor-mode)
11692 (put-text-property beg end 'cursor-sensor-functions
11693 '(js2-mode-hide-overlay))
11694 (put-text-property beg end 'point-left #'js2-mode-hide-overlay)))
11695 (message "%s, parent: %s"
11696 (js2-node-short-name node)
11697 (if (js2-node-parent node)
11698 (js2-node-short-name (js2-node-parent node))
11699 "nil"))))))
11700
11701 (defun js2-mode-hide-overlay (&optional arg1 arg2 _arg3)
11702 "Remove the debugging overlay when point moves.
11703 ARG1, ARG2 and ARG3 have different values depending on whether this function
11704 was found on `point-left' or in `cursor-sensor-functions'."
11705 (when js2-mode-node-overlay
11706 (let ((beg (overlay-start js2-mode-node-overlay))
11707 (end (overlay-end js2-mode-node-overlay))
11708 (p2 (if (windowp arg1)
11709 ;; Called from cursor-sensor-functions.
11710 (window-point arg1)
11711 ;; Called from point-left.
11712 arg2)))
11713 ;; Sometimes we're called spuriously.
11714 (unless (and p2
11715 (>= p2 beg)
11716 (<= p2 end))
11717 (with-silent-modifications
11718 (remove-text-properties beg end
11719 '(point-left nil cursor-sensor-functions)))
11720 (delete-overlay js2-mode-node-overlay)
11721 (setq js2-mode-node-overlay nil)))))
11722
11723 (defun js2-mode-reset ()
11724 "Debugging helper: reset everything."
11725 (interactive)
11726 (js2-mode-exit)
11727 (js2-mode))
11728
11729 (defun js2-mode-show-warn-or-err (e face)
11730 "Highlight a warning or error E with FACE.
11731 E is a list of ((MSG-KEY MSG-ARG) BEG LEN OVERRIDE-FACE).
11732 The last element is optional. When present, use instead of FACE."
11733 (let* ((key (cl-first e))
11734 (beg (cl-second e))
11735 (end (+ beg (cl-third e)))
11736 ;; Don't inadvertently go out of bounds.
11737 (beg (max (point-min) (min beg (point-max))))
11738 (end (max (point-min) (min end (point-max))))
11739 (ovl (make-overlay beg end)))
11740 ;; FIXME: Why a mix of overlays and text-properties?
11741 (overlay-put ovl 'font-lock-face (or (cl-fourth e) face))
11742 (overlay-put ovl 'js2-error t)
11743 (put-text-property beg end 'help-echo (js2-get-msg key))
11744 (if (fboundp 'cursor-sensor-mode)
11745 (put-text-property beg end 'cursor-sensor-functions '(js2-echo-error))
11746 (put-text-property beg end 'point-entered #'js2-echo-error))))
11747
11748 (defun js2-remove-overlays ()
11749 "Remove overlays from buffer that have a `js2-error' property."
11750 (let ((beg (point-min))
11751 (end (point-max)))
11752 (save-excursion
11753 (dolist (o (overlays-in beg end))
11754 (when (overlay-get o 'js2-error)
11755 (delete-overlay o))))))
11756
11757 (defun js2-mode-apply-deferred-properties ()
11758 "Apply fontifications and other text properties recorded during parsing."
11759 (when (cl-plusp js2-highlight-level)
11760 ;; We defer clearing faces as long as possible to eliminate flashing.
11761 (js2-clear-face (point-min) (point-max))
11762 ;; Have to reverse the recorded fontifications list so that errors
11763 ;; and warnings overwrite the normal fontifications.
11764 (dolist (f (nreverse js2-mode-fontifications))
11765 (put-text-property (cl-first f) (cl-second f) 'font-lock-face (cl-third f)))
11766 (setq js2-mode-fontifications nil))
11767 (dolist (p js2-mode-deferred-properties)
11768 (apply #'put-text-property p))
11769 (setq js2-mode-deferred-properties nil))
11770
11771 (defun js2-mode-show-errors ()
11772 "Highlight syntax errors."
11773 (when js2-mode-show-parse-errors
11774 (dolist (e (js2-ast-root-errors js2-mode-ast))
11775 (js2-mode-show-warn-or-err e 'js2-error))))
11776
11777 (defun js2-mode-remove-suppressed-warnings ()
11778 "Take suppressed warnings out of the AST warnings list.
11779 This ensures that the counts and `next-error' are correct."
11780 (setf (js2-ast-root-warnings js2-mode-ast)
11781 (js2-delete-if
11782 (lambda (e)
11783 (let ((key (caar e)))
11784 (or
11785 (and (not js2-strict-trailing-comma-warning)
11786 (string-match "trailing\\.comma" key))
11787 (and (not js2-strict-cond-assign-warning)
11788 (string= key "msg.equal.as.assign"))
11789 (and js2-missing-semi-one-line-override
11790 (string= key "msg.missing.semi")
11791 (let* ((beg (cl-second e))
11792 (node (js2-node-at-point beg))
11793 (fn (js2-mode-find-parent-fn node))
11794 (body (and fn (js2-function-node-body fn)))
11795 (lc (and body (js2-node-abs-pos body)))
11796 (rc (and lc (+ lc (js2-node-len body)))))
11797 (and fn
11798 (or (null body)
11799 (save-excursion
11800 (goto-char beg)
11801 (and (js2-same-line lc)
11802 (js2-same-line rc))))))))))
11803 (js2-ast-root-warnings js2-mode-ast))))
11804
11805 (defun js2-mode-show-warnings ()
11806 "Highlight strict-mode warnings."
11807 (when js2-mode-show-strict-warnings
11808 (dolist (e (js2-ast-root-warnings js2-mode-ast))
11809 (js2-mode-show-warn-or-err e 'js2-warning))))
11810
11811 (defun js2-echo-error (arg1 arg2 &optional _arg3)
11812 "Called by point-motion hooks.
11813 ARG1, ARG2 and ARG3 have different values depending on whether this function
11814 was found on `point-entered' or in `cursor-sensor-functions'."
11815 (let* ((new-point (if (windowp arg1)
11816 ;; Called from cursor-sensor-functions.
11817 (window-point arg1)
11818 ;; Called from point-left.
11819 arg2))
11820 (msg (get-text-property new-point 'help-echo)))
11821 (when (and (stringp msg)
11822 (not (active-minibuffer-window))
11823 (not (current-message)))
11824 (message msg))))
11825
11826 (defun js2-line-break (&optional _soft)
11827 "Break line at point and indent, continuing comment if within one.
11828 If inside a string, and `js2-concat-multiline-strings' is not
11829 nil, turn it into concatenation."
11830 (interactive)
11831 (let ((parse-status (syntax-ppss)))
11832 (cond
11833 ;; Check if we're inside a string.
11834 ((nth 3 parse-status)
11835 (if js2-concat-multiline-strings
11836 (js2-mode-split-string parse-status)
11837 (insert "\n")))
11838 ;; Check if inside a block comment.
11839 ((nth 4 parse-status)
11840 (js2-mode-extend-comment (nth 8 parse-status)))
11841 (t
11842 (newline-and-indent)))))
11843
11844 (defun js2-mode-split-string (parse-status)
11845 "Turn a newline in mid-string into a string concatenation.
11846 PARSE-STATUS is as documented in `parse-partial-sexp'."
11847 (let* ((quote-char (nth 3 parse-status))
11848 (at-eol (eq js2-concat-multiline-strings 'eol)))
11849 (insert quote-char)
11850 (insert (if at-eol " +\n" "\n"))
11851 (unless at-eol
11852 (insert "+ "))
11853 (js2-indent-line)
11854 (insert quote-char)
11855 (when (eolp)
11856 (insert quote-char)
11857 (backward-char 1))))
11858
11859 (defun js2-mode-extend-comment (start-pos)
11860 "Indent the line and, when inside a comment block, add comment prefix."
11861 (let (star single col first-line needs-close)
11862 (save-excursion
11863 (back-to-indentation)
11864 (when (< (point) start-pos)
11865 (goto-char start-pos))
11866 (cond
11867 ((looking-at "\\*[^/]")
11868 (setq star t
11869 col (current-column)))
11870 ((looking-at "/\\*")
11871 (setq star t
11872 first-line t
11873 col (1+ (current-column))))
11874 ((looking-at "//")
11875 (setq single t
11876 col (current-column)))))
11877 ;; Heuristic for whether we need to close the comment:
11878 ;; if we've got a parse error here, assume it's an unterminated
11879 ;; comment.
11880 (setq needs-close
11881 (or
11882 (get-char-property (1- (point)) 'js2-error)
11883 ;; The heuristic above doesn't work well when we're
11884 ;; creating a comment and there's another one downstream,
11885 ;; as our parser thinks this one ends at the end of the
11886 ;; next one. (You can have a /* inside a js block comment.)
11887 ;; So just close it if the next non-ws char isn't a *.
11888 (and first-line
11889 (eolp)
11890 (save-excursion
11891 (skip-chars-forward " \t\r\n")
11892 (not (eq (char-after) ?*))))))
11893 (delete-horizontal-space)
11894 (insert "\n")
11895 (cond
11896 (star
11897 (indent-to col)
11898 (insert "* ")
11899 (if (and first-line needs-close)
11900 (save-excursion
11901 (insert "\n")
11902 (indent-to col)
11903 (insert "*/"))))
11904 ((and single
11905 (save-excursion
11906 (and (zerop (forward-line 1))
11907 (looking-at "\\s-*//"))))
11908 (indent-to col)
11909 (insert "// ")))
11910 ;; Don't need to extend the comment after all.
11911 (js2-indent-line)))
11912
11913 (defun js2-beginning-of-line ()
11914 "Toggle point between bol and first non-whitespace char in line.
11915 Also moves past comment delimiters when inside comments."
11916 (interactive)
11917 (let (node)
11918 (cond
11919 ((bolp)
11920 (back-to-indentation))
11921 ((looking-at "//")
11922 (skip-chars-forward "/ \t"))
11923 ((and (eq (char-after) ?*)
11924 (setq node (js2-comment-at-point))
11925 (memq (js2-comment-node-format node) '(jsdoc block))
11926 (save-excursion
11927 (skip-chars-backward " \t")
11928 (bolp)))
11929 (skip-chars-forward "\* \t"))
11930 (t
11931 (goto-char (point-at-bol))))))
11932
11933 (defun js2-end-of-line ()
11934 "Toggle point between eol and last non-whitespace char in line."
11935 (interactive)
11936 (if (eolp)
11937 (skip-chars-backward " \t")
11938 (goto-char (point-at-eol))))
11939
11940 (defun js2-mode-wait-for-parse (callback)
11941 "Invoke CALLBACK when parsing is finished.
11942 If parsing is already finished, calls CALLBACK immediately."
11943 (if (not js2-mode-buffer-dirty-p)
11944 (funcall callback)
11945 (push callback js2-mode-pending-parse-callbacks)
11946 (add-hook 'js2-parse-finished-hook #'js2-mode-parse-finished)))
11947
11948 (defun js2-mode-parse-finished ()
11949 "Invoke callbacks in `js2-mode-pending-parse-callbacks'."
11950 ;; We can't let errors propagate up, since it prevents the
11951 ;; `js2-parse' method from completing normally and returning
11952 ;; the ast, which makes things mysteriously not work right.
11953 (unwind-protect
11954 (dolist (cb js2-mode-pending-parse-callbacks)
11955 (condition-case err
11956 (funcall cb)
11957 (error (message "%s" err))))
11958 (setq js2-mode-pending-parse-callbacks nil)))
11959
11960 (defun js2-mode-flag-region (from to flag)
11961 "Hide or show text from FROM to TO, according to FLAG.
11962 If FLAG is nil then text is shown, while if FLAG is t the text is hidden.
11963 Returns the created overlay if FLAG is non-nil."
11964 (remove-overlays from to 'invisible 'js2-outline)
11965 (when flag
11966 (let ((o (make-overlay from to)))
11967 (overlay-put o 'invisible 'js2-outline)
11968 (overlay-put o 'isearch-open-invisible
11969 'js2-isearch-open-invisible)
11970 o)))
11971
11972 ;; Function to be set as an outline-isearch-open-invisible' property
11973 ;; to the overlay that makes the outline invisible (see
11974 ;; `js2-mode-flag-region').
11975 (defun js2-isearch-open-invisible (_overlay)
11976 ;; We rely on the fact that isearch places point on the matched text.
11977 (js2-mode-show-element))
11978
11979 (defun js2-mode-invisible-overlay-bounds (&optional pos)
11980 "Return cons cell of bounds of folding overlay at POS.
11981 Returns nil if not found."
11982 (let ((overlays (overlays-at (or pos (point))))
11983 o)
11984 (while (and overlays
11985 (not o))
11986 (if (overlay-get (car overlays) 'invisible)
11987 (setq o (car overlays))
11988 (setq overlays (cdr overlays))))
11989 (if o
11990 (cons (overlay-start o) (overlay-end o)))))
11991
11992 (defun js2-mode-function-at-point (&optional pos)
11993 "Return the innermost function node enclosing current point.
11994 Returns nil if point is not in a function."
11995 (let ((node (js2-node-at-point pos)))
11996 (while (and node (not (js2-function-node-p node)))
11997 (setq node (js2-node-parent node)))
11998 (if (js2-function-node-p node)
11999 node)))
12000
12001 (defun js2-mode-toggle-element ()
12002 "Hide or show the foldable element at the point."
12003 (interactive)
12004 (let (comment fn pos)
12005 (save-excursion
12006 (cond
12007 ;; /* ... */ comment?
12008 ((js2-block-comment-p (setq comment (js2-comment-at-point)))
12009 (if (js2-mode-invisible-overlay-bounds
12010 (setq pos (+ 3 (js2-node-abs-pos comment))))
12011 (progn
12012 (goto-char pos)
12013 (js2-mode-show-element))
12014 (js2-mode-hide-element)))
12015 ;; //-comment?
12016 ((save-excursion
12017 (back-to-indentation)
12018 (looking-at js2-mode-//-comment-re))
12019 (js2-mode-toggle-//-comment))
12020 ;; function?
12021 ((setq fn (js2-mode-function-at-point))
12022 (setq pos (and (js2-function-node-body fn)
12023 (js2-node-abs-pos (js2-function-node-body fn))))
12024 (goto-char (1+ pos))
12025 (if (js2-mode-invisible-overlay-bounds)
12026 (js2-mode-show-element)
12027 (js2-mode-hide-element)))
12028 (t
12029 (message "Nothing at point to hide or show"))))))
12030
12031 (defun js2-mode-hide-element ()
12032 "Fold/hide contents of a block, showing ellipses.
12033 Show the hidden text with \\[js2-mode-show-element]."
12034 (interactive)
12035 (if js2-mode-buffer-dirty-p
12036 (js2-mode-wait-for-parse #'js2-mode-hide-element))
12037 (let (node body beg end)
12038 (cond
12039 ((js2-mode-invisible-overlay-bounds)
12040 (message "already hidden"))
12041 (t
12042 (setq node (js2-node-at-point))
12043 (cond
12044 ((js2-block-comment-p node)
12045 (js2-mode-hide-comment node))
12046 (t
12047 (while (and node (not (js2-function-node-p node)))
12048 (setq node (js2-node-parent node)))
12049 (if (and node
12050 (setq body (js2-function-node-body node)))
12051 (progn
12052 (setq beg (js2-node-abs-pos body)
12053 end (+ beg (js2-node-len body)))
12054 (js2-mode-flag-region (1+ beg) (1- end) 'hide))
12055 (message "No collapsable element found at point"))))))))
12056
12057 (defun js2-mode-show-element ()
12058 "Show the hidden element at current point."
12059 (interactive)
12060 (let ((bounds (js2-mode-invisible-overlay-bounds)))
12061 (if bounds
12062 (js2-mode-flag-region (car bounds) (cdr bounds) nil)
12063 (message "Nothing to un-hide"))))
12064
12065 (defun js2-mode-show-all ()
12066 "Show all of the text in the buffer."
12067 (interactive)
12068 (js2-mode-flag-region (point-min) (point-max) nil))
12069
12070 (defun js2-mode-toggle-hide-functions ()
12071 (interactive)
12072 (if js2-mode-functions-hidden
12073 (js2-mode-show-functions)
12074 (js2-mode-hide-functions)))
12075
12076 (defun js2-mode-hide-functions ()
12077 "Hides all non-nested function bodies in the buffer.
12078 Use \\[js2-mode-show-all] to reveal them, or \\[js2-mode-show-element]
12079 to open an individual entry."
12080 (interactive)
12081 (if js2-mode-buffer-dirty-p
12082 (js2-mode-wait-for-parse #'js2-mode-hide-functions))
12083 (if (null js2-mode-ast)
12084 (message "Oops - parsing failed")
12085 (setq js2-mode-functions-hidden t)
12086 (js2-visit-ast js2-mode-ast #'js2-mode-function-hider)))
12087
12088 (defun js2-mode-function-hider (n endp)
12089 (when (not endp)
12090 (let ((tt (js2-node-type n))
12091 body beg end)
12092 (cond
12093 ((and (= tt js2-FUNCTION)
12094 (setq body (js2-function-node-body n)))
12095 (setq beg (js2-node-abs-pos body)
12096 end (+ beg (js2-node-len body)))
12097 (js2-mode-flag-region (1+ beg) (1- end) 'hide)
12098 nil) ; don't process children of function
12099 (t
12100 t))))) ; keep processing other AST nodes
12101
12102 (defun js2-mode-show-functions ()
12103 "Un-hide any folded function bodies in the buffer."
12104 (interactive)
12105 (setq js2-mode-functions-hidden nil)
12106 (save-excursion
12107 (goto-char (point-min))
12108 (while (/= (goto-char (next-overlay-change (point)))
12109 (point-max))
12110 (dolist (o (overlays-at (point)))
12111 (when (and (overlay-get o 'invisible)
12112 (not (overlay-get o 'comment)))
12113 (js2-mode-flag-region (overlay-start o) (overlay-end o) nil))))))
12114
12115 (defun js2-mode-hide-comment (n)
12116 (let* ((head (if (eq (js2-comment-node-format n) 'jsdoc)
12117 3 ; /**
12118 2)) ; /*
12119 (beg (+ (js2-node-abs-pos n) head))
12120 (end (- (+ beg (js2-node-len n)) head 2))
12121 (o (js2-mode-flag-region beg end 'hide)))
12122 (overlay-put o 'comment t)))
12123
12124 (defun js2-mode-toggle-hide-comments ()
12125 "Folds all block comments in the buffer.
12126 Use \\[js2-mode-show-all] to reveal them, or \\[js2-mode-show-element]
12127 to open an individual entry."
12128 (interactive)
12129 (if js2-mode-comments-hidden
12130 (js2-mode-show-comments)
12131 (js2-mode-hide-comments)))
12132
12133 (defun js2-mode-hide-comments ()
12134 (interactive)
12135 (if js2-mode-buffer-dirty-p
12136 (js2-mode-wait-for-parse #'js2-mode-hide-comments))
12137 (if (null js2-mode-ast)
12138 (message "Oops - parsing failed")
12139 (setq js2-mode-comments-hidden t)
12140 (dolist (n (js2-ast-root-comments js2-mode-ast))
12141 (when (js2-block-comment-p n)
12142 (js2-mode-hide-comment n)))
12143 (js2-mode-hide-//-comments)))
12144
12145 (defun js2-mode-extend-//-comment (direction)
12146 "Find start or end of a block of similar //-comment lines.
12147 DIRECTION is -1 to look back, 1 to look forward.
12148 INDENT is the indentation level to match.
12149 Returns the end-of-line position of the furthest adjacent
12150 //-comment line with the same indentation as the current line.
12151 If there is no such matching line, returns current end of line."
12152 (let ((pos (point-at-eol))
12153 (indent (current-indentation)))
12154 (save-excursion
12155 (while (and (zerop (forward-line direction))
12156 (looking-at js2-mode-//-comment-re)
12157 (eq indent (length (match-string 1))))
12158 (setq pos (point-at-eol)))
12159 pos)))
12160
12161 (defun js2-mode-hide-//-comments ()
12162 "Fold adjacent 1-line comments, showing only snippet of first one."
12163 (let (beg end)
12164 (save-excursion
12165 (goto-char (point-min))
12166 (while (re-search-forward js2-mode-//-comment-re nil t)
12167 (setq beg (point)
12168 end (js2-mode-extend-//-comment 1))
12169 (unless (eq beg end)
12170 (overlay-put (js2-mode-flag-region beg end 'hide)
12171 'comment t))
12172 (goto-char end)
12173 (forward-char 1)))))
12174
12175 (defun js2-mode-toggle-//-comment ()
12176 "Fold or un-fold any multi-line //-comment at point.
12177 Caller should have determined that this line starts with a //-comment."
12178 (let* ((beg (point-at-eol))
12179 (end beg))
12180 (save-excursion
12181 (goto-char end)
12182 (if (js2-mode-invisible-overlay-bounds)
12183 (js2-mode-show-element)
12184 ;; else hide the comment
12185 (setq beg (js2-mode-extend-//-comment -1)
12186 end (js2-mode-extend-//-comment 1))
12187 (unless (eq beg end)
12188 (overlay-put (js2-mode-flag-region beg end 'hide)
12189 'comment t))))))
12190
12191 (defun js2-mode-show-comments ()
12192 "Un-hide any hidden comments, leaving other hidden elements alone."
12193 (interactive)
12194 (setq js2-mode-comments-hidden nil)
12195 (save-excursion
12196 (goto-char (point-min))
12197 (while (/= (goto-char (next-overlay-change (point)))
12198 (point-max))
12199 (dolist (o (overlays-at (point)))
12200 (when (overlay-get o 'comment)
12201 (js2-mode-flag-region (overlay-start o) (overlay-end o) nil))))))
12202
12203 (defun js2-mode-display-warnings-and-errors ()
12204 "Turn on display of warnings and errors."
12205 (interactive)
12206 (setq js2-mode-show-parse-errors t
12207 js2-mode-show-strict-warnings t)
12208 (js2-reparse 'force))
12209
12210 (defun js2-mode-hide-warnings-and-errors ()
12211 "Turn off display of warnings and errors."
12212 (interactive)
12213 (setq js2-mode-show-parse-errors nil
12214 js2-mode-show-strict-warnings nil)
12215 (js2-reparse 'force))
12216
12217 (defun js2-mode-toggle-warnings-and-errors ()
12218 "Toggle the display of warnings and errors.
12219 Some users don't like having warnings/errors reported while they type."
12220 (interactive)
12221 (setq js2-mode-show-parse-errors (not js2-mode-show-parse-errors)
12222 js2-mode-show-strict-warnings (not js2-mode-show-strict-warnings))
12223 (if (called-interactively-p 'any)
12224 (message "warnings and errors %s"
12225 (if js2-mode-show-parse-errors
12226 "enabled"
12227 "disabled")))
12228 (js2-reparse 'force))
12229
12230 (defun js2-mode-customize ()
12231 (interactive)
12232 (customize-group 'js2-mode))
12233
12234 (defun js2-mode-forward-sexp (&optional arg)
12235 "Move forward across one statement or balanced expression.
12236 With ARG, do it that many times. Negative arg -N means
12237 move backward across N balanced expressions."
12238 (interactive "p")
12239 (setq arg (or arg 1))
12240 (save-restriction
12241 (widen) ;; `blink-matching-open' calls `narrow-to-region'
12242 (js2-reparse)
12243 (let (forward-sexp-function
12244 node (start (point)) pos lp rp child)
12245 (cond
12246 ;; backward-sexp
12247 ;; could probably make this better for some cases:
12248 ;; - if in statement block (e.g. function body), go to parent
12249 ;; - infix exprs like (foo in bar) - maybe go to beginning
12250 ;; of infix expr if in the right-side expression?
12251 ((and arg (cl-minusp arg))
12252 (dotimes (_ (- arg))
12253 (js2-backward-sws)
12254 (forward-char -1) ; Enter the node we backed up to.
12255 (when (setq node (js2-node-at-point (point) t))
12256 (setq pos (js2-node-abs-pos node))
12257 (let ((parens (js2-mode-forward-sexp-parens node pos)))
12258 (setq lp (car parens)
12259 rp (cdr parens)))
12260 (when (and lp (> start lp))
12261 (if (and rp (<= start rp))
12262 ;; Between parens, check if there's a child node we can jump.
12263 (when (setq child (js2-node-closest-child node (point) lp t))
12264 (setq pos (js2-node-abs-pos child)))
12265 ;; Before both parens.
12266 (setq pos lp)))
12267 (let ((state (parse-partial-sexp start pos)))
12268 (goto-char (if (not (zerop (car state)))
12269 ;; Stumble at the unbalanced paren if < 0, or
12270 ;; jump a bit further if > 0.
12271 (scan-sexps start -1)
12272 pos))))
12273 (unless pos (goto-char (point-min)))))
12274 (t
12275 ;; forward-sexp
12276 (dotimes (_ arg)
12277 (js2-forward-sws)
12278 (when (setq node (js2-node-at-point (point) t))
12279 (setq pos (js2-node-abs-pos node))
12280 (let ((parens (js2-mode-forward-sexp-parens node pos)))
12281 (setq lp (car parens)
12282 rp (cdr parens)))
12283 (or
12284 (when (and rp (<= start rp))
12285 (if (> start lp)
12286 (when (setq child (js2-node-closest-child node (point) rp))
12287 (setq pos (js2-node-abs-end child)))
12288 (setq pos (1+ rp))))
12289 ;; No parens or child nodes, looks for the end of the current node.
12290 (cl-incf pos (js2-node-len
12291 (if (js2-expr-stmt-node-p (js2-node-parent node))
12292 ;; Stop after the semicolon.
12293 (js2-node-parent node)
12294 node))))
12295 (let ((state (save-excursion (parse-partial-sexp start pos))))
12296 (goto-char (if (not (zerop (car state)))
12297 (scan-sexps start 1)
12298 pos))))
12299 (unless pos (goto-char (point-max)))))))))
12300
12301 (defun js2-mode-forward-sexp-parens (node abs-pos)
12302 "Return a cons cell with positions of main parens in NODE."
12303 (cond
12304 ((or (js2-array-node-p node)
12305 (js2-object-node-p node)
12306 (js2-comp-node-p node)
12307 (memq (aref node 0) '(cl-struct-js2-block-node cl-struct-js2-scope)))
12308 (cons abs-pos (+ abs-pos (js2-node-len node) -1)))
12309 ((js2-paren-expr-node-p node)
12310 (let ((lp (js2-node-lp node))
12311 (rp (js2-node-rp node)))
12312 (cons (when lp (+ abs-pos lp))
12313 (when rp (+ abs-pos rp)))))))
12314
12315 (defun js2-node-closest-child (parent point limit &optional before)
12316 (let* ((parent-pos (js2-node-abs-pos parent))
12317 (rpoint (- point parent-pos))
12318 (rlimit (- limit parent-pos))
12319 (min (min rpoint rlimit))
12320 (max (max rpoint rlimit))
12321 found)
12322 (catch 'done
12323 (js2-visit-ast
12324 parent
12325 (lambda (node _end-p)
12326 (if (eq node parent)
12327 t
12328 (let ((pos (js2-node-pos node)) ;; Both relative values.
12329 (end (+ (js2-node-pos node) (js2-node-len node))))
12330 (when (and (>= pos min) (<= end max)
12331 (if before (< pos rpoint) (> end rpoint)))
12332 (setq found node))
12333 (when (> end rpoint)
12334 (throw 'done nil)))
12335 nil))))
12336 found))
12337
12338 (defun js2-errors ()
12339 "Return a list of errors found."
12340 (and js2-mode-ast
12341 (js2-ast-root-errors js2-mode-ast)))
12342
12343 (defun js2-warnings ()
12344 "Return a list of warnings found."
12345 (and js2-mode-ast
12346 (js2-ast-root-warnings js2-mode-ast)))
12347
12348 (defun js2-have-errors-p ()
12349 "Return non-nil if any parse errors or warnings were found."
12350 (or (js2-errors) (js2-warnings)))
12351
12352 (defun js2-errors-and-warnings ()
12353 "Return a copy of the concatenated errors and warnings lists.
12354 They are appended: first the errors, then the warnings.
12355 Entries are of the form (MSG BEG END)."
12356 (when js2-mode-ast
12357 (append (js2-ast-root-errors js2-mode-ast)
12358 (copy-sequence (js2-ast-root-warnings js2-mode-ast)))))
12359
12360 (defun js2-next-error (&optional arg reset)
12361 "Move to next parse error.
12362 Typically invoked via \\[next-error].
12363 ARG is the number of errors, forward or backward, to move.
12364 RESET means start over from the beginning."
12365 (interactive "p")
12366 (if (not (or (js2-errors) (js2-warnings)))
12367 (message "No errors")
12368 (when reset
12369 (goto-char (point-min)))
12370 (let* ((errs (js2-errors-and-warnings))
12371 (continue t)
12372 (start (point))
12373 (count (or arg 1))
12374 (backward (cl-minusp count))
12375 (sorter (if backward '> '<))
12376 (stopper (if backward '< '>))
12377 (count (abs count))
12378 all-errs err)
12379 ;; Sort by start position.
12380 (setq errs (sort errs (lambda (e1 e2)
12381 (funcall sorter (cl-second e1) (cl-second e2))))
12382 all-errs errs)
12383 ;; Find nth error with pos > start.
12384 (while (and errs continue)
12385 (when (funcall stopper (cl-cadar errs) start)
12386 (setq err (car errs))
12387 (if (zerop (cl-decf count))
12388 (setq continue nil)))
12389 (setq errs (cdr errs)))
12390 ;; Clear for `js2-echo-error'.
12391 (message nil)
12392 (if err
12393 (goto-char (cl-second err))
12394 ;; Wrap around to first error.
12395 (goto-char (cl-second (car all-errs)))
12396 ;; If we were already on it, echo msg again.
12397 (if (= (point) start)
12398 (js2-echo-error (point) (point)))))))
12399
12400 (defun js2-down-mouse-3 ()
12401 "Make right-click move the point to the click location.
12402 This makes right-click context menu operations a bit more intuitive.
12403 The point will not move if the region is active, however, to avoid
12404 destroying the region selection."
12405 (interactive)
12406 (when (and js2-move-point-on-right-click
12407 (not mark-active))
12408 (let ((e last-input-event))
12409 (ignore-errors
12410 (goto-char (cl-cadadr e))))))
12411
12412 (defun js2-mode-create-imenu-index ()
12413 "Return an alist for `imenu--index-alist'."
12414 ;; This is built up in `js2-parse-record-imenu' during parsing.
12415 (when js2-mode-ast
12416 ;; if we have an ast but no recorder, they're requesting a rescan
12417 (unless js2-imenu-recorder
12418 (js2-reparse 'force))
12419 (prog1
12420 (js2-build-imenu-index)
12421 (setq js2-imenu-recorder nil
12422 js2-imenu-function-map nil))))
12423
12424 (defun js2-mode-find-tag ()
12425 "Replacement for `find-tag-default'.
12426 `find-tag-default' returns a ridiculous answer inside comments."
12427 (let (beg end)
12428 (save-excursion
12429 (if (looking-at "\\_>")
12430 (setq beg (progn (forward-symbol -1) (point))
12431 end (progn (forward-symbol 1) (point)))
12432 (setq beg (progn (forward-symbol 1) (point))
12433 end (progn (forward-symbol -1) (point))))
12434 (replace-regexp-in-string
12435 "[\"']" ""
12436 (buffer-substring-no-properties beg end)))))
12437
12438 (defun js2-mode-forward-sibling ()
12439 "Move to the end of the sibling following point in parent.
12440 Returns non-nil if successful, or nil if there was no following sibling."
12441 (let* ((node (js2-node-at-point))
12442 (parent (js2-mode-find-enclosing-fn node))
12443 sib)
12444 (when (setq sib (js2-node-find-child-after (point) parent))
12445 (goto-char (+ (js2-node-abs-pos sib)
12446 (js2-node-len sib))))))
12447
12448 (defun js2-mode-backward-sibling ()
12449 "Move to the beginning of the sibling node preceding point in parent.
12450 Parent is defined as the enclosing script or function."
12451 (let* ((node (js2-node-at-point))
12452 (parent (js2-mode-find-enclosing-fn node))
12453 sib)
12454 (when (setq sib (js2-node-find-child-before (point) parent))
12455 (goto-char (js2-node-abs-pos sib)))))
12456
12457 (defun js2-beginning-of-defun (&optional arg)
12458 "Go to line on which current function starts, and return t on success.
12459 If we're not in a function or already at the beginning of one, go
12460 to beginning of previous script-level element.
12461 With ARG N, do that N times. If N is negative, move forward."
12462 (setq arg (or arg 1))
12463 (if (cl-plusp arg)
12464 (let ((parent (js2-node-parent-script-or-fn (js2-node-at-point))))
12465 (when (cond
12466 ((js2-function-node-p parent)
12467 (goto-char (js2-node-abs-pos parent)))
12468 (t
12469 (js2-mode-backward-sibling)))
12470 (if (> arg 1)
12471 (js2-beginning-of-defun (1- arg))
12472 t)))
12473 (when (js2-end-of-defun)
12474 (js2-beginning-of-defun (if (>= arg -1) 1 (1+ arg))))))
12475
12476 (defun js2-end-of-defun ()
12477 "Go to the char after the last position of the current function
12478 or script-level element."
12479 (let* ((node (js2-node-at-point))
12480 (parent (or (and (js2-function-node-p node) node)
12481 (js2-node-parent-script-or-fn node)))
12482 script)
12483 (unless (js2-function-node-p parent)
12484 ;; Use current script-level node, or, if none, the next one.
12485 (setq script (or parent node)
12486 parent (js2-node-find-child-before (point) script))
12487 (when (or (null parent)
12488 (>= (point) (+ (js2-node-abs-pos parent)
12489 (js2-node-len parent))))
12490 (setq parent (js2-node-find-child-after (point) script))))
12491 (when parent
12492 (goto-char (+ (js2-node-abs-pos parent)
12493 (js2-node-len parent))))))
12494
12495 (defun js2-mark-defun (&optional allow-extend)
12496 "Put mark at end of this function, point at beginning.
12497 The function marked is the one that contains point.
12498
12499 Interactively, if this command is repeated,
12500 or (in Transient Mark mode) if the mark is active,
12501 it marks the next defun after the ones already marked."
12502 (interactive "p")
12503 (let (extended)
12504 (when (and allow-extend
12505 (or (and (eq last-command this-command) (mark t))
12506 (and transient-mark-mode mark-active)))
12507 (let ((sib (save-excursion
12508 (goto-char (mark))
12509 (if (js2-mode-forward-sibling)
12510 (point)))))
12511 (if sib
12512 (progn
12513 (set-mark sib)
12514 (setq extended t))
12515 ;; no more siblings - try extending to enclosing node
12516 (goto-char (mark t)))))
12517 (when (not extended)
12518 (let ((node (js2-node-at-point (point) t)) ; skip comments
12519 ast fn stmt parent beg end)
12520 (when (js2-ast-root-p node)
12521 (setq ast node
12522 node (or (js2-node-find-child-after (point) node)
12523 (js2-node-find-child-before (point) node))))
12524 ;; only mark whole buffer if we can't find any children
12525 (if (null node)
12526 (setq node ast))
12527 (if (js2-function-node-p node)
12528 (setq parent node)
12529 (setq fn (js2-mode-find-enclosing-fn node)
12530 stmt (if (or (null fn)
12531 (js2-ast-root-p fn))
12532 (js2-mode-find-first-stmt node))
12533 parent (or stmt fn)))
12534 (setq beg (js2-node-abs-pos parent)
12535 end (+ beg (js2-node-len parent)))
12536 (push-mark beg)
12537 (goto-char end)
12538 (exchange-point-and-mark)))))
12539
12540 (defun js2-narrow-to-defun ()
12541 "Narrow to the function enclosing point."
12542 (interactive)
12543 (let* ((node (js2-node-at-point (point) t)) ; skip comments
12544 (fn (if (js2-script-node-p node)
12545 node
12546 (js2-mode-find-enclosing-fn node)))
12547 (beg (js2-node-abs-pos fn)))
12548 (unless (js2-ast-root-p fn)
12549 (narrow-to-region beg (+ beg (js2-node-len fn))))))
12550
12551 (defun js2-jump-to-definition (&optional arg)
12552 "Jump to the definition of an object's property, variable or function."
12553 (interactive "P")
12554 (ring-insert find-tag-marker-ring (point-marker))
12555 (let* ((node (js2-node-at-point))
12556 (parent (js2-node-parent node))
12557 (names (if (js2-prop-get-node-p parent)
12558 (reverse (let ((temp (js2-compute-nested-prop-get parent)))
12559 (cl-loop for n in temp
12560 with result = '()
12561 do (push n result)
12562 until (equal node n)
12563 finally return result)))))
12564 node-init)
12565 (unless (and (js2-name-node-p node)
12566 (not (js2-var-init-node-p parent))
12567 (not (js2-function-node-p parent)))
12568 (error "Node is not a supported jump node"))
12569 (push (or (and names (pop names))
12570 (unless (and (js2-object-prop-node-p parent)
12571 (eq node (js2-object-prop-node-left parent)))
12572 node)) names)
12573 (setq node-init (js2-search-scope node names))
12574
12575 ;; todo: display list of results in buffer
12576 ;; todo: group found references by buffer
12577 (unless node-init
12578 (switch-to-buffer
12579 (catch 'found
12580 (unless arg
12581 (mapc (lambda (b)
12582 (with-current-buffer b
12583 (when (derived-mode-p 'js2-mode)
12584 (setq node-init (js2-search-scope js2-mode-ast names))
12585 (if node-init
12586 (throw 'found b)))))
12587 (buffer-list)))
12588 nil)))
12589 (setq node-init (if (listp node-init) (car node-init) node-init))
12590 (unless node-init
12591 (pop-tag-mark)
12592 (error "No jump location found"))
12593 (goto-char (js2-node-abs-pos node-init))))
12594
12595 (defun js2-search-object (node name-node)
12596 "Check if object NODE contains element with NAME-NODE."
12597 (cl-assert (js2-object-node-p node))
12598 ;; Only support name-node and nodes for the time being
12599 (cl-loop for elem in (js2-object-node-elems node)
12600 for left = (js2-object-prop-node-left elem)
12601 if (or (and (js2-name-node-p left)
12602 (equal (js2-name-node-name name-node)
12603 (js2-name-node-name left)))
12604 (and (js2-string-node-p left)
12605 (string= (js2-name-node-name name-node)
12606 (js2-string-node-value left))))
12607 return elem))
12608
12609 (defun js2-search-object-for-prop (object prop-names)
12610 "Return node in OBJECT that matches PROP-NAMES or nil.
12611 PROP-NAMES is a list of values representing a path to a value in OBJECT.
12612 i.e. ('name' 'value') = {name : { value: 3}}"
12613 (let (node
12614 (temp-object object)
12615 (temp t) ;temporay node
12616 (names prop-names))
12617 (while (and temp names (js2-object-node-p temp-object))
12618 (setq temp (js2-search-object temp-object (pop names)))
12619 (and (setq node temp)
12620 (setq temp-object (js2-object-prop-node-right temp))))
12621 (unless names node)))
12622
12623 (defun js2-search-scope (node names)
12624 "Searches NODE scope for jump location matching NAMES.
12625 NAMES is a list of property values to search for. For functions
12626 and variables NAMES will contain one element."
12627 (let (node-init
12628 (val (js2-name-node-name (car names))))
12629 (setq node-init (js2-get-symbol-declaration node val))
12630
12631 (when (> (length names) 1)
12632
12633 ;; Check var declarations
12634 (when (and node-init (string= val (js2-name-node-name node-init)))
12635 (let ((parent (js2-node-parent node-init))
12636 (temp-names names))
12637 (pop temp-names) ;; First element is var name
12638 (setq node-init (when (js2-var-init-node-p parent)
12639 (js2-search-object-for-prop
12640 (js2-var-init-node-initializer parent)
12641 temp-names)))))
12642
12643 ;; Check all assign nodes
12644 (js2-visit-ast
12645 js2-mode-ast
12646 (lambda (node endp)
12647 (unless endp
12648 (if (js2-assign-node-p node)
12649 (let ((left (js2-assign-node-left node))
12650 (right (js2-assign-node-right node))
12651 (temp-names names))
12652 (when (js2-prop-get-node-p left)
12653 (let* ((prop-list (js2-compute-nested-prop-get left))
12654 (found (cl-loop for prop in prop-list
12655 until (not (string= (js2-name-node-name
12656 (pop temp-names))
12657 (js2-name-node-name prop)))
12658 if (not temp-names) return prop))
12659 (found-node (or found
12660 (when (js2-object-node-p right)
12661 (js2-search-object-for-prop right
12662 temp-names)))))
12663 (if found-node (push found-node node-init))))))
12664 t))))
12665 node-init))
12666
12667 (defun js2-get-symbol-declaration (node name)
12668 "Find scope for NAME from NODE."
12669 (let ((scope (js2-get-defining-scope
12670 (or (js2-node-get-enclosing-scope node)
12671 node) name)))
12672 (if scope (js2-symbol-ast-node (js2-scope-get-symbol scope name)))))
12673
12674 (provide 'js2-mode)
12675
12676 ;;; js2-mode.el ends here