Skip to content

Commit

Permalink
Allow command name to be nil
Browse files Browse the repository at this point in the history
  • Loading branch information
andyw8 committed May 17, 2024
1 parent e3c0f20 commit 69abc40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ruby_lsp/requests/support/common.rb
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def visible?(node, range)
params(
node: Prism::Node,
title: String,
command_name: String,
command_name: T.nilable(String),
arguments: T.nilable(T::Array[T.untyped]),
data: T.nilable(T::Hash[T.untyped, T.untyped]),
).returns(Interface::CodeLens)
Expand Down

0 comments on commit 69abc40

Please sign in to comment.