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
{{ message }}
This repository was archived by the owner on Feb 22, 2018. It is now read-only.
the JS codegen would like to assume non-null for some types. This is especially true for numbers, but also may include other primitive types (bool, string). For arbitrary objects, it would also be nice to codegen obj.x ... otherwise we'd have to potentially check for null in some cases for that too. (we can likely avoid if the result has a further invocation)
The text was updated successfully, but these errors were encountered:
the JS codegen would like to assume non-null for some types. This is especially true for numbers, but also may include other primitive types (bool, string). For arbitrary objects, it would also be nice to codegen
obj.x
... otherwise we'd have to potentially check for null in some cases for that too. (we can likely avoid if the result has a further invocation)The text was updated successfully, but these errors were encountered: