Yuki Kurihara
Yuki Kurihara
Rebased on master.
Thank you for reviewing. I'll fix soon.
I only renamed `rbs_type_validation_t` to `rbs_type_parsing_option_t`.
The rbs-inline provides syntax for annotations. https://github.com/soutaro/rbs-inline/wiki/Syntax-guide#rbs-annotations In this case, you can write it like this. ```rb # @rbs %a{deprecated: Use #new_thing instead.} #: -> String def old_thing return 'bad'...
It seems that the `#:` style is already supported after trying it out. ```rb #: %a{deprecated: Use #new_thing instead.} -> String def old_thing return 'bad' end ``` However, it does...
I agree with adding the methods, but I'm unsure how much management cost we should invest in debugging methods.
You can try [rbs-inline](https://github.com/soutaro/rbs-inline). It's still an experimental feature, but I believe it can meet your expectations.
I believe it should return `Integer?` because the document says, > returning a value less than 0, returning 0, or returning a value greater than 0 https://docs.ruby-lang.org/en/master/Comparable.html Also, I cannot...
@sampersand Thank you for your request. However, due to the extensive number of changes, I am finding it difficult to review. Would it be possible to split the changes into...
@sampersand Thank you for your request. However, due to the extensive number of changes, I am finding it difficult to review. Would it be possible to split the changes into...