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

Side by Side Diff: lib/src/prism/tests/languages/haml/multiline-comment_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 /
2
3 / foo
4
5 /foo
6 bar
7
8 /foo
9 bar
10
11 /foo
12 bar
13
14 -#
15
16 -# foo
17
18 -#foo
19 bar
20
21 -#foo
22 bar
23
24 -#foo
25 bar
26
27 ----------------------------------------------------
28
29 [
30 ["multiline-comment", "/"],
31 ["multiline-comment", "/ foo"],
32 ["multiline-comment", "/foo\r\n bar"],
33 ["multiline-comment", "/foo\r\n bar"],
34 ["multiline-comment", "/foo\r\n\t bar"],
35
36 ["multiline-comment", "-#"],
37 ["multiline-comment", "-# foo"],
38 ["multiline-comment", "-#foo\r\n bar"],
39 ["multiline-comment", "-#foo\r\n bar"],
40 ["multiline-comment", "-#foo\r\n\t bar"]
41 ]
42
43 ----------------------------------------------------
44
45 Checks for multi-line comments, not indented, indented with two spaces and
46 indented with one tab.
OLDNEW
« no previous file with comments | « lib/src/prism/tests/languages/haml/multiline-code_feature.test ('k') | lib/src/prism/tests/languages/haml/tag_feature.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698