Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 21 additions & 19 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ GEM
ast (2.4.3)
benchmark (0.5.0)
builder (3.3.0)
date (3.4.1)
debug (1.11.0)
date (3.5.1)
debug (1.11.1)
irb (~> 1.10)
reline (>= 0.3.8)
erb (5.0.1)
erb (6.0.1)
erubi (1.13.1)
io-console (0.8.0)
irb (1.15.2)
io-console (0.8.2)
irb (1.16.0)
pp (>= 0.6.0)
rdoc (>= 4.0.0)
reline (>= 0.4.2)
Expand All @@ -45,11 +45,11 @@ GEM
parser (3.3.10.0)
ast (~> 2.4.1)
racc
pp (0.6.2)
pp (0.6.3)
prettyprint
prettyprint (0.2.0)
prism (1.6.0)
psych (5.2.6)
prism (1.7.0)
psych (5.3.1)
date
stringio
racc (1.8.1)
Expand All @@ -61,11 +61,12 @@ GEM
rbs (4.0.0.dev.4)
logger
prism (>= 1.3.0)
rdoc (6.14.1)
rdoc (7.0.2)
erb
psych (>= 4.0.0)
tsort
regexp_parser (2.11.3)
reline (0.6.1)
reline (0.6.3)
io-console (~> 0.5)
require-hooks (0.2.2)
rexml (3.4.4)
Expand All @@ -89,15 +90,15 @@ GEM
lint_roller
rubocop (>= 1.75.2)
ruby-progressbar (1.13.0)
sorbet (0.6.12848)
sorbet-static (= 0.6.12848)
sorbet-runtime (0.6.12848)
sorbet-static (0.6.12848-universal-darwin)
sorbet-static (0.6.12848-x86_64-linux)
sorbet-static-and-runtime (0.6.12848)
sorbet (= 0.6.12848)
sorbet-runtime (= 0.6.12848)
stringio (3.1.7)
sorbet (0.6.12869)
sorbet-static (= 0.6.12869)
sorbet-runtime (0.6.12869)
sorbet-static (0.6.12869-universal-darwin)
sorbet-static (0.6.12869-x86_64-linux)
sorbet-static-and-runtime (0.6.12869)
sorbet (= 0.6.12869)
sorbet-runtime (= 0.6.12869)
stringio (3.2.0)
tapioca (0.17.10)
benchmark
bundler (>= 2.2.25)
Expand All @@ -110,6 +111,7 @@ GEM
thor (>= 1.2.0)
yard-sorbet
thor (1.4.0)
tsort (0.2.0)
unicode-display_width (3.2.0)
unicode-emoji (~> 4.1)
unicode-emoji (4.1.0)
Expand Down
2 changes: 1 addition & 1 deletion test/spoom/cli/srb/lsp_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ def foo(a)
assert_equal(<<~MSG, result.err)
Error: Sorbet returned typechecking errors for `/errors.rb`
8:11-8:11: Not enough arguments provided for method `Foo#foo`. Expected: `1`, got: `0` (7004)
5:2-5:5: Expected `String` but found `NilClass` for method result type (7005)
3:2-3:5: Method `sig` does not exist on `T.class_of(Foo)` (fix available) (7003)
3:8-3:14: Method `params` does not exist on `T.class_of(Foo)` (7003)
5:2-5:5: Expected `String` but found `NilClass` for method result type (7005)
9:0-9:3: Unable to resolve constant `Bar` (fix available) (5002)
MSG
end
Expand Down