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

Side by Side Diff: lib/src/prism/tests/languages/crystal/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 alias as asm begin break case
2 class;
3 def do else elsif
4 end ensure enum extend for fun
5 if ifdef include instance_sizeof
6 .is_a?
7 lib macro module next of out pointerof
8 private protected rescue
9 .responds_to?
10 return require self sizeof struct super
11 then type typeof union unless until when
12 while with yield __DIR__ __FILE__ __LINE__
13
14 ----------------------------------------------------
15
16 [
17 ["keyword", "abstract"], ["keyword", "alias"], ["keyword", "as"], ["keyw ord", "asm"], ["keyword", "begin"], ["keyword", "break"], ["keyword", "case"],
18 ["keyword", "class"], ["punctuation", ";"],
19 ["keyword", "def"], ["keyword", "do"], ["keyword", "else"], ["keyword", "elsif"],
20 ["keyword", "end"], ["keyword", "ensure"], ["keyword", "enum"], ["keywor d", "extend"], ["keyword", "for"], ["keyword", "fun"],
21 ["keyword", "if"], ["keyword", "ifdef"], ["keyword", "include"], ["keywo rd", "instance_sizeof"],
22 ["punctuation", "."], ["keyword", "is_a?"],
23 ["keyword", "lib"], ["keyword", "macro"], ["keyword", "module"], ["keywo rd", "next"], ["keyword", "of"], ["keyword", "out"], ["keyword", "pointerof"],
24 ["keyword", "private"], ["keyword", "protected"], ["keyword", "rescue"],
25 ["punctuation", "."], ["keyword", "responds_to?"],
26 ["keyword", "return"], ["keyword", "require"], ["keyword", "self"], ["ke yword", "sizeof"], ["keyword", "struct"], ["keyword", "super"],
27 ["keyword", "then"], ["keyword", "type"], ["keyword", "typeof"], ["keywo rd", "union"], ["keyword", "unless"], ["keyword", "until"], ["keyword", "when"],
28 ["keyword", "while"], ["keyword", "with"], ["keyword", "yield"], ["keywo rd", "__DIR__"], ["keyword", "__FILE__"], ["keyword", "__LINE__"]
29 ]
30
31 ----------------------------------------------------
32
33 Checks for all keywords.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698