Lines Matching defs:orelse
1864 find_ann(st->v.For.orelse);
1868 find_ann(st->v.AsyncFor.orelse);
1872 find_ann(st->v.While.orelse);
1876 find_ann(st->v.If.orelse);
1894 find_ann(st->v.Try.orelse);
1906 find_ann(st->v.TryStar.orelse);
2936 if (!compiler_jump_if(c, e->v.IfExp.orelse, next, cond))
3006 VISIT(c, expr, e->v.IfExp.orelse);
3077 if (asdl_seq_LEN(s->v.If.orelse)) {
3090 if (asdl_seq_LEN(s->v.If.orelse)) {
3093 VISIT_SEQ(c, stmt, s->v.If.orelse);
3128 VISIT_SEQ(c, stmt, s->v.For.orelse);
3183 VISIT_SEQ(c, stmt, s->v.For.orelse);
3219 if (s->v.While.orelse) {
3220 VISIT_SEQ(c, stmt, s->v.While.orelse);
3496 if (s->v.Try.orelse && asdl_seq_LEN(s->v.Try.orelse)) {
3497 VISIT_SEQ(c, stmt, s->v.Try.orelse);
3671 basicblock *orelse = compiler_new_block(c);
3672 if (orelse == NULL) {
3696 ADDOP_JUMP_NOLINE(c, JUMP, orelse);
3849 compiler_use_next_block(c, orelse);
3850 VISIT_SEQ(c, stmt, s->v.TryStar.orelse);