Returns true if current position is in the middle of a triple quote delimiter (3 x quot), and advances 'pos' by two if so.
(char quot)
| 263 | * delimiter (3 x quot), and advances 'pos' by two if so. |
| 264 | */ |
| 265 | private boolean skipTripleQuote(char quot) { |
| 266 | if (peek(0) == quot && peek(1) == quot) { |
| 267 | pos += 2; |
| 268 | return true; |
| 269 | } else { |
| 270 | return false; |
| 271 | } |
| 272 | } |
| 273 | |
| 274 | /** |
| 275 | * Scans a string literal delimited by 'quot', containing escape sequences. |
no test coverage detected