Skip to content

Commit db50fc3

Browse files
authoredSep 20, 2024
Delete comment prefix when lazy fetching (#2584)
1 parent 5c6fc94 commit db50fc3

File tree

2 files changed

+21
-2
lines changed

2 files changed

+21
-2
lines changed
 

‎lib/ruby_indexer/lib/ruby_indexer/entry.rb

+7-2
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,13 @@ def comments
9898
# object is dropped, so this will not prevent updates
9999
if correct_group
100100
correct_group.filter_map do |comment|
101-
content = comment.slice
102-
content if content.valid_encoding?
101+
content = comment.slice.chomp
102+
103+
if content.valid_encoding?
104+
content.delete_prefix!("#")
105+
content.delete_prefix!(" ")
106+
content
107+
end
103108
end.join("\n")
104109
else
105110
""

‎lib/ruby_indexer/test/classes_and_modules_test.rb

+14
Original file line numberDiff line numberDiff line change
@@ -605,5 +605,19 @@ class ::Qux
605605
assert_entry("Foo::Bar", Entry::Class, "/fake/path/foo.rb:2-4:3-7")
606606
assert_entry("Qux", Entry::Class, "/fake/path/foo.rb:5-4:6-7")
607607
end
608+
609+
def test_lazy_comment_fetching_uses_correct_line_breaks_for_rendering
610+
path = "lib/ruby_lsp/node_context.rb"
611+
indexable = IndexablePath.new("#{Dir.pwd}/lib", path)
612+
613+
@index.index_single(indexable, collect_comments: false)
614+
615+
entry = @index["RubyLsp::NodeContext"].first
616+
617+
assert_equal(<<~COMMENTS.chomp, entry.comments)
618+
This class allows listeners to access contextual information about a node in the AST, such as its parent,
619+
its namespace nesting, and the surrounding CallNode (e.g. a method call).
620+
COMMENTS
621+
end
608622
end
609623
end

0 commit comments

Comments
 (0)