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/nim/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 "Fo\"obar"
3
4 """"""
5 """Fo"o
6 bar"""
7
8 R"Raw ""string"
9
10 r"Raw
11 ""string"
12
13 fo\x8Fo"Foobar"
14
15 bar"""Foo
16 bar"""
17
18 '\''
19 '\xFC'
20
21 ----------------------------------------------------
22
23 [
24 ["string", "\"\""],
25 ["string", "\"Fo\\\"obar\""],
26 ["string", "\"\"\"\"\"\""],
27 ["string", "\"\"\"Fo\"o\r\nbar\"\"\""],
28 ["string", "R\"Raw \"\"string\""],
29 ["string", "r\"Raw\r\n\"\"string\""],
30 ["string", "fo\\x8Fo\"Foobar\""],
31 ["string", "bar\"\"\"Foo\r\nbar\"\"\""],
32 ["string", "'\\''"],
33 ["string", "'\\xFC'"]
34 ]
35
36 ----------------------------------------------------
37
38 Checks for strings and character literals.
OLDNEW
« no previous file with comments | « lib/src/prism/tests/languages/nim/operator_feature.test ('k') | lib/src/prism/tests/languages/nsis/comment_feature.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698