Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(75)

Side by Side Diff: lib/src/prism/tests/languages/javascript/keyword_feature.test

Issue 1418513006: update elements and fix some bugs (Closed) Base URL: git@github.com:dart-lang/polymer_elements.git@master
Patch Set: code review updates Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 as; async; await; break; case;
2 catch; class; const; continue; debugger;
3 default; delete; do; else; enum;
4 export; extends; false; finally; for;
5 from; function; get; if; implements;
6 import; in; instanceof; interface; let;
7 new; null; of; package; private;
8 protected; public; return; set; static;
9 super; switch; this; throw; true;
10 try; typeof; var; void; while;
11 with; yield;
12
13 ----------------------------------------------------
14
15 [
16 ["keyword", "as"], ["punctuation", ";"],
17 ["keyword", "async"], ["punctuation", ";"],
18 ["keyword", "await"], ["punctuation", ";"],
19 ["keyword", "break"], ["punctuation", ";"],
20 ["keyword", "case"], ["punctuation", ";"],
21 ["keyword", "catch"], ["punctuation", ";"],
22 ["keyword", "class"], ["punctuation", ";"],
23 ["keyword", "const"], ["punctuation", ";"],
24 ["keyword", "continue"], ["punctuation", ";"],
25 ["keyword", "debugger"], ["punctuation", ";"],
26 ["keyword", "default"], ["punctuation", ";"],
27 ["keyword", "delete"], ["punctuation", ";"],
28 ["keyword", "do"], ["punctuation", ";"],
29 ["keyword", "else"], ["punctuation", ";"],
30 ["keyword", "enum"], ["punctuation", ";"],
31 ["keyword", "export"], ["punctuation", ";"],
32 ["keyword", "extends"], ["punctuation", ";"],
33 ["keyword", "false"], ["punctuation", ";"],
34 ["keyword", "finally"], ["punctuation", ";"],
35 ["keyword", "for"], ["punctuation", ";"],
36 ["keyword", "from"], ["punctuation", ";"],
37 ["keyword", "function"], ["punctuation", ";"],
38 ["keyword", "get"], ["punctuation", ";"],
39 ["keyword", "if"], ["punctuation", ";"],
40 ["keyword", "implements"], ["punctuation", ";"],
41 ["keyword", "import"], ["punctuation", ";"],
42 ["keyword", "in"], ["punctuation", ";"],
43 ["keyword", "instanceof"], ["punctuation", ";"],
44 ["keyword", "interface"], ["punctuation", ";"],
45 ["keyword", "let"], ["punctuation", ";"],
46 ["keyword", "new"], ["punctuation", ";"],
47 ["keyword", "null"], ["punctuation", ";"],
48 ["keyword", "of"], ["punctuation", ";"],
49 ["keyword", "package"], ["punctuation", ";"],
50 ["keyword", "private"], ["punctuation", ";"],
51 ["keyword", "protected"], ["punctuation", ";"],
52 ["keyword", "public"], ["punctuation", ";"],
53 ["keyword", "return"], ["punctuation", ";"],
54 ["keyword", "set"], ["punctuation", ";"],
55 ["keyword", "static"], ["punctuation", ";"],
56 ["keyword", "super"], ["punctuation", ";"],
57 ["keyword", "switch"], ["punctuation", ";"],
58 ["keyword", "this"], ["punctuation", ";"],
59 ["keyword", "throw"], ["punctuation", ";"],
60 ["keyword", "true"], ["punctuation", ";"],
61 ["keyword", "try"], ["punctuation", ";"],
62 ["keyword", "typeof"], ["punctuation", ";"],
63 ["keyword", "var"], ["punctuation", ";"],
64 ["keyword", "void"], ["punctuation", ";"],
65 ["keyword", "while"], ["punctuation", ";"],
66 ["keyword", "with"], ["punctuation", ";"],
67 ["keyword", "yield"], ["punctuation", ";"]
68 ]
69
70 ----------------------------------------------------
71
72 Checks for all keywords.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698