()
| 467 | }, |
| 468 | |
| 469 | decimalPointLeading () { |
| 470 | if (util.isDigit(c)) { |
| 471 | buffer += read() |
| 472 | lexState = 'decimalFraction' |
| 473 | return |
| 474 | } |
| 475 | |
| 476 | throw invalidChar(read()) |
| 477 | }, |
| 478 | |
| 479 | decimalPoint () { |
| 480 | switch (c) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…