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
rbs prototype rb always generates untyped for class instance variables. And rbs subtract does not remove the type of class instance variables.
rbs prototype rb
untyped
rbs subtract
% rbs --version rbs 3.8.1 % cat class_instance_variable.rb class C @civ = [] end % cat sig/class_instance_variable.rbs class C self.@civ: Array end % rbs prototype rb class_instance_variable.rb -o prototype Processing `class_instance_variable.rb`... Generating RBS for `class_instance_variable.rb`... - Writing RBS to `prototype/class_instance_variable.rbs`... % cat prototype/class_instance_variable.rbs class C self.@civ: untyped end % rbs subtract --write prototype sig % cat prototype/class_instance_variable.rbs class C self.@civ: untyped end
How can I empty prototype after rbs subtract with class instance variables?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
rbs prototype rb
always generatesuntyped
for class instance variables.And
rbs subtract
does not remove the type of class instance variables.How can I empty prototype after
rbs subtract
with class instance variables?The text was updated successfully, but these errors were encountered: