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

Side by Side Diff: lib/src/prism/tests/languages/autoit/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 ; foo
3 #comments-start
4 foobar()
5 #comments-end
6 #cs
7 foobar()
8 #ce
9 ;#comments-start
10 foobar()
11 ;#comments-end
12 ;#cs
13 foobar()
14 ;#ce
15
16 ----------------------------------------------------
17
18 [
19 ["comment", ";"],
20 ["comment", "; foo"],
21 ["comment", "#comments-start\r\n\tfoobar()\r\n#comments-end"],
22 ["comment", "#cs\r\n\tfoobar()\r\n#ce"],
23 ["comment", ";#comments-start"],
24 ["function", "foobar"], ["punctuation", "("], ["punctuation", ")"],
25 ["comment", ";#comments-end"],
26 ["comment", ";#cs"],
27 ["function", "foobar"], ["punctuation", "("], ["punctuation", ")"],
28 ["comment", ";#ce"]
29 ]
30
31 ----------------------------------------------------
32
33 Checks for comments.
OLDNEW
« no previous file with comments | « lib/src/prism/tests/languages/autoit/boolean_feature.test ('k') | lib/src/prism/tests/languages/autoit/directive_feature.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698