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

Side by Side Diff: lib/src/prism/tests/languages/java/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 abstract continue for
2 new ;
3 switch assert default
4 goto package synchronized
5 boolean do if private
6 this break double
7 implements ;
8 protected throw byte else
9 import public throws case
10 enum
11 instanceof ;
12 return transient catch
13 extends ;
14 int short try char
15 final
16 interface ;
17 static void
18 class ;
19 finally long
20 strictfp volatile const
21 float native super while
22
23 ----------------------------------------------------
24
25 [
26 ["keyword", "abstract"], ["keyword", "continue"], ["keyword", "for"],
27 ["keyword", "new"], ["punctuation", ";"],
28 ["keyword", "switch"], ["keyword", "assert"], ["keyword", "default"],
29 ["keyword", "goto"], ["keyword", "package"], ["keyword", "synchronized"] ,
30 ["keyword", "boolean"], ["keyword", "do"], ["keyword", "if"], ["keyword" , "private"],
31 ["keyword", "this"], ["keyword", "break"], ["keyword", "double"],
32 ["keyword", "implements"], ["punctuation", ";"],
33 ["keyword", "protected"], ["keyword", "throw"], ["keyword", "byte"], ["k eyword", "else"],
34 ["keyword", "import"], ["keyword", "public"], ["keyword", "throws"], ["k eyword", "case"],
35 ["keyword", "enum"],
36 ["keyword", "instanceof"], ["punctuation", ";"],
37 ["keyword", "return"], ["keyword", "transient"], ["keyword", "catch"],
38 ["keyword", "extends"], ["punctuation", ";"],
39 ["keyword", "int"], ["keyword", "short"], ["keyword", "try"], ["keyword" , "char"],
40 ["keyword", "final"],
41 ["keyword", "interface"], ["punctuation", ";"],
42 ["keyword", "static"], ["keyword", "void"],
43 ["keyword", "class"], ["punctuation", ";"],
44 ["keyword", "finally"], ["keyword", "long"],
45 ["keyword", "strictfp"], ["keyword", "volatile"], ["keyword", "const"],
46 ["keyword", "float"], ["keyword", "native"], ["keyword", "super"], ["key word", "while"]
47 ]
48
49 ----------------------------------------------------
50
51 Checks for all keywords.
OLDNEW
« no previous file with comments | « lib/src/prism/tests/languages/jade/tag_feature.test ('k') | lib/src/prism/tests/languages/java/number_feature.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698