Searched refs:TK_EOS (Results 1 – 6 of 6) sorted by relevance
/freebsd/contrib/lua/src/ |
H A D | llex.c | 91 if (token < TK_EOS) /* fixed format (symbols and reserved words)? */ in luaX_token2str() 172 ls->lookahead.token = TK_EOS; /* no look-ahead token */ in luaX_setinput() 291 lexerror(ls, msg, TK_EOS); in read_long_string() 387 lexerror(ls, "unfinished string", TK_EOS); in read_string() 537 return TK_EOS; in llex() 567 if (ls->lookahead.token != TK_EOS) { /* is there a look-ahead token? */ in luaX_next() 569 ls->lookahead.token = TK_EOS; /* and discharge it */ in luaX_next() 577 lua_assert(ls->lookahead.token == TK_EOS); in luaX_lookahead()
|
H A D | llex.h | 41 TK_DBCOLON, TK_EOS, enumerator
|
H A D | lparser.c | 791 case TK_END: case TK_EOS: in block_follow() 1937 check(ls, TK_EOS); in mainfunc()
|
/freebsd/sys/contrib/openzfs/module/lua/ |
H A D | llex.c | 79 if (token < TK_EOS) /* fixed format (symbols and reserved words)? */ in luaX_token2str() 160 ls->lookahead.token = TK_EOS; /* no look-ahead token */ in luaX_setinput() 274 "unfinished long comment", TK_EOS); in read_long_string() 344 lexerror(ls, "unfinished string", TK_EOS); in read_string() 486 return TK_EOS; in llex() 516 if (ls->lookahead.token != TK_EOS) { /* is there a look-ahead token? */ in luaX_next() 518 ls->lookahead.token = TK_EOS; /* and discharge it */ in luaX_next() 526 lua_assert(ls->lookahead.token == TK_EOS); in luaX_lookahead()
|
H A D | llex.h | 29 TK_CONCAT, TK_DOTS, TK_EQ, TK_GE, TK_LE, TK_NE, TK_DBCOLON, TK_EOS, enumerator
|
H A D | lparser.c | 59 lua_assert(ls->fs != NULL || ls->t.token == TK_EOS); in anchor_token() 593 case TK_END: case TK_EOS: in block_follow() 1617 check(ls, TK_EOS); in mainfunc()
|