Alexandre Terrasa
Alexandre Terrasa
But you are right, this seems to be the same behavior than [Java](http://introcs.cs.princeton.edu/java/11precedence/).
Hum... problème intéressant. Je vois plusieurs solutions au problème. Aucune ne m'a l'air "top" mais ça peut fournir un truc à essayer. On a déjà parlé de rajouter des "see...
This is by design. When trying to merge two definitions such as this: ```rb # rbi/foo.rbi class Foo attr_reader :foo; end end # lib/foo.rb class Foo def foo; end end...
Yeah, at the moment it seems that Tapioca can't see if a method comes from an attribute accessor or not. If you look at the generated RBI for `prism` this...
I like option 3 better. Looks like you do as well: https://github.com/Shopify/rubocop-sorbet/pull/353?
> I would appreciate you looking into is whether it's possible to build x86_64 binaries from arm64 I looked into it and to do cross-compilation arm64 -> x86_64 and the...
I added a small change to force clean the Bazel cache when the version changed, this will take care of errors such as `does not contain a toolchain for cpu...
Pushed a change to force dynamic linking on arm64, which fixes the Sorbet process being killed, this should be good to go.
Superseded by https://github.com/sorbet/sorbet/pull/8152.
You may need a custom Engine to parse the ERB supported by Rails properly: https://github.com/Shopify/spoom/blob/at-deadcode/lib/spoom/deadcode/erb.rb#L8. The complexity is correctly mapping lines and columns to the original ERB source.