Searched refs:testnext (Results 1 – 2 of 2) sorted by relevance
/freebsd/sys/contrib/openzfs/module/lua/ |
H A D | lparser.c | 98 static int testnext (LexState *ls, int c) { in testnext() function 124 if (!testnext(ls, what)) { in check_match() 751 } while (testnext(ls, ',') || testnext(ls, ';')); in constructor() 783 } while (!f->is_vararg && testnext(ls, ',')); in parlist() 817 while (testnext(ls, ',')) { in explist() 1142 if (testnext(ls, ',')) { /* assignment -> ',' suffixedexp assignment */ in assignment() 1186 if (testnext(ls, TK_GOTO)) in gotostat() 1324 if (testnext(ls, ',')) in fornum() 1347 while (testnext(ls, ',')) { in forlist() 1420 if (testnext(ls, TK_ELSE)) in ifstat() [all …]
|
/freebsd/contrib/lua/src/ |
H A D | lparser.c | 95 static int testnext (LexState *ls, int c) { in testnext() function 131 if (l_unlikely(!testnext(ls, what))) { in check_match() 944 } while (testnext(ls, ',') || testnext(ls, ';')); in constructor() 980 } while (!isvararg && testnext(ls, ',')); in parlist() 1016 while (testnext(ls, ',')) { in explist() 1379 if (testnext(ls, ',')) { /* restassign -> ',' suffixedexp restassign */ in restassign() 1581 if (testnext(ls, ',')) in fornum() 1606 while (testnext(ls, ',')) { in forlist() 1653 while (testnext(ls, ';')) {} /* skip semicolons */ in test_then_block() 1682 if (testnext(ls, TK_ELSE)) in ifstat() [all …]
|