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