Results 161 issues of Tiago

I get the aforementioned error in steep for similar code to this: ```ruby module HashExtensions refine Hash do def >=(other) Hash[other]

This PR integrates `Object` methods on method call checks. The purpose is for calls to "implicit methods" such as `.nil?`, `==` or `.to_s` to not be tagged by `steep` as...

I get `The method cannot be called with a block` with code like this: ```ruby def bl(&block) bl2 do |*args, &callback| block.call(*args, &callback) # error from this line end end...

Im getting this error shown: ``` Cannot pass a value of type `^(*untyped) -> void` as an argument of type `::Proc` ``` When I have something like: ```ruby # sig:...

steep complains about the following code: ```ruby aux = nil if some_cond aux = "a" end # ... return false unless aux ``` with: ``` Cannot assign a value of...

The following signature and code: ```ruby # sig def a: () -> _ToS # ruby a == "A" ``` throw the error: ``` Type `::_ToS` does not have method `==`(Ruby::NoMethod)...

Steep complains about the following code: ```ruby # sig class A attr_accessor a: Integer? end class B def a=: (Integer) -> void end # code a = A.new b =...

./h2spec --version Version: 2.3.0 (cb03b47353d2691ede927b1d4a4ad9c417aeee60) I have a very simple code: a socket accepting and printing the metadata. In ruby: ```ruby require "socket" puts "Starting server on port 9000" server...

Have a very simple test using `assert_requested`: ```ruby class WebmockTest < Minitest::Test def setup super WebMock.enable! WebMock.disable_net_connect! @stub_http = stub_http_request(:any, MOCK_URL_HTTP) end def teardown WebMock.reset! WebMock.allow_net_connect! WebMock.disable! end .... def...

I don't know if this was by design, but it took me some figuring out on how to explicitly set proxy. However, for portability, I'd automatically set proxy from the...