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

Side by Side Diff: lib/src/prism/tests/languages/swift/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
2 associativity
3 break
4 case
5 catch
6 class;
7 continue
8 convenience
9 default
10 defer
11 deinit
12 didSet
13 do
14 dynamic
15 dynamicType
16 else
17 enum
18 extension
19 fallthrough
20 final
21 for
22 func
23 get
24 guard
25 if
26 import
27 in
28 infix
29 init
30 inout
31 internal
32 is
33 lazy
34 left
35 let
36 mutating
37 new;
38 none
39 nonmutating
40 operator
41 optional
42 override
43 postfix
44 precedence
45 prefix
46 private
47 Protocol
48 public
49 repeat
50 required
51 rethrows
52 return
53 right
54 safe
55 self
56 Self
57 set
58 static
59 struct
60 subscript
61 super
62 switch
63 throw
64 throws
65 try
66 Type
67 typealias
68 unowned
69 unsafe
70 var
71 weak
72 where
73 while
74 willSet
75 __COLUMN__
76 __FILE__
77 __FUNCTION__
78 __LINE__
79
80 ----------------------------------------------------
81
82 [
83 ["keyword", "as"],
84 ["keyword", "associativity"],
85 ["keyword", "break"],
86 ["keyword", "case"],
87 ["keyword", "catch"],
88 ["keyword", "class"], ["punctuation", ";"],
89 ["keyword", "continue"],
90 ["keyword", "convenience"],
91 ["keyword", "default"],
92 ["keyword", "defer"],
93 ["keyword", "deinit"],
94 ["keyword", "didSet"],
95 ["keyword", "do"],
96 ["keyword", "dynamic"],
97 ["keyword", "dynamicType"],
98 ["keyword", "else"],
99 ["keyword", "enum"],
100 ["keyword", "extension"],
101 ["keyword", "fallthrough"],
102 ["keyword", "final"],
103 ["keyword", "for"],
104 ["keyword", "func"],
105 ["keyword", "get"],
106 ["keyword", "guard"],
107 ["keyword", "if"],
108 ["keyword", "import"],
109 ["keyword", "in"],
110 ["keyword", "infix"],
111 ["keyword", "init"],
112 ["keyword", "inout"],
113 ["keyword", "internal"],
114 ["keyword", "is"],
115 ["keyword", "lazy"],
116 ["keyword", "left"],
117 ["keyword", "let"],
118 ["keyword", "mutating"],
119 ["keyword", "new"], ["punctuation", ";"],
120 ["keyword", "none"],
121 ["keyword", "nonmutating"],
122 ["keyword", "operator"],
123 ["keyword", "optional"],
124 ["keyword", "override"],
125 ["keyword", "postfix"],
126 ["keyword", "precedence"],
127 ["keyword", "prefix"],
128 ["keyword", "private"],
129 ["keyword", "Protocol"],
130 ["keyword", "public"],
131 ["keyword", "repeat"],
132 ["keyword", "required"],
133 ["keyword", "rethrows"],
134 ["keyword", "return"],
135 ["keyword", "right"],
136 ["keyword", "safe"],
137 ["keyword", "self"],
138 ["keyword", "Self"],
139 ["keyword", "set"],
140 ["keyword", "static"],
141 ["keyword", "struct"],
142 ["keyword", "subscript"],
143 ["keyword", "super"],
144 ["keyword", "switch"],
145 ["keyword", "throw"],
146 ["keyword", "throws"],
147 ["keyword", "try"],
148 ["keyword", "Type"],
149 ["keyword", "typealias"],
150 ["keyword", "unowned"],
151 ["keyword", "unsafe"],
152 ["keyword", "var"],
153 ["keyword", "weak"],
154 ["keyword", "where"],
155 ["keyword", "while"],
156 ["keyword", "willSet"],
157 ["keyword", "__COLUMN__"],
158 ["keyword", "__FILE__"],
159 ["keyword", "__FUNCTION__"],
160 ["keyword", "__LINE__"]
161 ]
162
163 ----------------------------------------------------
164
165 Checks for all keywords.
OLDNEW
« no previous file with comments | « lib/src/prism/tests/languages/swift/constant_feature.test ('k') | lib/src/prism/tests/languages/swift/number_feature.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698