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

Side by Side Diff: lib/src/prism/tests/languages/php/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 and or xor array
2 as break case
3 cfunction
4 class;
5 const continue
6 declare default
7 die do else
8 elseif enddeclare
9 endfor endforeach
10 endif endswitch
11 endwhile
12 extends;
13 for foreach function
14 include include_once
15 global if
16 new;
17 return
18 static switch
19 use;
20 require require_once
21 var while abstract
22 interface;
23 public
24 implements;
25 private
26 protected parent
27 throw null echo
28 print trait;
29 namespace;
30 final yield goto
31 instanceof;
32 finally
33 try catch
34
35 ----------------------------------------------------
36
37 [
38 ["keyword", "and"], ["keyword", "or"], ["keyword", "xor"], ["keyword", " array"],
39 ["keyword", "as"], ["keyword", "break"], ["keyword", "case"],
40 ["keyword", "cfunction"],
41 ["keyword", "class"], ["punctuation", ";"],
42 ["keyword", "const"], ["keyword", "continue"],
43 ["keyword", "declare"], ["keyword", "default"],
44 ["keyword", "die"], ["keyword", "do"], ["keyword", "else"],
45 ["keyword", "elseif"], ["keyword", "enddeclare"],
46 ["keyword", "endfor"], ["keyword", "endforeach"],
47 ["keyword", "endif"], ["keyword", "endswitch"],
48 ["keyword", "endwhile"],
49 ["keyword", "extends"], ["punctuation", ";"],
50 ["keyword", "for"], ["keyword", "foreach"], ["keyword", "function"],
51 ["keyword", "include"], ["keyword", "include_once"],
52 ["keyword", "global"], ["keyword", "if"],
53 ["keyword", "new"], ["punctuation", ";"],
54 ["keyword", "return"],
55 ["keyword", "static"], ["keyword", "switch"],
56 ["keyword", "use"], ["punctuation", ";"],
57 ["keyword", "require"], ["keyword", "require_once"],
58 ["keyword", "var"], ["keyword", "while"], ["keyword", "abstract"],
59 ["keyword", "interface"], ["punctuation", ";"],
60 ["keyword", "public"],
61 ["keyword", "implements"], ["punctuation", ";"],
62 ["keyword", "private"],
63 ["keyword", "protected"], ["keyword", "parent"],
64 ["keyword", "throw"], ["keyword", "null"], ["keyword", "echo"],
65 ["keyword", "print"],
66 ["keyword", "trait"], ["punctuation", ";"],
67 ["keyword", "namespace"], ["punctuation", ";"],
68 ["keyword", "final"], ["keyword", "yield"], ["keyword", "goto"],
69 ["keyword", "instanceof"], ["punctuation", ";"],
70 ["keyword", "finally"],
71 ["keyword", "try"], ["keyword", "catch"]
72 ]
73
74 ----------------------------------------------------
75
76 Checks for comments.
OLDNEW
« no previous file with comments | « lib/src/prism/tests/languages/php/delimiter_feature.test ('k') | lib/src/prism/tests/languages/php/package_feature.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698