mirror of
https://github.com/ralsina/tartrazine.git
synced 2025-06-19 22:53:05 -03:00
Reorganize tests into a real spec suite
This commit is contained in:
46
spec/tests/java/test_multiline_string_only.txt
Normal file
46
spec/tests/java/test_multiline_string_only.txt
Normal file
@ -0,0 +1,46 @@
|
||||
---input---
|
||||
String source = """
|
||||
public class Quine {
|
||||
public static void main(String[] args) {
|
||||
String textBlockQuotes = new String(new char[]{'"', '"', '"'});
|
||||
char newLine = 10;
|
||||
String teststringinside = "hello my name is...\n\r";
|
||||
String source = %s;
|
||||
System.out.println(source.formatted(textBlockQuotes + newLine + source + textBlockQuotes));
|
||||
}
|
||||
}
|
||||
""";
|
||||
|
||||
|
||||
---tokens---
|
||||
'\t ' Text.Whitespace
|
||||
'String' Name
|
||||
' ' Text.Whitespace
|
||||
'source' Name
|
||||
' ' Text.Whitespace
|
||||
'=' Operator
|
||||
' ' Text.Whitespace
|
||||
'"""\n' Literal.String
|
||||
|
||||
"public class Quine {\n\tpublic static void main(String[] args) {\n\t\tString textBlockQuotes = new String(new char[]{'" Literal.String
|
||||
'"' Literal.String
|
||||
"', '" Literal.String
|
||||
'"' Literal.String
|
||||
"', '" Literal.String
|
||||
'"' Literal.String
|
||||
"'});\n\t\tchar newLine = 10;\n\t\tString teststringinside = " Literal.String
|
||||
'"' Literal.String
|
||||
'hello my name is...' Literal.String
|
||||
'\\' Literal.String
|
||||
'n' Literal.String
|
||||
'\\' Literal.String
|
||||
'r' Literal.String
|
||||
'"' Literal.String
|
||||
';\n\t\tString source = %s;\n\t\tSystem.out.println(source.formatted(textBlockQuotes + newLine + source + textBlockQuotes));\n\t}\n}\n' Literal.String
|
||||
|
||||
'"""' Literal.String
|
||||
';' Punctuation
|
||||
'\n' Text.Whitespace
|
||||
|
||||
' ' Text.Whitespace
|
||||
'\n' Text.Whitespace
|
Reference in New Issue
Block a user