| 313 | |
| 314 | |
| 315 | static int gethexa (LexState *ls) { |
| 316 | save_and_next(ls); |
| 317 | esccheck (ls, lisxdigit(ls->current), "hexadecimal digit expected"); |
| 318 | return luaO_hexavalue(ls->current); |
| 319 | } |
| 320 | |
| 321 | |
| 322 | static int readhexaesc (LexState *ls) { |
no test coverage detected