Skip to content

Commit f596f38

Browse files
authored
Merge pull request #3333 from Shopify/at-rbs-let
Translate all `T.let` to RBS inline comments supported by Sorbet
2 parents 61ba9e2 + 012d0a3 commit f596f38

File tree

89 files changed

+6768
-2628
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

89 files changed

+6768
-2628
lines changed

Gemfile.lock

+3-2
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,9 @@ GEM
4848
racc (1.8.1)
4949
rainbow (3.1.1)
5050
rake (13.2.1)
51-
rbi (0.2.3)
51+
rbi (0.3.1)
5252
prism (~> 1.0)
53+
rbs (>= 3.4.4)
5354
sorbet-runtime (>= 0.5.9204)
5455
rbs (3.6.1)
5556
logger
@@ -98,7 +99,7 @@ GEM
9899
sorbet-static-and-runtime (0.5.11945)
99100
sorbet (= 0.5.11945)
100101
sorbet-runtime (= 0.5.11945)
101-
spoom (1.5.4)
102+
spoom (1.6.1)
102103
erubi (>= 1.10.0)
103104
prism (>= 0.28.0)
104105
rbi (>= 0.2.3)

lib/rubocop/cop/ruby_lsp/use_language_server_aliases.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ module RubyLsp
2929
class UseLanguageServerAliases < RuboCop::Cop::Base
3030
extend RuboCop::Cop::AutoCorrector
3131

32-
ALIASED_CONSTANTS = T.let([:Interface, :Transport, :Constant].freeze, T::Array[Symbol])
32+
ALIASED_CONSTANTS = [:Interface, :Transport, :Constant].freeze #: Array[Symbol]
3333

3434
MSG = "Use constant alias `%{constant}`."
3535

lib/ruby_indexer/lib/ruby_indexer/configuration.rb

+31-40
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,13 @@
33

44
module RubyIndexer
55
class Configuration
6-
CONFIGURATION_SCHEMA = T.let(
7-
{
8-
"excluded_gems" => Array,
9-
"included_gems" => Array,
10-
"excluded_patterns" => Array,
11-
"included_patterns" => Array,
12-
"excluded_magic_comments" => Array,
13-
}.freeze,
14-
T::Hash[String, T.untyped],
15-
)
6+
CONFIGURATION_SCHEMA = {
7+
"excluded_gems" => Array,
8+
"included_gems" => Array,
9+
"excluded_patterns" => Array,
10+
"included_patterns" => Array,
11+
"excluded_magic_comments" => Array,
12+
}.freeze #: Hash[String, untyped]
1613

1714
#: String
1815
attr_writer :workspace_path
@@ -22,18 +19,15 @@ class Configuration
2219

2320
#: -> void
2421
def initialize
25-
@workspace_path = T.let(Dir.pwd, String)
26-
@encoding = T.let(Encoding::UTF_8, Encoding)
27-
@excluded_gems = T.let(initial_excluded_gems, T::Array[String])
28-
@included_gems = T.let([], T::Array[String])
29-
30-
@excluded_patterns = T.let(
31-
[
32-
"**/{test,spec}/**/{*_test.rb,test_*.rb,*_spec.rb}",
33-
"**/fixtures/**/*",
34-
],
35-
T::Array[String],
36-
)
22+
@workspace_path = Dir.pwd #: String
23+
@encoding = Encoding::UTF_8 #: Encoding
24+
@excluded_gems = initial_excluded_gems #: Array[String]
25+
@included_gems = [] #: Array[String]
26+
27+
@excluded_patterns = [
28+
"**/{test,spec}/**/{*_test.rb,test_*.rb,*_spec.rb}",
29+
"**/fixtures/**/*",
30+
] #: Array[String]
3731

3832
path = Bundler.settings["path"]
3933
if path
@@ -45,23 +39,20 @@ def initialize
4539

4640
# We start the included patterns with only the non excluded directories so that we can avoid paying the price of
4741
# traversing large directories that don't include Ruby files like `node_modules`
48-
@included_patterns = T.let(["{#{top_level_directories.join(",")}}/**/*.rb", "*.rb"], T::Array[String])
49-
@excluded_magic_comments = T.let(
50-
[
51-
"frozen_string_literal:",
52-
"typed:",
53-
"compiled:",
54-
"encoding:",
55-
"shareable_constant_value:",
56-
"warn_indent:",
57-
"rubocop:",
58-
"nodoc:",
59-
"doc:",
60-
"coding:",
61-
"warn_past_scope:",
62-
],
63-
T::Array[String],
64-
)
42+
@included_patterns = ["{#{top_level_directories.join(",")}}/**/*.rb", "*.rb"] #: Array[String]
43+
@excluded_magic_comments = [
44+
"frozen_string_literal:",
45+
"typed:",
46+
"compiled:",
47+
"encoding:",
48+
"shareable_constant_value:",
49+
"warn_indent:",
50+
"rubocop:",
51+
"nodoc:",
52+
"doc:",
53+
"coding:",
54+
"warn_past_scope:",
55+
] #: Array[String]
6556
end
6657

6758
#: -> Array[URI::Generic]
@@ -177,7 +168,7 @@ def indexable_uris
177168

178169
#: -> Regexp
179170
def magic_comment_regex
180-
@magic_comment_regex ||= T.let(/^#\s*#{@excluded_magic_comments.join("|")}/, T.nilable(Regexp))
171+
@magic_comment_regex ||= /^#\s*#{@excluded_magic_comments.join("|")}/ #: Regexp?
181172
end
182173

183174
#: (Hash[String, untyped] config) -> void

lib/ruby_indexer/lib/ruby_indexer/declaration_listener.rb

+15-19
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33

44
module RubyIndexer
55
class DeclarationListener
6-
OBJECT_NESTING = T.let(["Object"].freeze, T::Array[String])
7-
BASIC_OBJECT_NESTING = T.let(["BasicObject"].freeze, T::Array[String])
6+
OBJECT_NESTING = ["Object"].freeze #: Array[String]
7+
BASIC_OBJECT_NESTING = ["BasicObject"].freeze #: Array[String]
88

99
#: Array[String]
1010
attr_reader :indexing_errors
@@ -13,28 +13,24 @@ class DeclarationListener
1313
def initialize(index, dispatcher, parse_result, uri, collect_comments: false)
1414
@index = index
1515
@uri = uri
16-
@enhancements = T.let(Enhancement.all(self), T::Array[Enhancement])
17-
@visibility_stack = T.let([VisibilityScope.public_scope], T::Array[VisibilityScope])
18-
@comments_by_line = T.let(
19-
parse_result.comments.to_h do |c|
20-
[c.location.start_line, c]
21-
end,
22-
T::Hash[Integer, Prism::Comment],
23-
)
24-
@inside_def = T.let(false, T::Boolean)
25-
@code_units_cache = T.let(
26-
parse_result.code_units_cache(@index.configuration.encoding),
27-
T.any(T.proc.params(arg0: Integer).returns(Integer), Prism::CodeUnitsCache),
28-
)
29-
@source_lines = T.let(parse_result.source.lines, T::Array[String])
16+
@enhancements = Enhancement.all(self) #: Array[Enhancement]
17+
@visibility_stack = [VisibilityScope.public_scope] #: Array[VisibilityScope]
18+
@comments_by_line = parse_result.comments.to_h do |c|
19+
[c.location.start_line, c]
20+
end #: Hash[Integer, Prism::Comment]
21+
@inside_def = false #: bool
22+
@code_units_cache = parse_result
23+
.code_units_cache(@index.configuration.encoding) #: (^(Integer arg0) -> Integer | Prism::CodeUnitsCache)
24+
25+
@source_lines = parse_result.source.lines #: Array[String]
3026

3127
# The nesting stack we're currently inside. Used to determine the fully qualified name of constants, but only
3228
# stored by unresolved aliases which need the original nesting to be lazily resolved
33-
@stack = T.let([], T::Array[String])
29+
@stack = [] #: Array[String]
3430

3531
# A stack of namespace entries that represent where we currently are. Used to properly assign methods to an owner
36-
@owner_stack = T.let([], T::Array[Entry::Namespace])
37-
@indexing_errors = T.let([], T::Array[String])
32+
@owner_stack = [] #: Array[Entry::Namespace]
33+
@indexing_errors = [] #: Array[String]
3834
@collect_comments = collect_comments
3935

4036
dispatcher.register(

lib/ruby_indexer/lib/ruby_indexer/enhancement.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ class Enhancement
88

99
abstract!
1010

11-
@enhancements = T.let([], T::Array[T::Class[Enhancement]])
11+
@enhancements = [] #: Array[Class[Enhancement]]
1212

1313
class << self
1414
extend T::Sig

lib/ruby_indexer/lib/ruby_indexer/entry.rb

+15-18
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def initialize(name, uri, location, comments)
3030
@name = name
3131
@uri = uri
3232
@comments = comments
33-
@visibility = T.let(Visibility::PUBLIC, Visibility)
33+
@visibility = Visibility::PUBLIC #: Visibility
3434
@location = location
3535
end
3636

@@ -137,7 +137,7 @@ class Namespace < Entry
137137

138138
#: (Array[String] nesting, URI::Generic uri, Location location, Location name_location, String? comments) -> void
139139
def initialize(nesting, uri, location, name_location, comments)
140-
@name = T.let(nesting.join("::"), String)
140+
@name = nesting.join("::") #: String
141141
# The original nesting where this namespace was discovered
142142
@nesting = nesting
143143

@@ -156,7 +156,7 @@ def mixin_operation_module_names
156156
# and prepended
157157
#: -> Array[ModuleOperation]
158158
def mixin_operations
159-
@mixin_operations ||= T.let([], T.nilable(T::Array[ModuleOperation]))
159+
@mixin_operations ||= [] #: Array[ModuleOperation]?
160160
end
161161

162162
#: -> Integer
@@ -251,7 +251,7 @@ def decorated_name
251251

252252
# A rest method parameter, e.g. `def foo(*a)`
253253
class RestParameter < Parameter
254-
DEFAULT_NAME = T.let(:"<anonymous splat>", Symbol)
254+
DEFAULT_NAME = :"<anonymous splat>" #: Symbol
255255

256256
# @override
257257
#: -> Symbol
@@ -262,7 +262,7 @@ def decorated_name
262262

263263
# A keyword rest method parameter, e.g. `def foo(**a)`
264264
class KeywordRestParameter < Parameter
265-
DEFAULT_NAME = T.let(:"<anonymous keyword splat>", Symbol)
265+
DEFAULT_NAME = :"<anonymous keyword splat>" #: Symbol
266266

267267
# @override
268268
#: -> Symbol
@@ -273,7 +273,7 @@ def decorated_name
273273

274274
# A block method parameter, e.g. `def foo(&block)`
275275
class BlockParameter < Parameter
276-
DEFAULT_NAME = T.let(:"<anonymous block>", Symbol)
276+
DEFAULT_NAME = :"<anonymous block>" #: Symbol
277277

278278
class << self
279279
#: -> BlockParameter
@@ -343,14 +343,11 @@ class Accessor < Member
343343
# @override
344344
#: -> Array[Signature]
345345
def signatures
346-
@signatures ||= T.let(
347-
begin
348-
params = []
349-
params << RequiredParameter.new(name: name.delete_suffix("=").to_sym) if name.end_with?("=")
350-
[Entry::Signature.new(params)]
351-
end,
352-
T.nilable(T::Array[Signature]),
353-
)
346+
@signatures ||= begin
347+
params = []
348+
params << RequiredParameter.new(name: name.delete_suffix("=").to_sym) if name.end_with?("=")
349+
[Entry::Signature.new(params)]
350+
end #: Array[Signature]?
354351
end
355352
end
356353

@@ -484,7 +481,7 @@ def initialize(target, unresolved_alias)
484481
)
485482

486483
@target = target
487-
@owner = T.let(unresolved_alias.owner, T.nilable(Entry::Namespace))
484+
@owner = unresolved_alias.owner #: Entry::Namespace?
488485
end
489486

490487
#: -> String
@@ -539,10 +536,10 @@ def format
539536
#: (Array[Prism::Node] arguments) -> bool
540537
def matches?(arguments)
541538
min_pos = 0
542-
max_pos = T.let(0, T.any(Integer, Float))
539+
max_pos = 0 #: (Integer | Float)
543540
names = []
544-
has_forward = T.let(false, T::Boolean)
545-
has_keyword_rest = T.let(false, T::Boolean)
541+
has_forward = false #: bool
542+
has_keyword_rest = false #: bool
546543

547544
@parameters.each do |param|
548545
case param

lib/ruby_indexer/lib/ruby_indexer/index.rb

+8-11
Original file line numberDiff line numberDiff line change
@@ -57,34 +57,31 @@ def initialize
5757
# "Foo" => [#<Entry::Class>, #<Entry::Class>],
5858
# "Foo::Bar" => [#<Entry::Class>],
5959
# }
60-
@entries = T.let({}, T::Hash[String, T::Array[Entry]])
60+
@entries = {} #: Hash[String, Array[Entry]]
6161

6262
# Holds all entries in the index using a prefix tree for searching based on prefixes to provide autocompletion
63-
@entries_tree = T.let(PrefixTree[T::Array[Entry]].new, PrefixTree[T::Array[Entry]])
63+
@entries_tree = PrefixTree[T::Array[Entry]].new #: PrefixTree[Array[Entry]]
6464

6565
# Holds references to where entries where discovered so that we can easily delete them
6666
# {
6767
# "file:///my/project/foo.rb" => [#<Entry::Class>, #<Entry::Class>],
6868
# "file:///my/project/bar.rb" => [#<Entry::Class>],
6969
# "untitled:Untitled-1" => [#<Entry::Class>],
7070
# }
71-
@uris_to_entries = T.let({}, T::Hash[String, T::Array[Entry]])
71+
@uris_to_entries = {} #: Hash[String, Array[Entry]]
7272

7373
# Holds all require paths for every indexed item so that we can provide autocomplete for requires
74-
@require_paths_tree = T.let(PrefixTree[URI::Generic].new, PrefixTree[URI::Generic])
74+
@require_paths_tree = PrefixTree[URI::Generic].new #: PrefixTree[URI::Generic]
7575

7676
# Holds the linearized ancestors list for every namespace
77-
@ancestors = T.let({}, T::Hash[String, T::Array[String]])
77+
@ancestors = {} #: Hash[String, Array[String]]
7878

7979
# Map of module name to included hooks that have to be executed when we include the given module
80-
@included_hooks = T.let(
81-
{},
82-
T::Hash[String, T::Array[T.proc.params(index: Index, base: Entry::Namespace).void]],
83-
)
80+
@included_hooks = {} #: Hash[String, Array[^(Index index, Entry::Namespace base) -> void]]
8481

85-
@configuration = T.let(RubyIndexer::Configuration.new, Configuration)
82+
@configuration = RubyIndexer::Configuration.new #: Configuration
8683

87-
@initial_indexing_completed = T.let(false, T::Boolean)
84+
@initial_indexing_completed = false #: bool
8885
end
8986

9087
# Register an included `hook` that will be executed when `module_name` is included into any namespace

lib/ruby_indexer/lib/ruby_indexer/prefix_tree.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class PrefixTree
3939

4040
#: -> void
4141
def initialize
42-
@root = T.let(Node.new("", ""), Node[Value])
42+
@root = Node.new("", "") #: Node[Value]
4343
end
4444

4545
# Search the PrefixTree based on a given `prefix`. If `foo` is an entry in the tree, then searching for `fo` will
@@ -78,7 +78,7 @@ def delete(key)
7878
return unless node
7979

8080
# Remove the node from the tree and then go up the parents to remove any of them with empty children
81-
parent = T.let(T.must(node.parent), T.nilable(Node[Value]))
81+
parent = T.must(node.parent) #: Node[Value]?
8282

8383
while parent
8484
parent.children.delete(node.key)

lib/ruby_indexer/lib/ruby_indexer/rbs_indexer.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
module RubyIndexer
55
class RBSIndexer
6-
HAS_UNTYPED_FUNCTION = T.let(!!defined?(RBS::Types::UntypedFunction), T::Boolean)
6+
HAS_UNTYPED_FUNCTION = !!defined?(RBS::Types::UntypedFunction) #: bool
77

88
#: (Index index) -> void
99
def initialize(index)

lib/ruby_indexer/lib/ruby_indexer/reference_finder.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,8 @@ def initialize(target, index, dispatcher, uri, include_declarations: true)
6666
@index = index
6767
@uri = uri
6868
@include_declarations = include_declarations
69-
@stack = T.let([], T::Array[String])
70-
@references = T.let([], T::Array[Reference])
69+
@stack = [] #: Array[String]
70+
@references = [] #: Array[Reference]
7171

7272
dispatcher.register(
7373
self,

lib/ruby_lsp/addon.rb

+4-4
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ class Addon
2525

2626
abstract!
2727

28-
@addons = T.let([], T::Array[Addon])
29-
@addon_classes = T.let([], T::Array[T.class_of(Addon)])
28+
@addons = [] #: Array[Addon]
29+
@addon_classes = [] #: Array[singleton(Addon)]
3030
# Add-on instances that have declared a handler to accept file watcher events
31-
@file_watcher_addons = T.let([], T::Array[Addon])
31+
@file_watcher_addons = [] #: Array[Addon]
3232

3333
AddonNotFoundError = Class.new(StandardError)
3434

@@ -149,7 +149,7 @@ def depend_on_ruby_lsp!(*version_constraints)
149149

150150
#: -> void
151151
def initialize
152-
@errors = T.let([], T::Array[StandardError])
152+
@errors = [] #: Array[StandardError]
153153
end
154154

155155
#: (StandardError error) -> self

0 commit comments

Comments
 (0)