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

Side by Side Diff: lib/src/prism/tests/languages/python/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 assert async await
2 break class;
3 continue def;
4 del elif else
5 except exec finally
6 for from global if
7 import in is lambda
8 pass print raise return
9 try while with yield
10
11 ----------------------------------------------------
12
13 [
14 ["keyword", "as"], ["keyword", "assert"], ["keyword", "async"], ["keywor d", "await"],
15 ["keyword", "break"], ["keyword", "class"], ["punctuation", ";"],
16 ["keyword", "continue"], ["keyword", "def"], ["punctuation", ";"],
17 ["keyword", "del"], ["keyword", "elif"], ["keyword", "else"],
18 ["keyword", "except"], ["keyword", "exec"], ["keyword", "finally"],
19 ["keyword", "for"], ["keyword", "from"], ["keyword", "global"], ["keywor d", "if"],
20 ["keyword", "import"], ["keyword", "in"], ["keyword", "is"], ["keyword", "lambda"],
21 ["keyword", "pass"], ["keyword", "print"], ["keyword", "raise"], ["keywo rd", "return"],
22 ["keyword", "try"], ["keyword", "while"], ["keyword", "with"], ["keyword ", "yield"]
23 ]
24
25 ----------------------------------------------------
26
27 Checks for all keywords.
OLDNEW
« no previous file with comments | « lib/src/prism/tests/languages/python/function_feature.test ('k') | lib/src/prism/tests/languages/python/number_feature.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698