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

Side by Side Diff: lib/src/prism/tests/languages/haml/multiline-code_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 ~ 1,
2 1,
3 1
4 ~ 2 |
5 2 |
6 2 |
7
8 - 3,
9 3,
10 3
11 - 4 |
12 4 |
13 4 |
14
15 = 5,
16 5,
17 5
18 = 6 |
19 6 |
20 6 |
21
22 &= 7,
23 7,
24 7
25 &= 8 |
26 8 |
27 8 |
28
29 != 9,
30 9,
31 9
32 != 10 |
33 10 |
34 10 |
35
36 ----------------------------------------------------
37
38 [
39 ["punctuation", "~"], ["multiline-code", [["number", "1"], ["punctuation ", ","], ["number", "1"], ["punctuation", ","], ["number", "1"]]],
40 ["punctuation", "~"], ["multiline-code", [["number", "2"], ["operator", "|"], ["number", "2"], ["operator", "|"], ["number", "2"], ["operator", "|"]]],
41
42 ["punctuation", "-"], ["multiline-code", [["number", "3"], ["punctuation ", ","], ["number", "3"], ["punctuation", ","], ["number", "3"]]],
43 ["punctuation", "-"], ["multiline-code", [["number", "4"], ["operator", "|"] , ["number", "4"], ["operator", "|"], ["number", "4"], ["operator", "|"]]],
44
45 ["punctuation", "="], ["multiline-code", [["number", "5"], ["punctuation", " ,"], ["number", "5"], ["punctuation", ","], ["number", "5"]]],
46 ["punctuation", "="], ["multiline-code", [["number", "6"], ["operator", "|"], ["number", "6"], ["operator", "|"], ["number", "6"], ["operator", "|"]]],
47
48 ["punctuation", "&="], ["multiline-code", [["number", "7"], ["punctuatio n", ","], ["number", "7"], ["punctuation", ","], ["number", "7"]]],
49 ["punctuation", "&="], ["multiline-code", [["number", "8"], ["operator", "|"], ["number", "8"], ["operator", "|"], ["number", "8"], ["operator", "|"]]],
50
51 ["punctuation", "!="], ["multiline-code", [["number", "9"], ["punctuatio n", ","], ["number", "9"], ["punctuation", ","], ["number", "9"]]],
52 ["punctuation", "!="], ["multiline-code", [["number", "10"], ["operator" , "|"], ["number", "10"], ["operator", "|"], ["number", "10"], ["operator", "|"] ]]
53 ]
54
55 ----------------------------------------------------
56
57 Checks for inline code, with all possible prefixes, some not indented, some
58 indented with two spaces, some indented with one tab.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698