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

Side by Side Diff: lib/src/prism/tests/languages/scss/operator_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 4 - 2;
2 4 + 2;
3 4 * 2;
4 4 / 2;
5 4 % 2;
6 4 == 2;
7 4 != 2;
8 4 < 2;
9 4 <= 2;
10 4 > 2;
11 4 >= 2;
12 true and false
13 false or true
14 not true
15
16 ----------------------------------------------------
17
18 [
19 "4 ", ["operator", "-"], " 2", ["punctuation", ";"],
20 "\r\n4 ", ["operator", "+"], " 2", ["punctuation", ";"],
21 "\r\n4 ", ["operator", "*"], " 2", ["punctuation", ";"],
22 "\r\n4 ", ["operator", "/"], " 2", ["punctuation", ";"],
23 "\r\n4 ", ["operator", "%"], " 2", ["punctuation", ";"],
24 "\r\n4 ", ["operator", "=="], " 2", ["punctuation", ";"],
25 "\r\n4 ", ["operator", "!="], " 2", ["punctuation", ";"],
26 "\r\n4 ", ["operator", "<"], " 2", ["punctuation", ";"],
27 "\r\n4 ", ["operator", "<="], " 2", ["punctuation", ";"],
28 "\r\n4 ", ["operator", ">"], " 2", ["punctuation", ";"],
29 "\r\n4 ", ["operator", ">="], " 2", ["punctuation", ";"],
30
31 ["boolean", "true"], ["operator", "and"], ["boolean", "false"],
32 ["boolean", "false"], ["operator", "or"], ["boolean", "true"],
33 ["operator", "not"], ["boolean", "true"]
34 ]
35
36 ----------------------------------------------------
37
38 Checks for operators.
OLDNEW
« no previous file with comments | « lib/src/prism/tests/languages/scss/null_feature.test ('k') | lib/src/prism/tests/languages/scss/placeholder_feature.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698