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/smarty/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 false}
2 {if off}
3 {if on}
4 {if no}
5 {if true}
6 {if yes}
7
8 ----------------------------------------------------
9
10 [
11 ["smarty", [
12 ["delimiter", "{"],
13 ["function", "if"],
14 ["keyword", "false"],
15 ["delimiter", "}"]
16 ]],
17 ["smarty", [
18 ["delimiter", "{"],
19 ["function", "if"],
20 ["keyword", "off"],
21 ["delimiter", "}"]
22 ]],
23 ["smarty", [
24 ["delimiter", "{"],
25 ["function", "if"],
26 ["keyword", "on"],
27 ["delimiter", "}"]
28 ]],
29 ["smarty", [
30 ["delimiter", "{"],
31 ["function", "if"],
32 ["keyword", "no"],
33 ["delimiter", "}"]
34 ]],
35 ["smarty", [
36 ["delimiter", "{"],
37 ["function", "if"],
38 ["keyword", "true"],
39 ["delimiter", "}"]
40 ]],
41 ["smarty", [
42 ["delimiter", "{"],
43 ["function", "if"],
44 ["keyword", "yes"],
45 ["delimiter", "}"]
46 ]]
47 ]
48
49 ----------------------------------------------------
50
51 Checks for keywords.
OLDNEW
« no previous file with comments | « lib/src/prism/tests/languages/smarty/function_feature.test ('k') | lib/src/prism/tests/languages/smarty/number_feature.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698