undefined
constants panic on execution
#644
Labels
bug
Something isn't working
execution
Issues or PRs related to code execution
good first issue
Good for newcomers
Milestone
The following code panics when being run:
This is because we have not implemented the execution of undefined here. The solution is simple enough as a good first issue:
You will need to add a match arm, that converts a
Node::Const(Const::Undefined)
to anOk(Value::Undefined)
.This could also be related to #631.
The text was updated successfully, but these errors were encountered: