Resolver - "super" implementation

This commit is contained in:
Emmanuel BENOîT 2023-01-16 07:33:08 +01:00
parent 45ffa5cdab
commit cf909eef23

View file

@ -503,7 +503,7 @@ impl VarResolver for ExprNode {
.resolve(rs)
.and_then(|_| set_expr.value.resolve(rs)),
ExprNode::Super(_) => todo!(),
ExprNode::Super(expr) => rs.resolve_use(&expr.keyword),
}
}
}