string_feature.test
1.02 KB
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
48
49
50
51
52
''
'foo'
'foo\
bar'
""
"foo"
"foo\
bar"
"foo #{interpolation} bar"
''''''
'''foo'''
'''foo
bar'''
""""""
"""foo"""
"""foo
bar"""
"""foo #{interpolation} bar"""
----------------------------------------------------
[
["string", "''"],
["string", "'foo'"],
["string", "'foo\\\r\nbar'"],
["string", ["\"\""]],
["string", ["\"foo\""]],
["string", ["\"foo\\\r\nbar\""]],
["string", [
"\"foo ",
["interpolation", "#{interpolation}"],
" bar\""
]],
["multiline-string", "''''''"],
["multiline-string", "'''foo'''"],
["multiline-string", "'''foo\r\nbar'''"],
["multiline-string", ["\"\"\"\"\"\""]],
["multiline-string", ["\"\"\"foo\"\"\""]],
["multiline-string", ["\"\"\"foo\r\nbar\"\"\""]],
["multiline-string", [
"\"\"\"foo ",
["interpolation", "#{interpolation}"],
" bar\"\"\""
]]
]
----------------------------------------------------
Checks for single-line and multi-line strings and block strings.
Also checks for string interpolation inside double-quoted strings.