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
Another issue to document as I work through #2269 and #2492, but different enough I want to track it separately:
class Foo VAL = :a class << self VAL = :b def val1 VAL end end def self.val2 VAL end end p Foo.val1 # => :b p Foo.val2 # => :a
With Natalie, this produces:
:a :a
The text was updated successfully, but these errors were encountered:
seven1m
No branches or pull requests
Another issue to document as I work through #2269 and #2492, but different enough I want to track it separately:
With Natalie, this produces:
The text was updated successfully, but these errors were encountered: