| 323 | |
| 324 | |
| 325 | static int gethexa (LexState *ls) { |
| 326 | save_and_next(ls); |
| 327 | esccheck (ls, lisxdigit(ls->current), "hexadecimal digit expected"); |
| 328 | return luaO_hexavalue(ls->current); |
| 329 | } |
| 330 | |
| 331 | |
| 332 | static int readhexaesc (LexState *ls) { |
no test coverage detected