Home
last modified time | relevance | path

Searched refs:condexit (Results 1 – 1 of 1) sorted by relevance

/netbsd/external/mit/lua/dist/src/
H A Dlparser.c1486 int condexit; in whilestat() local
1490 condexit = cond(ls); in whilestat()
1497 luaK_patchtohere(fs, condexit); /* false conditions finish the loop */ in whilestat()
1503 int condexit; in repeatstat() local
1512 condexit = cond(ls); /* read condition (inside scope block) */ in repeatstat()
1516 luaK_patchtohere(fs, condexit); /* repetition must close upvalues */ in repeatstat()
1518 condexit = luaK_jump(fs); /* repeat after closing upvalues */ in repeatstat()
1521 luaK_patchlist(fs, condexit, repeat_init); /* close the loop */ in repeatstat()