Skip to content

Commit

Permalink
type errors resolved
Browse files Browse the repository at this point in the history
  • Loading branch information
haiderashfaq committed Feb 9, 2024
1 parent 143c0ce commit 835505e
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 5 deletions.
3 changes: 3 additions & 0 deletions lib/ruby_lsp/listeners/completion.rb
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ def on_constant_read_node_enter(node)
return if DependencyDetector.instance.typechecker

name = constant_name(node)
return if name.nil?

candidates = @index.prefix_search(name, @nesting)
candidates.each do |entries|
complete_name = T.must(entries.first).name
Expand All @@ -63,6 +65,7 @@ def on_constant_path_node_enter(node)
return if DependencyDetector.instance.typechecker

name = constant_name(node)
return if name.nil?

top_level_reference = if name.start_with?("::")
name = name.delete_prefix("::")
Expand Down
10 changes: 8 additions & 2 deletions lib/ruby_lsp/listeners/definition.rb
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,18 @@ def on_call_node_enter(node)

sig { params(node: Prism::ConstantPathNode).void }
def on_constant_path_node_enter(node)
find_in_index(constant_name(node))
name = constant_name(node)
return if name.nil?

find_in_index(name)
end

sig { params(node: Prism::ConstantReadNode).void }
def on_constant_read_node_enter(node)
find_in_index(constant_name(node))
name = constant_name(node)
return if name.nil?

find_in_index(name)
end

private
Expand Down
10 changes: 8 additions & 2 deletions lib/ruby_lsp/listeners/hover.rb
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,10 @@ def initialize(response_builder, uri, nesting, index, dispatcher, typechecker_en
def on_constant_read_node_enter(node)
return if @typechecker_enabled

generate_hover(constant_name(node), node.location)
name = constant_name(node)
return if name.nil?

generate_hover(name, node.location)
end

sig { params(node: Prism::ConstantWriteNode).void }
Expand All @@ -69,7 +72,10 @@ def on_constant_write_node_enter(node)
def on_constant_path_node_enter(node)
return if DependencyDetector.instance.typechecker

generate_hover(constant_name(node), node.location)
name = constant_name(node)
return if name.nil?

generate_hover(name, node.location)
end

sig { params(node: Prism::CallNode).void }
Expand Down
10 changes: 9 additions & 1 deletion lib/ruby_lsp/requests/support/common.rb
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,15 @@ def markdown_from_index_entries(title, entries)
MARKDOWN
end

sig { params(node: Prism::Node).returns(T.nilable(String)) }
sig do
params(
node: T.any(
Prism::ConstantPathNode,
Prism::ConstantReadNode,
Prism::ConstantPathTargetNode,
),
).returns(T.nilable(String))
end
def constant_name(node)
node.full_name
rescue Prism::ConstantPathNode::DynamicPartsInConstantPathError
Expand Down

0 comments on commit 835505e

Please sign in to comment.