-
Notifications
You must be signed in to change notification settings - Fork 323
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
Avoid Null receiver values are not supported by libraries #8044
Conversation
This was in the log:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We probably don't have an example that caused it, do we?
I have seen the problem while working on today's bookclub: Students_And_Courses.zip - not which revision was causing the problem however. |
CCing @Akirathan
I have another program that yields from Standard.Base import all
from Standard.Base.Data.Text import Extensions
from Standard.Table import all
from Standard.Database import all
from Standard.AWS import all
import Standard.Visualization
polyglot java import java.util.Random
main =
operator1 = Random.new this yields error
when executed from CLI. But in IDE it creates a
Fixed as #8061 |
Prevents [this NullPointerException](#8044 (comment)) by making sure `ConstantNode` rejects `null` during construction. # Important Notes ```ruby from Standard.Base import all polyglot java import java.util.Random main = operator1 = Random.new ```
Pull Request Description
Cannot query
TypeOfNode
fornull
.Checklist
Please ensure that the following checklist has been satisfied before submitting the PR:
Java,