| 344 | |
| 345 | |
| 346 | static int gethexa(LexState *ls) { |
| 347 | save_and_next(ls); |
| 348 | esccheck(ls, lisxdigit(ls->current), "hexadecimal digit expected"); |
| 349 | return luaO_hexavalue(ls->current); |
| 350 | } |
| 351 | |
| 352 | |
| 353 | static int readhexaesc(LexState *ls) { |
no test coverage detected