-
Notifications
You must be signed in to change notification settings - Fork 252
Expand file tree
/
Copy pathcommon.rb
More file actions
158 lines (137 loc) · 6.22 KB
/
common.rb
File metadata and controls
158 lines (137 loc) · 6.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
# typed: strict
# frozen_string_literal: true
module RubyLsp
module Requests
module Support
# @requires_ancestor: Kernel
module Common
# WARNING: Methods in this class may be used by Ruby LSP add-ons such as
# https://github.com/Shopify/ruby-lsp-rails, or add-ons by created by developers outside of Shopify, so be
# cautious of changing anything.
#: (Prism::Node node) -> Interface::Range
def range_from_node(node)
loc = node.location
Interface::Range.new(
start: Interface::Position.new(
line: loc.start_line - 1,
character: loc.start_column,
),
end: Interface::Position.new(line: loc.end_line - 1, character: loc.end_column),
)
end
#: ((Prism::Location | RubyIndexer::Location) location) -> Interface::Range
def range_from_location(location)
Interface::Range.new(
start: Interface::Position.new(
line: location.start_line - 1,
character: location.start_column,
),
end: Interface::Position.new(line: location.end_line - 1, character: location.end_column),
)
end
#: (Prism::Node node, title: String, command_name: String, arguments: Array[untyped]?, data: Hash[untyped, untyped]?) -> Interface::CodeLens
def create_code_lens(node, title:, command_name:, arguments:, data:)
range = range_from_node(node)
Interface::CodeLens.new(
range: range,
command: Interface::Command.new(
title: title,
command: command_name,
arguments: arguments,
),
data: data,
)
end
#: (Prism::CallNode node) -> bool
def self_receiver?(node)
receiver = node.receiver
receiver.nil? || receiver.is_a?(Prism::SelfNode)
end
#: (String title, (Array[RubyIndexer::Entry] | RubyIndexer::Entry) entries, ?Integer? max_entries) -> Hash[Symbol, String]
def categorized_markdown_from_index_entries(title, entries, max_entries = nil)
markdown_title = "```ruby\n#{title}\n```"
definitions = []
content = +""
entries = Array(entries)
entries_to_format = max_entries ? entries.take(max_entries) : entries
entries_to_format.each do |entry|
loc = entry.location
# We always handle locations as zero based. However, for file links in Markdown we need them to be one
# based, which is why instead of the usual subtraction of 1 to line numbers, we are actually adding 1 to
# columns. The format for VS Code file URIs is
# `file:///path/to/file.rb#Lstart_line,start_column-end_line,end_column`
uri = "#{entry.uri}#L#{loc.start_line},#{loc.start_column + 1}-#{loc.end_line},#{loc.end_column + 1}"
definitions << "[#{entry.file_name}](#{uri})"
content << "\n\n#{entry.comments}" unless entry.comments.empty?
end
additional_entries_text = if max_entries && entries.length > max_entries
additional = entries.length - max_entries
" | #{additional} other#{additional > 1 ? "s" : ""}"
else
""
end
{
title: markdown_title,
links: "**Definitions**: #{definitions.join(" | ")}#{additional_entries_text}",
documentation: content,
}
end
#: (String title, (Array[RubyIndexer::Entry] | RubyIndexer::Entry) entries, ?Integer? max_entries, ?extra_links: String?) -> String
def markdown_from_index_entries(title, entries, max_entries = nil, extra_links: nil)
categorized_markdown = categorized_markdown_from_index_entries(title, entries, max_entries)
markdown = +(categorized_markdown[:title] || "")
markdown << "\n\n#{extra_links}" if extra_links
<<~MARKDOWN.chomp
#{markdown}
#{categorized_markdown[:links]}
#{categorized_markdown[:documentation]}
MARKDOWN
end
#: ((Prism::ConstantPathNode | Prism::ConstantReadNode | Prism::ConstantPathTargetNode | Prism::CallNode | Prism::MissingNode) node) -> String?
def constant_name(node)
RubyIndexer::Index.constant_name(node)
end
#: ((Prism::ModuleNode | Prism::ClassNode) node) -> String?
def namespace_constant_name(node)
path = node.constant_path
case path
when Prism::ConstantPathNode, Prism::ConstantReadNode
constant_name(path)
end
end
# Iterates over each part of a constant path, so that we can easily push response items for each section of the
# name. For example, for `Foo::Bar::Baz`, this method will invoke the block with `Foo`, then `Bar` and finally
# `Baz`.
#: (Prism::Node node) { (Prism::Node part) -> void } -> void
def each_constant_path_part(node, &block)
current = node #: Prism::Node?
while current.is_a?(Prism::ConstantPathNode)
block.call(current)
current = current.parent
end
end
#: (RubyIndexer::Entry entry) -> Integer
def kind_for_entry(entry)
case entry
when RubyIndexer::Entry::Class
Constant::SymbolKind::CLASS
when RubyIndexer::Entry::Module
Constant::SymbolKind::NAMESPACE
when RubyIndexer::Entry::Constant, RubyIndexer::Entry::UnresolvedConstantAlias, RubyIndexer::Entry::ConstantAlias
Constant::SymbolKind::CONSTANT
when RubyIndexer::Entry::Method, RubyIndexer::Entry::UnresolvedMethodAlias, RubyIndexer::Entry::MethodAlias
entry.name == "initialize" ? Constant::SymbolKind::CONSTRUCTOR : Constant::SymbolKind::METHOD
when RubyIndexer::Entry::Accessor
Constant::SymbolKind::PROPERTY
when RubyIndexer::Entry::InstanceVariable, RubyIndexer::Entry::ClassVariable
Constant::SymbolKind::FIELD
when RubyIndexer::Entry::GlobalVariable
Constant::SymbolKind::VARIABLE
else
Constant::SymbolKind::NULL
end
end
end
end
end
end