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