()
| 530 | }, |
| 531 | |
| 532 | decimalExponentSign () { |
| 533 | if (util.isDigit(c)) { |
| 534 | buffer += read() |
| 535 | lexState = 'decimalExponentInteger' |
| 536 | return |
| 537 | } |
| 538 | |
| 539 | throw invalidChar(read()) |
| 540 | }, |
| 541 | |
| 542 | decimalExponentInteger () { |
| 543 | if (util.isDigit(c)) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…