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

Side by Side Diff: lib/src/prism/tests/languages/cpp/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 alignas alignof asm auto bool
2 break case catch char char16_t char32_t
3 class;
4 compl const constexpr
5 const_cast continue decltype default
6 delete do double dynamic_cast
7 else enum explicit export extern
8 float for friend goto if
9 inline int long mutable namespace
10 new noexcept nullptr operator
11 private protected public register
12 reinterpret_cast return short
13 signed sizeof static static_assert
14 static_cast struct switch template
15 this thread_local throw try
16 typedef typeid typename union
17 unsigned using virtual void
18 volatile wchar_t while
19
20 ----------------------------------------------------
21
22 [
23 ["keyword", "alignas"], ["keyword", "alignof"], ["keyword", "asm"], ["ke yword", "auto"], ["keyword", "bool"],
24 ["keyword", "break"], ["keyword", "case"], ["keyword", "catch"], ["keywo rd", "char"], ["keyword", "char16_t"], ["keyword", "char32_t"],
25 ["keyword", "class"], ["punctuation", ";"],
26 ["keyword", "compl"], ["keyword", "const"], ["keyword", "constexpr"],
27 ["keyword", "const_cast"], ["keyword", "continue"], ["keyword", "decltyp e"], ["keyword", "default"],
28 ["keyword", "delete"], ["keyword", "do"], ["keyword", "double"], ["keywo rd", "dynamic_cast"],
29 ["keyword", "else"], ["keyword", "enum"], ["keyword", "explicit"], ["key word", "export"], ["keyword", "extern"],
30 ["keyword", "float"], ["keyword", "for"], ["keyword", "friend"], ["keywo rd", "goto"], ["keyword", "if"],
31 ["keyword", "inline"], ["keyword", "int"], ["keyword", "long"], ["keywor d", "mutable"], ["keyword", "namespace"],
32 ["keyword", "new"], ["keyword", "noexcept"], ["keyword", "nullptr"], ["k eyword", "operator"],
33 ["keyword", "private"], ["keyword", "protected"], ["keyword", "public"], ["keyword", "register"],
34 ["keyword", "reinterpret_cast"], ["keyword", "return"], ["keyword", "sho rt"],
35 ["keyword", "signed"], ["keyword", "sizeof"], ["keyword", "static"], ["k eyword", "static_assert"],
36 ["keyword", "static_cast"], ["keyword", "struct"], ["keyword", "switch"] , ["keyword", "template"],
37 ["keyword", "this"], ["keyword", "thread_local"], ["keyword", "throw"], ["keyword", "try"],
38 ["keyword", "typedef"], ["keyword", "typeid"], ["keyword", "typename"], ["keyword", "union"],
39 ["keyword", "unsigned"], ["keyword", "using"], ["keyword", "virtual"], [ "keyword", "void"],
40 ["keyword", "volatile"], ["keyword", "wchar_t"], ["keyword", "while"]
41 ]
42
43 ----------------------------------------------------
44
45 Checks for all keywords
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698