You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the low-level table code is "error free", as in it does not error out, ever. This makes it easier to write some parts of the VM, but unfortunately the reference VM errors out when you set a nil key.
I either need to check for nil keys in the higher level code with more consistency, or I need to allow the low level code to error out and make sure all areas where the low level table API is used are error safe.
The text was updated successfully, but these errors were encountered:
Currently the low-level table code is "error free", as in it does not error out, ever. This makes it easier to write some parts of the VM, but unfortunately the reference VM errors out when you set a nil key.
I either need to check for nil keys in the higher level code with more consistency, or I need to allow the low level code to error out and make sure all areas where the low level table API is used are error safe.
The text was updated successfully, but these errors were encountered: