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

Side by Side Diff: lib/src/prism/tests/languages/clike/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 if; else; while; do; for;
2 return; in; instanceof; function; new;
3 try; throw; catch; finally; null;
4 break; continue;
5
6 ----------------------------------------------------
7
8 [
9 ["keyword", "if"], ["punctuation", ";"],
10 ["keyword", "else"], ["punctuation", ";"],
11 ["keyword", "while"], ["punctuation", ";"],
12 ["keyword", "do"], ["punctuation", ";"],
13 ["keyword", "for"], ["punctuation", ";"],
14 ["keyword", "return"], ["punctuation", ";"],
15 ["keyword", "in"], ["punctuation", ";"],
16 ["keyword", "instanceof"], ["punctuation", ";"],
17 ["keyword", "function"], ["punctuation", ";"],
18 ["keyword", "new"], ["punctuation", ";"],
19 ["keyword", "try"], ["punctuation", ";"],
20 ["keyword", "throw"], ["punctuation", ";"],
21 ["keyword", "catch"], ["punctuation", ";"],
22 ["keyword", "finally"], ["punctuation", ";"],
23 ["keyword", "null"], ["punctuation", ";"],
24 ["keyword", "break"], ["punctuation", ";"],
25 ["keyword", "continue"], ["punctuation", ";"]
26 ]
27
28 ----------------------------------------------------
29
30 Checks for all keywords.
OLDNEW
« no previous file with comments | « lib/src/prism/tests/languages/clike/function_feature.test ('k') | lib/src/prism/tests/languages/clike/number_feature.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698