parseStringSimple method
Implementation
int parseStringSimple(int i, FContext ctxt) {
int j = i;
int c = byte(j) & 0xff;
while (c != 34) {
if (c < 32) die(j, 'control char ($c) in string', chars: 1);
if (c == 92) return -1;
j += 1;
c = byte(j) & 0xff;
}
return j + 1;
}