Input:
" triggers 4.3.5 Consume a string token. There, after having consumed foo:
Next code point is
- U+005C REVERSE SOLIDUS (\)
- If the next input code point is EOF (yes), this is a parse error (1st time); do nothing.
Next code point is
- EOF
- This is a parse error (2nd time). Return the .
So parse error is invoked twice. The occurence in U+005C REVERSE SOLIDUS (\) is not necessary.
Johannes
Input:
"triggers 4.3.5 Consume a string token. There, after having consumedfoo:Next code point is
Next code point is
So parse error is invoked twice. The occurence in U+005C REVERSE SOLIDUS (\) is not necessary.
Johannes