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

Side by Side Diff: lib/src/prism/tests/languages/coffeescript/block-regex_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 ///foo[bar]///
2 ///foo
3 [bar]///
4 ///foo
5 b#{ar}baz///
6 ///foo #bar
7 baz///
8
9 ----------------------------------------------------
10
11 [
12 ["block-regex", [
13 "///foo[bar]///"
14 ]],
15 ["block-regex", [
16 "///foo\r\n[bar]///"
17 ]],
18 ["block-regex", [
19 "///foo\r\nb",
20 ["interpolation", "#{ar}"],
21 "baz///"
22 ]],
23 ["block-regex", [
24 "///foo ",
25 ["comment", "#bar"],
26 "\r\nbaz///"
27 ]]
28 ]
29
30 ----------------------------------------------------
31
32 Checks for block regex.
33 Also checks for comments and interpolations inside block regex.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698