| 360 if(!escape_next) { |
360 if(!escape_next) { |
| 361 if(source[end] == '\\') { |
361 if(source[end] == '\\') { |
| 362 escape_next = TRUE; |
362 escape_next = TRUE; |
| 363 } |
363 } |
| 364 if(!in_quote) { |
364 if(!in_quote) { |
| 365 if(source[end] == '(') { |
365 nesting = get_paren_level(nesting, source[end]); |
| 366 nesting++; |
|
| 367 } |
|
| 368 if(source[end] == ')') { |
|
| 369 nesting--; |
|
| 370 } |
|
| 371 } |
366 } |
| 372 if(source[end] == '"') { |
367 if(source[end] == '"') { |
| 373 in_quote = !in_quote; |
368 in_quote = !in_quote; |
| 374 } |
369 } |
| 375 } else { |
370 } else { |