-
Notifications
You must be signed in to change notification settings - Fork 80
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
parser handling of "is not null" seems buggy compared to "!= null" #273
Comments
Duplicate of #6 I think..? |
@galegosimpatico maybe... I think it's different. In that case, it says c "might be" null. in this case, the parse error is different. It doesn't say that c "might be" null. It says that c is a string or that c is null, depending on the expression. However, I just discovered that it works if I explicitly cast to Loc:
|
The left arrow style cast (
Source at https://github.com/frogatto/frogatto/wiki/Data-Types#manual-type-inference. You have read this already, at least once, but for the casual reader who might have not. |
Observe the following:
I also had this problem with comma-separated list comprehension conditionals, i.e.
The text was updated successfully, but these errors were encountered: