| Walk function for when inside single quotes.
- If we've reached the end of the list, return.
- If we find //, /* or * /, split them into two separate braces.
The cursor will be on the first of the two new braces.
- If current brace = \n or ', mark current brace FREE, next(), and
go to updateFree.
Else, mark current brace as INSIDE_SINGLE_QUOTE, go to next brace, recur.
|