You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Brain Freeze currently generates RBIs for all methods, not just public ones. Fixing this would require Parlour being able to parse and consequently generate method visibility.
Describe the solution you'd like Method RBI objects should have a visibility field, which is populated based on:
Class context changes, like private in a class body
Class calls with symbol arguments, like private :x, :y, :z in a class body
Class calls with a definition as an argument, like private def ... end
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Brain Freeze currently generates RBIs for all methods, not just public ones. Fixing this would require Parlour being able to parse and consequently generate method visibility.
Describe the solution you'd like
Method
RBI objects should have avisibility
field, which is populated based on:private
in a class bodyprivate :x, :y, :z
in a class bodyprivate def ... end
The text was updated successfully, but these errors were encountered: