The problem is, if newlines are allowed inside string literals, then parsing the .lexed file will be difficult without some special way of representing string literals.
Possible answers:
Prevent string literals from having newlines.
Store the quotation marks in the value of the string literal token (possibly violates the assignment spec).
Check the assignment spec and the Eta language spec for this.
The problem is, if newlines are allowed inside string literals, then parsing the
.lexed
file will be difficult without some special way of representing string literals.Possible answers: