Revert "Deal w/ multi-line String Literals."

This reverts commit b6f7943d48.
This commit is contained in:
bill
2021-02-17 23:14:46 +08:00
parent b6f7943d48
commit 7409d7e19f
2 changed files with 271 additions and 299 deletions
-1
View File
@@ -184,7 +184,6 @@ Comments = #[^\r\n]*
}
<STR>{
{StringLiteral} {currString+=yytext();}
\\$ { /*'\' at the end of line, do nothing.*/ }
"\"" {yybegin(AFTER); return symbol(ChocoPyTokens.STRING, currString);}
}
<<EOF>> { return symbol(ChocoPyTokens.EOF); }