| Walk function for when inside a quoted string.
Self-recursive and mutually recursive with other walk functions.
- 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_DOUBLE_QUOTE, go to next brace, recur.
|