]> code.delx.au - gnu-emacs-elpa/blob - tests/parser.el
Don't treat a block-scoped const as redeclaration
[gnu-emacs-elpa] / tests / parser.el
1 ;;; tests/parser.el --- Some tests for js2-mode.
2
3 ;; Copyright (C) 2009, 2011-2013 Free Software Foundation, Inc.
4
5 ;; This file is part of GNU Emacs.
6
7 ;; GNU Emacs is free software: you can redistribute it and/or modify
8 ;; it under the terms of the GNU General Public License as published by
9 ;; the Free Software Foundation, either version 3 of the License, or
10 ;; (at your option) any later version.
11
12 ;; GNU Emacs is distributed in the hope that it will be useful,
13 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
14 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 ;; GNU General Public License for more details.
16
17 ;; You should have received a copy of the GNU General Public License
18 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
19
20 ;;; Code:
21
22 (require 'ert)
23 (require 'ert-x)
24 (require 'js2-mode)
25 (require 'cl-lib)
26
27 (defmacro js2-deftest (name buffer-contents &rest body)
28 (declare (indent defun))
29 `(ert-deftest ,(intern (format "js2-%s" name)) ()
30 (with-temp-buffer
31 (save-excursion
32 (insert ,buffer-contents))
33 (unwind-protect
34 (progn
35 ,@body)
36 (fundamental-mode)))))
37
38 (defun js2-test-string-to-ast (s)
39 (insert s)
40 (js2-mode)
41 (should (null js2-mode-buffer-dirty-p))
42 js2-mode-ast)
43
44 (cl-defun js2-test-parse-string (code-string &key syntax-error errors-count
45 reference)
46 (ert-with-test-buffer (:name 'origin)
47 (let ((ast (js2-test-string-to-ast code-string)))
48 (if syntax-error
49 (let ((errors (js2-ast-root-errors ast)))
50 (should (= (or errors-count 1) (length errors)))
51 (cl-destructuring-bind (_ pos len) (car (last errors))
52 (should (string= syntax-error (substring code-string
53 (1- pos) (+ pos len -1))))))
54 (should (= 0 (length (js2-ast-root-errors ast))))
55 (ert-with-test-buffer (:name 'copy)
56 (js2-print-tree ast)
57 (skip-chars-backward " \t\n")
58 (should (string= (or reference code-string)
59 (buffer-substring-no-properties
60 (point-min) (point)))))))))
61
62 (cl-defmacro js2-deftest-parse (name code-string &key bind syntax-error errors-count
63 reference)
64 "Parse CODE-STRING. If SYNTAX-ERROR is nil, print syntax tree
65 with `js2-print-tree' and assert the result to be equal to
66 REFERENCE, if present, or the original string. If SYNTAX-ERROR
67 is passed, expect syntax error highlighting substring equal to
68 SYNTAX-ERROR value. BIND defines bindings to apply them around
69 the test."
70 (declare (indent defun))
71 `(ert-deftest ,(intern (format "js2-%s" name)) ()
72 (let ,(append bind '((js2-basic-offset 2)))
73 (js2-test-parse-string ,code-string
74 :syntax-error ,syntax-error
75 :errors-count ,errors-count
76 :reference ,reference))))
77
78 ;;; Basics
79
80 (js2-deftest-parse variable-assignment
81 "a = 1;")
82
83 (js2-deftest-parse empty-object-literal
84 "b = {};")
85
86 (js2-deftest-parse empty-array-literal
87 "c = [];")
88
89 (js2-deftest-parse array-with-missing-elements
90 "var a = [1, 2, ,];")
91
92 (js2-deftest-parse comma-after-regexp
93 "d = /eee/, 42;")
94
95 (js2-deftest-parse return-statement
96 "function foo() {\n return 2;\n}")
97
98 (js2-deftest-parse function-statement
99 "function foo() {\n}")
100
101 (js2-deftest-parse function-statement-inside-block
102 "if (true) {\n function foo() {\n }\n}")
103
104 (js2-deftest-parse function-expression-statements-are-verboten
105 "function() {}" :syntax-error "(")
106
107 (js2-deftest-parse member-expr-as-function-name
108 "function a.b.c[2](x, y) {\n}"
109 :bind ((js2-allow-member-expr-as-function-name t)))
110
111 (js2-deftest-parse named-function-expression
112 "a = function b() {};")
113
114 (js2-deftest-parse parenthesized-expression
115 "(1 + 2);")
116
117 (js2-deftest-parse for-with-in-operator-in-parens
118 "for (var y = (0 in []) in {}) {\n}")
119
120 (js2-deftest-parse for-with-in-operator-in-cond
121 "for (var y = 1 ? 0 in [] : false in {}) {\n}")
122
123 (js2-deftest-parse let-expression
124 "(let (x = 42) x);")
125
126 (js2-deftest-parse let-expression-statement
127 "let (x = 42) x;")
128
129 ;;; Callers of `js2-valid-prop-name-token'
130
131 (js2-deftest-parse parse-property-access-when-not-keyword
132 "A.foo = 3;")
133
134 (js2-deftest-parse parse-property-access-when-keyword
135 "A.in = 3;"
136 :bind ((js2-allow-keywords-as-property-names t)))
137
138 (js2-deftest-parse parse-property-access-when-keyword-no-xml
139 "A.in = 3;"
140 :bind ((js2-allow-keywords-as-property-names t)
141 (js2-compiler-xml-available nil)))
142
143 (js2-deftest-parse parse-object-literal-when-not-keyword
144 "a = {b: 1};")
145
146 (js2-deftest-parse parse-object-literal-when-keyword
147 "a = {in: 1};"
148 :bind ((js2-allow-keywords-as-property-names t)))
149
150 ;;; 'of' contextual keyword
151
152 (js2-deftest-parse parse-legacy-array-comp-loop-with-of
153 "[a for (a of [])];")
154
155 (js2-deftest-parse parse-array-comp-loop
156 "[for (a of []) a];")
157
158 (js2-deftest-parse parse-for-of
159 "for (var a of []) {\n}")
160
161 (js2-deftest-parse of-can-be-var-name
162 "var of = 3;")
163
164 (js2-deftest-parse of-can-be-function-name
165 "function of() {\n}")
166
167 ;;; Destructuring binding
168
169 (js2-deftest-parse destruct-in-declaration
170 "var {a, b} = {a: 1, b: 2};")
171
172 (js2-deftest-parse destruct-in-arguments
173 "function f({a: aa, b: bb}) {\n}")
174
175 (js2-deftest-parse destruct-in-array-comp-loop
176 "[a + b for ([a, b] in [[0, 1], [1, 2]])];")
177
178 (js2-deftest-parse destruct-in-catch-clause
179 "try {\n} catch ({a, b}) {\n a + b;\n}")
180
181 ;;; Object literals
182
183 (js2-deftest-parse object-literal-shorthand
184 "var x = {a: 1, b, c: 1, d};")
185
186 (js2-deftest-parse object-literal-shorthard-with-number
187 "var a = {1};" :syntax-error "}" :errors-count 2)
188
189 (js2-deftest-parse object-literal-method
190 "var x = {f(y) { return y;\n}};")
191
192 (js2-deftest-parse object-literal-getter-method
193 "var x = {get f() { return 42;\n}};")
194
195 (js2-deftest-parse object-literal-setter-method
196 "var x = {set f(y) { x = y;\n}};")
197
198 (js2-deftest-parse object-literal-computed-keys
199 "var x = {[Symbol.iterator]: function() {}};")
200
201 (js2-deftest-parse object-literal-computed-function-keys
202 "var x = {[foo + bar](y) { return y;\n}};")
203
204 (js2-deftest-parse object-literal-computed-getter-key
205 "var x = {get [foo + bar]() { return 42;\n}};")
206
207 (js2-deftest-parse object-literal-generator
208 "var x = {*foo() { yield 42;\n}};")
209
210 (js2-deftest-parse object-literal-computed-generator-key
211 "var x = {*[foo + bar]() { yield 42;\n}};")
212
213 ;;; Function definition
214
215 (js2-deftest function-redeclaring-var "var gen = 3; function gen() {};"
216 (js2-mode)
217 (should (= (length (js2-ast-root-warnings js2-mode-ast)) 1)))
218
219 (js2-deftest function-expression-var-same-name "var gen = function gen() {};"
220 (js2-mode)
221 (should (null (js2-ast-root-warnings js2-mode-ast))))
222
223 ;;; Function parameters
224
225 (js2-deftest-parse function-with-default-parameters
226 "function foo(a = 1, b = a + 1) {\n}")
227
228 (js2-deftest-parse function-with-no-default-after-default
229 "function foo(a = 1, b) {\n}"
230 :syntax-error "b")
231
232 (js2-deftest-parse function-with-destruct-after-default
233 "function foo(a = 1, {b, c}) {\n}"
234 :syntax-error "{")
235
236 (js2-deftest-parse function-with-rest-parameter
237 "function foo(a, b, ...rest) {\n}")
238
239 (js2-deftest-parse function-with-param-after-rest-parameter
240 "function foo(a, ...b, rest) {\n}"
241 :syntax-error "rest")
242
243 (js2-deftest-parse function-with-destruct-after-rest-parameter
244 "function foo(a, ...b, {}) {\n}"
245 :syntax-error "{}")
246
247 (js2-deftest-parse function-with-rest-after-default-parameter
248 "function foo(a = 1, ...rest) {\n}")
249
250 ;;; Strict mode errors
251
252 (js2-deftest-parse function-bad-strict-parameters
253 "'use strict';\nfunction foo(eval, {arguments}, bar) {\n}"
254 :syntax-error "eval" :errors-count 2)
255
256 (js2-deftest-parse function-retroactive-bad-strict-parameters
257 "function foo(arguments) {'use strict';}"
258 :syntax-error "arguments" :errors-count 1)
259
260 (js2-deftest-parse function-duplicate-strict-parameters
261 "'use strict';\nfunction foo(a, a) {\n}"
262 :syntax-error "a" :errors-count 1)
263
264 (js2-deftest-parse function-bad-strict-function-name
265 "'use strict';\nfunction eval() {\n}"
266 :syntax-error "eval" :errors-count 1)
267
268 (js2-deftest-parse function-bad-retroactive-strict-function-name
269 "function arguments() {'use strict';}"
270 :syntax-error "arguments" :errors-count 1)
271
272 (js2-deftest-parse function-bad-strict-catch-name
273 "'use strict';\ntry {} catch (eval) {}"
274 :syntax-error "eval" :errors-count 1)
275
276 (js2-deftest-parse function-bad-strict-variable-name
277 "'use strict';\nvar eval = 'kekeke';"
278 :syntax-error "eval" :errors-count 1)
279
280 (js2-deftest-parse function-bad-strict-assignment
281 "'use strict';\narguments = 'fufufu';"
282 :syntax-error "arguments" :errors-count 1)
283
284 (js2-deftest-parse function-strict-with
285 "'use strict';\nwith ({}) {}"
286 :syntax-error "with" :errors-count 1)
287
288 (js2-deftest-parse function-strict-octal
289 "'use strict';\nvar number = 0644;"
290 :syntax-error "0644" :errors-count 1)
291
292 (js2-deftest-parse function-strict-duplicate-keys
293 "'use strict';\nvar object = {a: 1, a: 2, 'a': 3, ['a']: 4, 1: 5, '1': 6, [1 + 1]: 7};"
294 :syntax-error "a" :errors-count 4) ; "a" has 3 dupes, "1" has 1 dupe.
295
296 ;; errors... or lackthereof.
297 (js2-deftest-parse function-strict-const-scope
298 "'use strict';\nconst a;\nif (1) {\n const a;\n}")
299
300 ;;; Spread operator
301
302 (js2-deftest-parse spread-in-array-literal
303 "[1, ...[2, 3], 4, ...[5, 6]];")
304
305 (js2-deftest-parse spread-in-function-call
306 "f(3, ...[t(2), t(3)], 42, ...[t(4)]);")
307
308 ;;; Arrow functions
309
310 (js2-deftest-parse arrow-function-with-empty-args-and-no-curlies
311 "() => false;" :reference "() => {false};")
312
313 (js2-deftest-parse arrow-function-with-args-and-curlies
314 "(a, b = 1, ...c) => { c;\n};")
315
316 (js2-deftest-parse arrow-function-with-destructuring
317 "([{a}, b]) => { a + b;\n};")
318
319 (js2-deftest-parse parenless-arrow-function-prohibits-rest
320 "...b => {b + 1;};" :syntax-error "=>")
321
322 (js2-deftest-parse parenless-arrow-function-prohibits-destructuring
323 "[a, b] => {a + b;};" :syntax-error "]" :errors-count 4)
324
325 (js2-deftest-parse arrow-function-recovers-from-error
326 "[(,foo) => 1];" :syntax-error "," :errors-count 6)
327
328 ;;; Automatic semicolon insertion
329
330 (js2-deftest-parse no-auto-semi-insertion-after-if
331 "if (true) {\n}")
332
333 (js2-deftest-parse auto-semi-insertion-after-function
334 "a = function() {}" :reference "a = function() {};")
335
336 (js2-deftest-parse auto-semi-one-variable-per-line
337 "x\ny" :reference "x;\ny;")
338
339 ;;; Labels
340
341 (js2-deftest-parse labeled-stmt-node
342 "foo:\nbar:\nx = y + 1;")
343
344 (js2-deftest no-label-node-inside-expr "x = y:"
345 (let (js2-parse-interruptable-p)
346 (js2-mode))
347 (let ((assignment (js2-expr-stmt-node-expr (car (js2-scope-kids js2-mode-ast)))))
348 (should (js2-name-node-p (js2-assign-node-right assignment)))))
349
350 (js2-deftest-parse label-and-loops "for (; ; ) {
351 loop:
352 for (; ; ) {
353 continue loop;
354 }
355 }")
356
357 ;;; Generators
358
359 (js2-deftest-parse legacy-generator "function foo() {\n yield 1;\n}")
360
361 (js2-deftest-parse legacy-generator-cannot-return
362 "function foo() {\n yield 1;\n return 2;\n}" :syntax-error "return 2")
363
364 (js2-deftest-parse harmony-generator "function* bar() {\n yield 2;\n return 3;\n}")
365
366 (js2-deftest-parse harmony-generator-yield-star "(function*(a) { yield* a;\n});")
367
368 ;;; Comprehensions
369
370 (js2-deftest-parse parse-legacy-array-comp-loop-with-filter
371 "[a for (a in b) if (a == 2)];")
372
373 (js2-deftest-parse parse-array-comp-loop-with-filters
374 "[for (a in b) if (a == 2) if (b != 10) a];")
375
376 (js2-deftest-parse parse-generator-comp-loop-with-filters
377 "(for (x of y) if (x != 4) x);")
378
379 (js2-deftest-parse parse-array-comp-with-yield-is-ok
380 "(function() { return [for (x of []) yield x];\n});")
381
382 (js2-deftest-parse parse-generator-comp-with-yield-is-not-ok
383 "(function() { return (for (x of []) yield x);\n});"
384 :syntax-error "yield")
385
386 (js2-deftest-parse parse-generator-comp-with-yield-inside-function-is-ok
387 "(for (x of []) function*() { yield x;\n});")
388
389 ;;; Numbers
390
391 (js2-deftest-parse decimal-starting-with-zero "081;" :reference "81;")
392
393 (js2-deftest-parse huge-hex "0x0123456789abcdefABCDEF;" :reference "-1;")
394
395 (js2-deftest-parse octal-without-o "071;" :reference "57;")
396
397 (js2-deftest-parse hex-number-okay "0x123;" :reference "291;")
398
399 (js2-deftest-parse hex-number-broken "0xz23;"
400 :syntax-error "0xz" :errors-count 2)
401
402 (js2-deftest-parse binary-number-okay "0b101;" :reference "5;")
403
404 (js2-deftest-parse binary-number-broken "0b210;"
405 :syntax-error "0b2" :errors-count 2)
406
407 (js2-deftest-parse octal-number-okay "0o765;" :reference "501;")
408
409 (js2-deftest-parse octal-number-broken "0o812;"
410 :syntax-error "0o8" :errors-count 2)
411
412 ;;; Modules
413
414 (js2-deftest parse-export-bindings "{one, two as dos}"
415 (js2-init-scanner)
416 (should (js2-match-token js2-LC))
417 (let ((imports (js2-parse-export-bindings)))
418 (should (not (equal nil imports)))
419 (should (= 2 (length imports)))
420 (let ((first (nth 0 imports))
421 (second (nth 1 imports)))
422 (should (equal "one" (js2-name-node-name (js2-export-binding-node-extern-name first))))
423 (should (equal "two" (js2-name-node-name (js2-export-binding-node-extern-name second))))
424 (let ((first-name (js2-export-binding-node-local-name first))
425 (second-name (js2-export-binding-node-local-name second)))
426 (should (equal first (js2-node-parent first-name)))
427 (should (equal 3 (js2-node-len first-name)))
428 (should (equal "one" (js2-name-node-name first-name)))
429 (should (equal second (js2-node-parent second-name)))
430 (should (equal 3 (js2-node-len second-name)))
431 (should (equal "dos" (js2-name-node-name second-name)))))))
432
433 (js2-deftest parse-export-binding-as-default "one as default"
434 (js2-init-scanner)
435 (let ((binding (js2-maybe-parse-export-binding)))
436 (should binding)
437 (should (js2-export-binding-node-p binding))
438 (let ((name (js2-export-binding-node-local-name binding)))
439 (should name)
440 (should (equal "default" (js2-name-node-name name))))))
441
442 (js2-deftest parse-namepsace-import "* as lib;"
443 (js2-init-scanner)
444 (should (js2-match-token js2-MUL))
445 (let ((namespace-import (js2-parse-namespace-import)))
446 (should (not (equal nil namespace-import)))
447 (should (js2-namespace-import-node-p namespace-import))
448 (should (= 1 (js2-node-pos namespace-import)))
449 (should (equal 8 (js2-node-len namespace-import)))
450 (let ((name-node (js2-namespace-import-node-name namespace-import)))
451 (should (equal "lib" (js2-name-node-name name-node)))
452 (should (= 5 (js2-node-pos name-node))))))
453
454 (js2-deftest parse-from-clause "from 'foo/bar';"
455 (js2-init-scanner)
456 (let ((from (js2-parse-from-clause)))
457 (should (not (equal nil from)))
458 (should (= 1 (js2-node-pos from)))
459 (should (= 14 (js2-node-len from)))
460 (should (equal "foo/bar" (js2-from-clause-node-module-id from)))))
461
462 (js2-deftest parse-import-module-id-only "import 'src/lib'"
463 (js2-init-scanner)
464 (should (js2-match-token js2-IMPORT))
465 (let ((import (js2-parse-import)))
466 (should (not (equal nil import)))
467 (should (= 1 (js2-node-pos import)))
468 (should (= 16 (js2-node-len import)))
469 (should (equal nil (js2-import-node-import import)))
470 (should (equal nil (js2-import-node-from import)))))
471
472 (js2-deftest parse-imported-default-binding "import theDefault from 'src/lib'"
473 (js2-push-scope (make-js2-scope :pos 0))
474 (js2-init-scanner)
475 (should (js2-match-token js2-IMPORT))
476 (let ((import-node (js2-parse-import)))
477 (should (not (equal nil import-node)))
478 (should (equal "src/lib" (js2-import-node-module-id import-node)))
479 (let ((import (js2-import-node-import import-node)))
480 (should (not (equal nil import)))
481 (should (equal nil (js2-import-clause-node-namespace-import import)))
482 (should (equal nil (js2-import-clause-node-named-imports import)))
483 (let ((default (js2-import-clause-node-default-binding import)))
484 (should (not (equal nil default)))
485 (should (js2-export-binding-node-p default))
486 (should (equal "theDefault" (js2-name-node-name (js2-export-binding-node-extern-name default)))))))
487 (should (js2-scope-get-symbol js2-current-scope "theDefault")))
488
489 (js2-deftest parse-import-namespace-binding "import * as lib from 'src/lib'"
490 (js2-push-scope (make-js2-scope :pos 0))
491 (js2-init-scanner)
492 (should (js2-match-token js2-IMPORT))
493 (let ((import-node (js2-parse-import)))
494 (should (not (equal nil import-node)))
495 (should (equal "src/lib" (js2-import-node-module-id import-node)))
496 (let ((import (js2-import-node-import import-node)))
497 (should (not (equal nil import)))
498 (should (equal nil (js2-import-clause-node-default-binding import)))
499 (should (equal nil (js2-import-clause-node-named-imports import)))
500 (let ((ns-import (js2-import-clause-node-namespace-import import)))
501 (should (not (equal nil ns-import)))
502 (should (js2-namespace-import-node-p ns-import))
503 (should (equal "lib" (js2-name-node-name (js2-namespace-import-node-name ns-import)))))))
504 (should (js2-scope-get-symbol js2-current-scope "lib")))
505
506 (js2-deftest parse-import-named-imports "import {foo as bar, baz} from 'src/lib'"
507 (js2-push-scope (make-js2-scope :pos 0))
508 (js2-init-scanner)
509 (should (js2-match-token js2-IMPORT))
510 (let ((import-node (js2-parse-import)))
511 (should (not (equal nil import-node)))
512 (should (equal "src/lib" (js2-import-node-module-id import-node)))
513 (let ((import (js2-import-node-import import-node)))
514 (should (not (equal nil import)))
515 (should (equal nil (js2-import-clause-node-default-binding import)))
516 (should (equal nil (js2-import-clause-node-namespace-import import)))
517 (let ((named-imports (js2-import-clause-node-named-imports import)))
518 (should (not (equal nil named-imports)))
519 (should (listp named-imports))
520 (should (= 2 (length named-imports)))
521 (let ((first (nth 0 named-imports))
522 (second (nth 1 named-imports)))
523 (should (equal "bar" (js2-name-node-name (js2-export-binding-node-local-name first))))
524 (should (equal "baz" (js2-name-node-name (js2-export-binding-node-local-name second))))))))
525 (should (js2-scope-get-symbol js2-current-scope "bar"))
526 (should (js2-scope-get-symbol js2-current-scope "baz")))
527
528 (js2-deftest parse-import-default-and-namespace "import stuff, * as lib from 'src/lib'"
529 (js2-push-scope (make-js2-scope :pos 0))
530 (js2-init-scanner)
531 (should (js2-match-token js2-IMPORT))
532 (let ((import-node (js2-parse-import)))
533 (should (not (equal nil import-node)))
534 (should (equal "src/lib" (js2-import-node-module-id import-node)))
535 (let ((import (js2-import-node-import import-node)))
536 (should (not (equal nil import)))
537 (should (equal nil (js2-import-clause-node-named-imports import)))
538 (let ((default (js2-import-clause-node-default-binding import))
539 (ns-import (js2-import-clause-node-namespace-import import)))
540 (should (not (equal nil default)))
541 (should (equal "stuff" (js2-name-node-name (js2-export-binding-node-local-name default))))
542 (should (not (equal nil ns-import)))
543 (should (js2-namespace-import-node-p ns-import))
544 (should (equal "lib" (js2-name-node-name (js2-namespace-import-node-name ns-import)))))))
545 (should (js2-scope-get-symbol js2-current-scope "stuff"))
546 (should (js2-scope-get-symbol js2-current-scope "lib")))
547
548 (js2-deftest parse-import-default-and-named-imports
549 "import robert as bob, {cookies, pi as PIE} from 'src/lib'"
550 (js2-push-scope (make-js2-scope :pos 0))
551 (js2-init-scanner)
552 (should (js2-match-token js2-IMPORT))
553 (let ((import-node (js2-parse-import)))
554 (should (not (equal nil import-node)))
555 (should (equal "src/lib" (js2-import-node-module-id import-node)))
556 (let ((import (js2-import-node-import import-node)))
557 (should (not (equal nil import)))
558 (should (not (equal nil (js2-import-clause-node-named-imports import))))
559 (let ((default (js2-import-clause-node-default-binding import))
560 (named-imports (js2-import-clause-node-named-imports import)))
561 (should (not (equal nil default)))
562 (should (equal "bob" (js2-name-node-name (js2-export-binding-node-local-name default))))
563 (should (not (equal nil named-imports)))
564 (should (= 2 (length named-imports))))))
565 (should (js2-scope-get-symbol js2-current-scope "bob"))
566 (should (js2-scope-get-symbol js2-current-scope "cookies"))
567 (should (js2-scope-get-symbol js2-current-scope "PIE")))
568
569 (js2-deftest parse-this-module-in-from-clause "import {url} from this module;"
570 (js2-push-scope (make-js2-scope :pos 0))
571 (js2-init-scanner)
572 (should (js2-match-token js2-IMPORT))
573 (let ((import-node (js2-parse-import)))
574 (should import-node)
575 (let ((from-clause (js2-import-node-from import-node)))
576 (should from-clause)
577 (should (equal "this" (js2-from-clause-node-module-id from-clause)))
578 (should (js2-from-clause-node-metadata-p from-clause)))))
579
580 (js2-deftest-parse import-only-for-side-effects "import 'src/lib';")
581 (js2-deftest-parse import-default-only "import theDefault from 'src/lib';")
582 (js2-deftest-parse import-named-only "import {one, two} from 'src/lib';")
583 (js2-deftest-parse import-default-and-named "import theDefault, {one, two} from 'src/lib';")
584 (js2-deftest-parse import-renaming-default "import * as lib from 'src/mylib';")
585 (js2-deftest-parse import-renaming-named "import {one as uno, two as dos} from 'src/lib';")
586 (js2-deftest-parse import-default-and-namespace "import robert as bob, * as lib from 'src/lib';")
587 (js2-deftest-parse import-from-this-module "import {url} from this module;")
588
589 ;; Module Exports
590
591 (js2-deftest export-rexport "export * from 'other/lib'"
592 (js2-init-scanner)
593 (should (js2-match-token js2-EXPORT))
594 (let ((export-node (js2-parse-export)))
595 (should export-node)
596 (should (js2-export-node-from-clause export-node))))
597
598 (js2-deftest export-export-named-list "export {foo, bar as bang};"
599 (js2-init-scanner)
600 (should (js2-match-token js2-EXPORT))
601 (let ((export-node (js2-parse-export)))
602 (should export-node)
603 (let ((exports (js2-export-node-exports-list export-node)))
604 (should exports)
605 (should (= 2 (length exports))))))
606
607 (js2-deftest re-export-named-list "export {foo, bar as bang} from 'other/lib'"
608 (js2-init-scanner)
609 (should (js2-match-token js2-EXPORT))
610 (let ((export-node (js2-parse-export)))
611 (should export-node)
612 (should (js2-export-node-from-clause export-node))
613 (let ((exports (js2-export-node-exports-list export-node)))
614 (should exports)
615 (should (= 2 (length exports))))))
616
617 (js2-deftest export-variable-statement "export var foo = 'bar', baz = 'bang';"
618 (js2-init-scanner)
619 (js2-push-scope (make-js2-scope :pos 0))
620 (should (js2-match-token js2-EXPORT))
621 (let ((export-node (js2-parse-export)))
622 (should export-node)
623 (should (js2-export-node-declaration export-node))))
624
625 (js2-deftest export-const-declaration "export const PI = Math.PI;"
626 (js2-init-scanner)
627 (js2-push-scope (make-js2-scope :pos 0))
628 (should (js2-match-token js2-EXPORT))
629 (let ((export-node (js2-parse-export)))
630 (should export-node)
631 (should (js2-export-node-declaration export-node))))
632
633 (js2-deftest export-let-declaration "export let foo = [1];"
634 (js2-init-scanner)
635 (js2-push-scope (make-js2-scope :pos 0))
636 (should (js2-match-token js2-EXPORT))
637 (let ((export-node (js2-parse-export)))
638 (should export-node)
639 (should (js2-var-decl-node-p (js2-export-node-declaration export-node)))))
640
641 (js2-deftest export-class-declaration "export class Foo {};"
642 (js2-init-scanner)
643 (js2-push-scope (make-js2-scope :pos 0))
644 (should (js2-match-token js2-EXPORT))
645 (let ((export-node (js2-parse-export)))
646 (should export-node)
647 (should (js2-class-node-p (js2-export-node-declaration export-node)))))
648
649 (js2-deftest export-function-declaration "export default function doStuff() {};"
650 (js2-init-scanner)
651 (js2-push-scope (make-js2-scope :pos 0))
652 (should (js2-match-token js2-EXPORT))
653 (let ((export-node (js2-parse-export)))
654 (should export-node)
655 (should (js2-export-node-default export-node))))
656
657 (js2-deftest export-generator-declaration "export default function* one() {};"
658 (js2-init-scanner)
659 (js2-push-scope (make-js2-scope :pos 0))
660 (should (js2-match-token js2-EXPORT))
661 (let ((export-node (js2-parse-export)))
662 (should export-node)
663 (should (js2-export-node-default export-node))))
664
665 (js2-deftest export-assignment-expression "export default a = b;"
666 (js2-init-scanner)
667 (js2-push-scope (make-js2-scope :pos 0))
668 (should (js2-match-token js2-EXPORT))
669 (let ((export-node (js2-parse-export)))
670 (should export-node)
671 (should (js2-export-node-default export-node))))
672
673 (js2-deftest export-function-no-semicolon "export default function foo() {}"
674 (js2-mode)
675 (should (equal nil js2-parsed-warnings)))
676 (js2-deftest export-default-function-no-semicolon "export function foo() {}"
677 (js2-mode)
678 (should (equal nil js2-parsed-warnings)))
679 (js2-deftest export-anything-else-does-require-a-semicolon "export var obj = {}"
680 (js2-mode)
681 (should (not (equal nil js2-parsed-warnings))))
682
683 (js2-deftest-parse parse-export-rexport "export * from 'other/lib';")
684 (js2-deftest-parse parse-export-export-named-list "export {foo, bar as bang};")
685 (js2-deftest-parse parse-re-export-named-list "export {foo, bar as bang} from 'other/lib';")
686 (js2-deftest-parse parse-export-const-declaration "export const PI = Math.PI;")
687 (js2-deftest-parse parse-export-let-declaration "export let foo = [1];")
688 (js2-deftest-parse parse-export-function-declaration "export default function doStuff() {};")
689 (js2-deftest-parse parse-export-generator-declaration "export default function* one() {};")
690 (js2-deftest-parse parse-export-assignment-expression "export default a = b;")
691
692 ;;; Strings
693
694 (js2-deftest-parse string-literal
695 "var x = 'y';")
696
697 (js2-deftest-parse object-get-string-literal
698 "var x = {y: 5};\nvar z = x[\"y\"];")
699
700 (js2-deftest-parse template-no-substritutions
701 "var x = `abc
702 def`, y = `\\u0000`;")
703
704 (js2-deftest-parse template-with-substitutions
705 "var y = `${a + b} ${d + e + f}`;")
706
707 (js2-deftest-parse tagged-template
708 "foo.args`${++x, \"o\"}k`;")
709
710 ;;; Classes
711
712 (js2-deftest-parse parse-harmony-class-statement
713 "class Foo {\n get bar() { return 42;\n}\n set bar(x) { y = x;\n}\n}")
714
715 (js2-deftest-parse parse-harmony-class-statement-without-name-is-not-ok
716 "class {\n get bar() { return 42;\n}\n}"
717 :syntax-error "{")
718
719 (js2-deftest-parse parse-harmony-class-expression
720 "var Foo1 = class Foo {\n bar() { return 42;\n}\n};")
721
722 (js2-deftest-parse parse-harmony-anonymous-class-expression
723 "var Foo = class {\n set bar(x) { bar = x;\n}\n};")
724
725 (js2-deftest-parse parse-harmony-class-with-extends
726 "class Foo extends Bar {\n}")
727
728 (js2-deftest-parse parse-harmony-anonymous-class-with-extends
729 "foo.Foo = class extends Bar {\n set bar(x) { bar = x;\n}\n};")
730
731 (js2-deftest-parse parse-harmony-class-with-complex-extends
732 "class Foo extends foo[BAR][2].Baz {\n}")
733
734 (js2-deftest-parse parse-harmony-class-missing-extended-class-is-not-ok
735 "class Foo extends {\n}"
736 :syntax-error "extends")
737
738 (js2-deftest-parse parse-harmony-class-static-method
739 "class Foo extends Bar {\n static bar() { return 42;\n}\n}")
740
741 (js2-deftest-parse parse-unterminated-class-is-not-okay
742 "class Foo {\n get bar() { return 42;\n}"
743 :syntax-error "}")
744
745 (js2-deftest-parse parse-super-keyword
746 "class Foo {\n constructor() { super(42);\n}\n foo() { super.foo();\n}\n}")
747
748 (js2-deftest-parse parse-class-keywordlike-method
749 "class C {\n delete() {}\n if() {}\n}")
750
751 ;;; Scopes
752
753 (js2-deftest ast-symbol-table-includes-fn-node "function foo() {}"
754 (js2-mode)
755 (let ((entry (js2-scope-get-symbol js2-mode-ast 'foo)))
756 (should (= (js2-symbol-decl-type entry) js2-FUNCTION))
757 (should (equal (js2-symbol-name entry) "foo"))
758 (should (js2-function-node-p (js2-symbol-ast-node entry)))))
759
760 (js2-deftest fn-symbol-table-includes-nested-fn "function foo() {
761 function bar() {}
762 var x;
763 }"
764 (js2-mode)
765 (let* ((scope (js2-node-at-point (point-min)))
766 (fn-entry (js2-scope-get-symbol scope 'bar))
767 (var-entry (js2-scope-get-symbol scope 'x)))
768 (should (string= (js2-name-node-name (js2-function-node-name scope)) "foo"))
769 (should (= (js2-symbol-decl-type fn-entry) js2-FUNCTION))
770 (should (js2-function-node-p (js2-symbol-ast-node fn-entry)))
771 (should (= (js2-symbol-decl-type var-entry) js2-VAR))
772 (should (js2-name-node-p (js2-symbol-ast-node var-entry)))))
773
774 (defun js2-test-scope-of-nth-variable-satisifies-predicate (variable nth predicate)
775 (goto-char (point-min))
776 (dotimes (n (1+ nth)) (search-forward variable))
777 (forward-char -1)
778 (let ((scope (js2-node-get-enclosing-scope (js2-node-at-point))))
779 (should (funcall predicate (js2-get-defining-scope scope variable)))))
780
781 (js2-deftest for-node-is-declaration-scope "for (let i = 0; i; ++i) {};"
782 (js2-mode)
783 (js2-test-scope-of-nth-variable-satisifies-predicate "i" 0 #'js2-for-node-p))
784
785 (js2-deftest const-scope-sloppy-script "{const a;} a;"
786 (js2-mode)
787 (js2-test-scope-of-nth-variable-satisifies-predicate "a" 0 #'js2-script-node-p)
788 (js2-test-scope-of-nth-variable-satisifies-predicate "a" 1 #'js2-script-node-p))
789
790 (js2-deftest const-scope-strict-script "'use strict'; { const a; } a;"
791 (js2-mode)
792 (js2-test-scope-of-nth-variable-satisifies-predicate "a" 0 #'js2-block-node-p)
793 (js2-test-scope-of-nth-variable-satisifies-predicate "a" 1 #'null))
794
795 (js2-deftest const-scope-sloppy-function "function f() { { const a; } a; }"
796 (js2-mode)
797 (js2-test-scope-of-nth-variable-satisifies-predicate "a" 0 #'js2-function-node-p)
798 (js2-test-scope-of-nth-variable-satisifies-predicate "a" 1 #'js2-function-node-p))
799
800 (js2-deftest const-scope-strict-function "function f() { 'use strict'; { const a; } a; }"
801 (js2-mode)
802 (js2-test-scope-of-nth-variable-satisifies-predicate "a" 0 #'js2-block-node-p)
803 (js2-test-scope-of-nth-variable-satisifies-predicate "a" 1 #'null))
804
805 (js2-deftest array-comp-is-result-scope "[x * 2 for (x in y)];"
806 (js2-mode)
807 (js2-test-scope-of-nth-variable-satisifies-predicate "x" 0 #'js2-comp-loop-node-p))
808
809 (js2-deftest array-comp-has-parent-scope
810 "var a,b=[for (i of [[1,2]]) for (j of i) j * a];"
811 (js2-mode)
812 (search-forward "for")
813 (forward-char -3)
814 (let ((node (js2-node-at-point)))
815 (should (js2-scope-parent-scope node))
816 (should (js2-get-defining-scope node "j"))))
817
818 ;;; Tokenizer
819
820 (js2-deftest get-token "(1+1)"
821 (js2-init-scanner)
822 (should (eq js2-LP (js2-next-token)))
823 (should (eq js2-NUMBER (js2-next-token)))
824 (should (eq js2-ADD (js2-next-token)))
825 (should (eq js2-NUMBER (js2-next-token)))
826 (should (eq js2-RP (js2-next-token))))
827
828 (js2-deftest unget-token "()"
829 (js2-init-scanner)
830 (should (eq js2-LP (js2-next-token)))
831 (js2-unget-token)
832 (should (eq js2-LP (js2-next-token)))
833 (should (eq js2-RP (js2-next-token))))
834
835 (js2-deftest get-token-or-eol "x\n++;"
836 (js2-init-scanner)
837 (should (eq js2-NAME (js2-next-token)))
838 (should (eq js2-EOL (js2-peek-token-or-eol)))
839 (should (eq js2-INC (js2-next-token)))
840 (should (eq js2-SEMI (js2-peek-token-or-eol))))
841
842 (js2-deftest unget-token-over-eol-and-comment "x\n//abc\ny"
843 (js2-init-scanner)
844 (should (eq js2-NAME (js2-next-token)))
845 (should (eq js2-NAME (js2-next-token)))
846 (should (equal "y" (js2-current-token-string)))
847 (js2-unget-token)
848 (should (eq js2-NAME (js2-current-token-type)))
849 (should (equal "x" (js2-current-token-string))))
850
851 (js2-deftest ts-seek "(1+2)"
852 (js2-init-scanner)
853 (should (eq js2-LP (js2-next-token)))
854 (should (eq js2-NUMBER (js2-next-token)))
855 (js2-unget-token)
856 (let ((state (make-js2-ts-state)))
857 (should (eq js2-NUMBER (js2-next-token)))
858 (should (eq js2-ADD (js2-next-token)))
859 (js2-ts-seek state)
860 (should (eq 1 js2-ti-lookahead))
861 (should (eq js2-NUMBER (js2-next-token)))
862 (should (eq 1 (js2-token-number
863 (js2-current-token))))))
864
865 (js2-deftest get-token-template-literal "`abc ${i} z ${j} def`"
866 (js2-init-scanner)
867 (should (eq js2-TEMPLATE_HEAD (js2-next-token)))
868 (should (equal "abc " (js2-current-token-string)))
869 (should (eq js2-NAME (js2-next-token)))
870 (should (eq js2-RC (js2-next-token)))
871 (should (eq js2-TEMPLATE_HEAD (js2-next-token 'TEMPLATE_TAIL)))
872 (should (equal " z " (js2-current-token-string)))
873 (should (eq js2-NAME (js2-next-token)))
874 (should (eq js2-RC (js2-next-token)))
875 (should (eq js2-NO_SUBS_TEMPLATE (js2-next-token 'TEMPLATE_TAIL)))
876 (should (equal " def" (js2-current-token-string))))
877
878 ;;; Error handling
879
880 (js2-deftest for-node-with-error-len "for "
881 (js2-mode)
882 (let ((node (js2-node-at-point (point-min))))
883 (should (= (js2-node-len (js2-node-parent node)) 4))))
884
885 (js2-deftest function-without-parens-error "function b {}"
886 ;; Should finish the parse.
887 (js2-mode))
888
889 ;;; Comments
890
891 (js2-deftest comment-node-length "//"
892 (js2-mode)
893 (let ((node (js2-node-at-point (point-min))))
894 (should (= (js2-node-len node) 2))))
895
896 (js2-deftest comment-node-length-newline "//\n"
897 (js2-mode)
898 (let ((node (js2-node-at-point (point-min))))
899 (should (= (js2-node-len node) 3))))
900
901 ;;; Variables classification
902
903 (defun js2--variables-summary (vars)
904 (let (r)
905 (setq vars (let (aslist)
906 (maphash (lambda (k v) (push (cons k v) aslist)) vars)
907 aslist))
908 (dolist (v (sort vars (lambda (a b) (< (js2-node-abs-pos (js2-symbol-ast-node (car a)))
909 (js2-node-abs-pos (js2-symbol-ast-node (car b)))))))
910 (let* ((symbol (car v))
911 (inition (cadr v))
912 (uses (cddr v))
913 (symn (js2-symbol-ast-node symbol))
914 (namen (js2--get-name-node symn)))
915 (push (format "%s@%s:%s"
916 (js2-symbol-name symbol)
917 (js2-node-abs-pos namen)
918 (if (eq inition ?P)
919 "P"
920 (if uses
921 (if inition "I" "N")
922 "U"))) r)
923 (dolist (u (sort (cddr v) (lambda (a b) (< (js2-node-abs-pos a)
924 (js2-node-abs-pos b)))))
925 (push (js2-node-abs-pos u) r))))
926 (reverse r)))
927
928 (defmacro js2-deftest-classify-variables (name buffer-contents summary)
929 (declare (indent defun))
930 `(ert-deftest ,(intern (format "js2-classify-variables-%s" name)) ()
931 (with-temp-buffer
932 (save-excursion
933 (insert ,buffer-contents))
934 (unwind-protect
935 (progn
936 (js2-mode)
937 (should (equal ,summary (js2--variables-summary
938 (js2--classify-variables)))))
939 (fundamental-mode)))))
940
941 (js2-deftest-classify-variables incomplete-var-statement
942 "var"
943 '())
944
945 (js2-deftest-classify-variables unused-variable
946 "function foo () { var x; return 42; }"
947 '("foo@10:U" "x@23:U"))
948
949 (js2-deftest-classify-variables unused-variable-declared-twice
950 "function foo (a) { var x; function bar () { var x; x=42; }; return a;}"
951 '("foo@10:U" "a@15:P" 68 "x@24:U" "bar@36:U" "x@49:U"))
952
953 (js2-deftest-classify-variables assigned-variable
954 "function foo () { var x; x=42; return x; }"
955 '("foo@10:U" "x@23:I" 39))
956
957 (js2-deftest-classify-variables assignment-in-nested-function
958 "function foo () { var x; function bar () { x=42; }; }"
959 '("foo@10:U" "x@23:U" "bar@35:U"))
960
961 (js2-deftest-classify-variables unused-nested-function
962 "function foo() { var i, j=1; function bar() { var x, y=42, z=i; return y; } return i; }"
963 '("foo@10:U" "i@22:N" 62 84 "j@25:U" "bar@39:U" "x@51:U" "y@54:I" 72 "z@60:U"))
964
965 (js2-deftest-classify-variables prop-get-initialized
966 "function foo () { var x, y={}; y.a=x; }"
967 '("foo@10:U" "x@23:N" 36 "y@26:I" 32))
968
969 (js2-deftest-classify-variables prop-get-uninitialized
970 "function foo () { var x; if(x.foo) alert('boom'); }"
971 '("foo@10:U" "x@23:N" 29))
972
973 (js2-deftest-classify-variables prop-get-function-assignment
974 "(function(w) { w.f = function() { var a=42, m; return a; }; })(window);"
975 '("w@11:P" 11 16 "a@39:I" 55 "m@45:U"))
976
977 (js2-deftest-classify-variables let-declaration
978 "function foo () { let x,y=1; return x; }"
979 '("foo@10:U" "x@23:N" 37 "y@25:U"))
980
981 (js2-deftest-classify-variables external-function-call
982 "function foo (m) { console.log(m, arguments); }"
983 '("foo@10:U" "m@15:P" 32))
984
985 (js2-deftest-classify-variables global-function-call
986 "function bar () { return 42; } function foo (a) { return bar(); }"
987 '("bar@10:I" 58 "foo@41:U" "a@46:P"))
988
989 (js2-deftest-classify-variables let-declaration-for-scope
990 "function foo () { for(let x=1,y; x<y; y++) {} }"
991 '("foo@10:U" "x@27:I" 34 "y@31:N" 36 39))
992
993 (js2-deftest-classify-variables arguments-implicit-var
994 "function foo () { var p; for(p in arguments) { return p; } }"
995 '("foo@10:U" "p@23:I" 55))
996
997 (js2-deftest-classify-variables catch-error-variable
998 "function foo () { try { throw 'Foo'; } catch (e) { console.log(e); }"
999 '("foo@10:U" "e@47:I" 64))
1000
1001 (js2-deftest-classify-variables prop-get-assignment
1002 "function foo () { var x={y:{z:{}}}; x.y.z=42; }"
1003 '("foo@10:U" "x@23:I" 37))
1004
1005 (js2-deftest-classify-variables unused-function-argument
1006 "function foo (a) { return 42; }"
1007 '("foo@10:U" "a@15:P"))
1008
1009 (js2-deftest-classify-variables used-function-argument
1010 "function foo (a) { a=42; return a; }"
1011 '("foo@10:U" "a@15:P" 33))
1012
1013 (js2-deftest-classify-variables prop-get
1014 "function foo (a) { a=navigator.x||navigator.y; return a; }"
1015 '("foo@10:U" "a@15:P" 55))
1016
1017 (js2-deftest-classify-variables for-in-loop
1018 "function foo () { var d={}; for(var k in d) {var v=d[k]; } }"
1019 '("foo@10:U" "d@23:I" 42 52 "k@37:I" 54 "v@50:U"))
1020
1021 (js2-deftest-classify-variables array-comprehension-legacy
1022 "function foo() { var j,a=[for (i of [1,2,3]) i*j]; }"
1023 '("foo@10:U" "j@22:N" 48 "a@24:U" "i@32:I" 46))
1024
1025 (js2-deftest-classify-variables array-comprehension
1026 "function foo() { var j,a=[[i,j] for (i of [1,2,3])]; }"
1027 '("foo@10:U" "j@22:N" 30 "a@24:U" "i@38:I" 28))
1028
1029 (js2-deftest-classify-variables return-named-function
1030 "function foo() { var a=42; return function bar() { return a; } }"
1031 '("foo@10:U" "a@22:I" 59 "bar@44:I" 44))
1032
1033 (js2-deftest-classify-variables named-wrapper-function
1034 "function foo() { var a; (function bar() { a=42; })(); return a; }"
1035 '("foo@10:U" "a@22:I" 62 "bar@35:I" 35))