Tests: Corrected lexer test "\"three\""
This commit is contained in:
@@ -260,7 +260,7 @@ int main (int argc, char** argv)
|
|||||||
|
|
||||||
// String
|
// String
|
||||||
{ "'one two'", { { "'one two'", Lexer::Type::string }, NO, NO, NO, NO }, },
|
{ "'one two'", { { "'one two'", Lexer::Type::string }, NO, NO, NO, NO }, },
|
||||||
{ "\\\"three\\\"", { { "\\\"three\\\"", Lexer::Type::string }, NO, NO, NO, NO }, },
|
{ "\"three\"", { { "\"three\"", Lexer::Type::string }, NO, NO, NO, NO }, },
|
||||||
{ "'\\''", { { "'\\''", Lexer::Type::string }, NO, NO, NO, NO }, },
|
{ "'\\''", { { "'\\''", Lexer::Type::string }, NO, NO, NO, NO }, },
|
||||||
{ "\"\\\"\"", { { "\"\\\"\"", Lexer::Type::string }, NO, NO, NO, NO }, },
|
{ "\"\\\"\"", { { "\"\\\"\"", Lexer::Type::string }, NO, NO, NO, NO }, },
|
||||||
{ "\"\tfoo\t\"", { { "\"\tfoo\t\"", Lexer::Type::string }, NO, NO, NO, NO }, },
|
{ "\"\tfoo\t\"", { { "\"\tfoo\t\"", Lexer::Type::string }, NO, NO, NO, NO }, },
|
||||||
|
|||||||
Reference in New Issue
Block a user