[Lexic] Should detect all lexical errors in one go #1

Open
opened 2023-12-27 00:39:09 +00:00 by fernando · 0 comments

Currently the lexer completely stops after encountering a single illegal character:

val name'' = "John"
val 'age' = 32

In the previous example, only the first quote is reported as error. It should:

  • Join and report all quotes next to name as a single error
  • Report errors in 'age' as well
Currently the lexer completely stops after encountering a single illegal character: ``` val name'' = "John" val 'age' = 32 ``` In the previous example, only the first quote is reported as error. It should: - Join and report all quotes next to `name` as a single error - Report errors in `'age'` as well
Sign in to join this conversation.
No Label
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: fernando/thp#1
There is no content yet.