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

Side by Side Diff: lib/src/prism/tests/languages/processing/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 break
2 catch
3 case
4 class;
5 continue
6 default
7 else
8 extends;
9 final
10 for
11 if
12 implements;
13 import
14 new;
15 null
16 private
17 public
18 return
19 static
20 super
21 switch
22 this
23 try
24 void
25 while
26
27 ----------------------------------------------------
28
29 [
30 ["keyword", "break"],
31 ["keyword", "catch"],
32 ["keyword", "case"],
33 ["keyword", "class"], ["punctuation", ";"],
34 ["keyword", "continue"],
35 ["keyword", "default"],
36 ["keyword", "else"],
37 ["keyword", "extends"], ["punctuation", ";"],
38 ["keyword", "final"],
39 ["keyword", "for"],
40 ["keyword", "if"],
41 ["keyword", "implements"], ["punctuation", ";"],
42 ["keyword", "import"],
43 ["keyword", "new"], ["punctuation", ";"],
44 ["keyword", "null"],
45 ["keyword", "private"],
46 ["keyword", "public"],
47 ["keyword", "return"],
48 ["keyword", "static"],
49 ["keyword", "super"],
50 ["keyword", "switch"],
51 ["keyword", "this"],
52 ["keyword", "try"],
53 ["keyword", "void"],
54 ["keyword", "while"]
55 ]
56
57 ----------------------------------------------------
58
59 Checks for keywords.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698