| 214 | |
| 215 | |
| 216 | static int skip_sep (LexState *ls) { |
| 217 | int count = 0; |
| 218 | int s = ls->current; |
| 219 | lua_assert(s == '[' || s == ']'); |
| 220 | save_and_next(ls); |
| 221 | while (ls->current == '=') { |
| 222 | save_and_next(ls); |
| 223 | count++; |
| 224 | } |
| 225 | return (ls->current == s) ? count : (-count) - 1; |
| 226 | } |
| 227 | |
| 228 | |
| 229 | static void read_long_string (LexState *ls, SemInfo *seminfo, int sep) { |
no outgoing calls
no test coverage detected