string_feature.test
840 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
("")
("foo^"bar")
("foo
bar")
('')
('foo^'bar')
('foo
bar')
----------------------------------------------------
[
["expression", [
["punctuation", "("],
["string", "\"\""],
["punctuation", ")"]
]],
["expression", [
["punctuation", "("],
["string", "\"foo^\"bar\""],
["punctuation", ")"]
]],
["expression", [
["punctuation", "("],
["string", "\"foo\r\nbar\""],
["punctuation", ")"]
]],
["expression", [
["punctuation", "("],
["string", "''"],
["punctuation", ")"]
]],
["expression", [
["punctuation", "("],
["string", "'foo^'bar'"],
["punctuation", ")"]
]],
["expression", [
["punctuation", "("],
["string", "'foo\r\nbar'"],
["punctuation", ")"]
]]
]
----------------------------------------------------
Checks for strings inside expressions.