| 6919 | |
| 6920 | |
| 6921 | static int skip_sep (LexState *ls) { |
| 6922 | int count = 0; |
| 6923 | int s = ls->current; |
| 6924 | lua_assert(s == '[' || s == ']'); |
| 6925 | save_and_next(ls); |
| 6926 | while (ls->current == '=') { |
| 6927 | save_and_next(ls); |
| 6928 | count++; |
| 6929 | } |
| 6930 | return (ls->current == s) ? count : (-count) - 1; |
| 6931 | } |
| 6932 | |
| 6933 | |
| 6934 | static void read_long_string (LexState *ls, SemInfo *seminfo, int sep) { |
no outgoing calls
no test coverage detected