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

Side by Side Diff: lib/src/prism/tests/languages/groovy/string_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 """foo
4 bar"""
5
6 ''''''
7 '''foo'''
8 '''foo
9 bar'''
10
11 ""
12 "fo\"o"
13 ''
14 'fo\'o'
15
16 /foo/
17 /fo\/o/
18
19 $/fo$/$o/$
20 $/foo
21 bar/$
22
23 ----------------------------------------------------
24
25 [
26 ["string", "\"\"\"\"\"\""],
27 ["string", "\"\"\"foo\"\"\""],
28 ["string", "\"\"\"foo\r\nbar\"\"\""],
29 ["string", "''''''"],
30 ["string", "'''foo'''"],
31 ["string", "'''foo\r\nbar'''"],
32
33 ["string", "\"\""],
34 ["string", "\"fo\\\"o\""],
35 ["string", "''"],
36 ["string", "'fo\\'o'"],
37
38 ["string", "/foo/"],
39 ["string", "/fo\\/o/"],
40
41 ["string", "$/fo$/$o/$"],
42 ["string", "$/foo\r\nbar/$"]
43 ]
44
45 ----------------------------------------------------
46
47 Checks for single quoted, triple single quoted, double quoted,
48 triple double quoted, slashy and dollar slashy strings.
OLDNEW
« no previous file with comments | « lib/src/prism/tests/languages/groovy/spock-block_feature.test ('k') | lib/src/prism/tests/languages/haml/code_feature.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698