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 we build the assertion error in the compiler because of previous restrictions in the Exception module in the runtime. We should move this logic into the Exception module and have assertion error become AssertionError(String, Number) where String is the filename and Number is the line number. Notably once we implement exception catching the current approach would not work very well.
The text was updated successfully, but these errors were encountered:
Currently we build the assertion error in the compiler because of previous restrictions in the
Exception
module in the runtime. We should move this logic into theException
module and have assertion error becomeAssertionError(String, Number)
whereString
is the filename andNumber
is the line number. Notably once we implement exception catching the current approach would not work very well.The text was updated successfully, but these errors were encountered: