This commit is contained in:
blueloveTH 2024-06-08 16:01:29 +08:00
parent 3dafa7573c
commit 783547a481

View File

@ -975,7 +975,8 @@ void Compiler::compile_stmt() {
void Compiler::consume_type_hints() {
EXPR();
ctx()->emit_expr(false);
Expr* e = ctx()->s_expr.popx_back();
delete_expr(e);
}
void Compiler::_add_decorators(const Expr_vector& decorators) {