We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
class A def self.initialize A.foo end def self.foo ... end end
This is safe if foo does not access an class instance variable of A.
foo
Compiler generates a binary but it results in SEGV.
@init_A
@Meta_A_foo
A
Refactor gen_const_inits and gen_class_literal into gen_class_constants or something.
gen_const_inits
gen_class_literal
gen_class_constants
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Given
This is safe if
foo
does not access an class instance variable of A.Got
Compiler generates a binary but it results in SEGV.
Reason
@init_A
is called@Meta_A_foo
A
to pass it as the first argumentA
is nullTo fix this
Refactor
gen_const_inits
andgen_class_literal
intogen_class_constants
or something.The text was updated successfully, but these errors were encountered: