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