We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20835b5 commit 404cea2Copy full SHA for 404cea2
parser2/lexer/lexer_test.go
@@ -33,13 +33,13 @@ var lexTests = []lexTest{
33
},
34
35
{
36
- `"double" 'single' "abc \n\t\"\\" '"' "'" "\xC3\xBF\u263A\U000003A8" '❤️'`,
+ `"double" 'single' "abc \n\t\"\\" '"\'' "'\"" "\xC3\xBF\u263A\U000003A8" '❤️'`,
37
[]Token{
38
{Kind: String, Value: "double"},
39
{Kind: String, Value: "single"},
40
{Kind: String, Value: "abc \n\t\"\\"},
41
- {Kind: String, Value: "\""},
42
- {Kind: String, Value: "'"},
+ {Kind: String, Value: "\"'"},
+ {Kind: String, Value: "'\""},
43
{Kind: String, Value: "ÿ☺Ψ"},
44
{Kind: String, Value: "❤️"},
45
{Kind: EOF},
0 commit comments