()
| 549 | }, |
| 550 | |
| 551 | hexadecimal () { |
| 552 | if (util.isHexDigit(c)) { |
| 553 | buffer += read() |
| 554 | lexState = 'hexadecimalInteger' |
| 555 | return |
| 556 | } |
| 557 | |
| 558 | throw invalidChar(read()) |
| 559 | }, |
| 560 | |
| 561 | hexadecimalInteger () { |
| 562 | if (util.isHexDigit(c)) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…