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

Side by Side Diff: lib/src/prism/tests/languages/coffeescript/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 break by catch
2 class;
3 continue debugger delete
4 do each else extend
5 extends;
6 false finally for if in
7 instanceof;
8 is isnt let
9 loop namespace
10 new;
11 no not null of off on
12 or own return super
13 switch then this throw
14 true try typeof undefined
15 unless until when while
16 window with yes yield
17
18 ----------------------------------------------------
19
20 [
21 ["keyword", "and"], ["keyword", "break"], ["keyword", "by"], ["keyword", "catch"],
22 ["keyword", "class"], ["punctuation", ";"],
23 ["keyword", "continue"], ["keyword", "debugger"], ["keyword", "delete"],
24 ["keyword", "do"], ["keyword", "each"], ["keyword", "else"], ["keyword", "extend"],
25 ["keyword", "extends"], ["punctuation", ";"],
26 ["keyword", "false"], ["keyword", "finally"], ["keyword", "for"], ["keyw ord", "if"], ["keyword", "in"],
27 ["keyword", "instanceof"], ["punctuation", ";"],
28 ["keyword", "is"], ["keyword", "isnt"], ["keyword", "let"],
29 ["keyword", "loop"], ["keyword", "namespace"],
30 ["keyword", "new"], ["punctuation", ";"],
31 ["keyword", "no"], ["keyword", "not"], ["keyword", "null"], ["keyword", "of"], ["keyword", "off"], ["keyword", "on"],
32 ["keyword", "or"], ["keyword", "own"], ["keyword", "return"], ["keyword" , "super"],
33 ["keyword", "switch"], ["keyword", "then"], ["keyword", "this"], ["keywo rd", "throw"],
34 ["keyword", "true"], ["keyword", "try"], ["keyword", "typeof"], ["keywor d", "undefined"],
35 ["keyword", "unless"], ["keyword", "until"], ["keyword", "when"], ["keyw ord", "while"],
36 ["keyword", "window"], ["keyword", "with"], ["keyword", "yes"], ["keywor d", "yield"]
37 ]
38
39 ----------------------------------------------------
40
41 Checks for all keywords.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698