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

Side by Side Diff: lib/src/prism/tests/languages/dart/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 async* sync* yield*
2 abstract assert async await
3 break case catch
4 class;
5 const
6 continue default deferred
7 do dynamic else enum
8 export external
9 extends;
10 factory final finally for
11 get if
12 implements;
13 import
14 in library
15 new;
16 null
17 operator part rethrow return
18 set static super switch this
19 throw try typedef var
20 void while with yield
21
22 ----------------------------------------------------
23
24 [
25 ["keyword", "async*"], ["keyword", "sync*"], ["keyword", "yield*"],
26 ["keyword", "abstract"], ["keyword", "assert"], ["keyword", "async"], [" keyword", "await"],
27 ["keyword", "break"], ["keyword", "case"], ["keyword", "catch"],
28 ["keyword", "class"], ["punctuation", ";"],
29 ["keyword", "const"],
30 ["keyword", "continue"], ["keyword", "default"], ["keyword", "deferred"] ,
31 ["keyword", "do"], ["keyword", "dynamic"], ["keyword", "else"], ["keywor d", "enum"],
32 ["keyword", "export"], ["keyword", "external"],
33 ["keyword", "extends"], ["punctuation", ";"],
34 ["keyword", "factory"], ["keyword", "final"], ["keyword", "finally"], [" keyword", "for"],
35 ["keyword", "get"], ["keyword", "if"],
36 ["keyword", "implements"], ["punctuation", ";"],
37 ["keyword", "import"],
38 ["keyword", "in"], ["keyword", "library"],
39 ["keyword", "new"], ["punctuation", ";"],
40 ["keyword", "null"],
41 ["keyword", "operator"], ["keyword", "part"], ["keyword", "rethrow"], [" keyword", "return"],
42 ["keyword", "set"], ["keyword", "static"], ["keyword", "super"], ["keywo rd", "switch"], ["keyword", "this"],
43 ["keyword", "throw"], ["keyword", "try"], ["keyword", "typedef"], ["keyw ord", "var"],
44 ["keyword", "void"], ["keyword", "while"], ["keyword", "with"], ["keywor d", "yield"]
45 ]
46
47 ----------------------------------------------------
48
49 Checks for all keywords.
OLDNEW
« no previous file with comments | « lib/src/prism/tests/languages/d/token-string_feature.test ('k') | lib/src/prism/tests/languages/dart/metadata_feature.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698