-
-
Notifications
You must be signed in to change notification settings - Fork 21.6k
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
GDScript compiler inner class bugfixes #68374
GDScript compiler inner class bugfixes #68374
Conversation
Don't forget to squash the commits. |
972a2ac
to
f814e15
Compare
collapsed them into nothing lol oops |
45bd73c
to
bc905aa
Compare
cb3d482
to
ca717de
Compare
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.
At first glance, it seems fine to me. Can't wait to integrate those changes in my PR.
dfacfb2
to
700c8b8
Compare
700c8b8
to
bce6f17
Compare
@adamscott sorry for changing it last minute, i added tests and found a bug |
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.
I'm not competent to do an in-depth review, but generally speaking this look solid. vnen is not available right now but I put this on his backlog to possibly review post-merge when he has time.
Let's get this merged and tested more broadly to see if any regressions creep up.
Thanks! |
Thanks for you all hard work! |
if (r_error != OK) { | ||
return Ref<GDScript>(); | ||
} |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
Replaces some important outdated code about subclasses.
rpc properties correctly apply to subclasses.
subclasses of subclasses now have docs populated.
shallow scripts have their subclass scripts populated and name and id set.
various other fixes.
extends Class.Subclass
#65953