solargraph 0.46.0 → 0.47.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/rspec.yml +41 -41
- data/.gitignore +9 -9
- data/.rspec +2 -2
- data/.travis.yml +19 -19
- data/CHANGELOG.md +1126 -1115
- data/Gemfile +0 -0
- data/LICENSE +0 -0
- data/README.md +128 -128
- data/Rakefile +0 -0
- data/SPONSORS.md +17 -18
- data/bin/solargraph +0 -0
- data/lib/solargraph/api_map/bundler_methods.rb +22 -22
- data/lib/solargraph/api_map/cache.rb +70 -70
- data/lib/solargraph/api_map/source_to_yard.rb +81 -81
- data/lib/solargraph/api_map/store.rb +256 -256
- data/lib/solargraph/api_map.rb +686 -686
- data/lib/solargraph/bench.rb +27 -27
- data/lib/solargraph/compat.rb +37 -37
- data/lib/solargraph/complex_type/type_methods.rb +130 -130
- data/lib/solargraph/complex_type/unique_type.rb +75 -75
- data/lib/solargraph/complex_type.rb +221 -221
- data/lib/solargraph/convention/base.rb +33 -33
- data/lib/solargraph/convention/gemfile.rb +15 -15
- data/lib/solargraph/convention/gemspec.rb +22 -22
- data/lib/solargraph/convention/rspec.rb +30 -30
- data/lib/solargraph/convention.rb +47 -47
- data/lib/solargraph/converters/dd.rb +12 -12
- data/lib/solargraph/converters/dl.rb +12 -12
- data/lib/solargraph/converters/dt.rb +12 -12
- data/lib/solargraph/converters/misc.rb +1 -1
- data/lib/solargraph/diagnostics/base.rb +29 -29
- data/lib/solargraph/diagnostics/require_not_found.rb +53 -53
- data/lib/solargraph/diagnostics/rubocop.rb +98 -98
- data/lib/solargraph/diagnostics/rubocop_helpers.rb +63 -63
- data/lib/solargraph/diagnostics/severities.rb +15 -15
- data/lib/solargraph/diagnostics/type_check.rb +54 -54
- data/lib/solargraph/diagnostics/update_errors.rb +41 -41
- data/lib/solargraph/diagnostics.rb +55 -55
- data/lib/solargraph/documentor.rb +76 -76
- data/lib/solargraph/environ.rb +45 -45
- data/lib/solargraph/language_server/completion_item_kinds.rb +35 -35
- data/lib/solargraph/language_server/error_codes.rb +20 -20
- data/lib/solargraph/language_server/host/cataloger.rb +56 -56
- data/lib/solargraph/language_server/host/diagnoser.rb +89 -89
- data/lib/solargraph/language_server/host/dispatch.rb +111 -111
- data/lib/solargraph/language_server/host/message_worker.rb +59 -59
- data/lib/solargraph/language_server/host/sources.rb +156 -156
- data/lib/solargraph/language_server/host.rb +865 -865
- data/lib/solargraph/language_server/message/base.rb +89 -89
- data/lib/solargraph/language_server/message/cancel_request.rb +13 -13
- data/lib/solargraph/language_server/message/client/register_capability.rb +15 -15
- data/lib/solargraph/language_server/message/client.rb +11 -11
- data/lib/solargraph/language_server/message/completion_item/resolve.rb +58 -58
- data/lib/solargraph/language_server/message/completion_item.rb +11 -11
- data/lib/solargraph/language_server/message/exit_notification.rb +13 -13
- data/lib/solargraph/language_server/message/extended/check_gem_version.rb +100 -100
- data/lib/solargraph/language_server/message/extended/document.rb +20 -20
- data/lib/solargraph/language_server/message/extended/document_gems.rb +32 -32
- data/lib/solargraph/language_server/message/extended/download_core.rb +23 -23
- data/lib/solargraph/language_server/message/extended/environment.rb +25 -25
- data/lib/solargraph/language_server/message/extended/search.rb +20 -20
- data/lib/solargraph/language_server/message/extended.rb +21 -21
- data/lib/solargraph/language_server/message/initialize.rb +162 -162
- data/lib/solargraph/language_server/message/initialized.rb +27 -27
- data/lib/solargraph/language_server/message/method_not_found.rb +16 -16
- data/lib/solargraph/language_server/message/method_not_implemented.rb +14 -14
- data/lib/solargraph/language_server/message/shutdown.rb +13 -13
- data/lib/solargraph/language_server/message/text_document/base.rb +19 -19
- data/lib/solargraph/language_server/message/text_document/code_action.rb +17 -17
- data/lib/solargraph/language_server/message/text_document/completion.rb +59 -59
- data/lib/solargraph/language_server/message/text_document/definition.rb +38 -38
- data/lib/solargraph/language_server/message/text_document/did_change.rb +15 -15
- data/lib/solargraph/language_server/message/text_document/did_close.rb +15 -15
- data/lib/solargraph/language_server/message/text_document/did_open.rb +15 -15
- data/lib/solargraph/language_server/message/text_document/did_save.rb +17 -17
- data/lib/solargraph/language_server/message/text_document/document_highlight.rb +16 -16
- data/lib/solargraph/language_server/message/text_document/document_symbol.rb +23 -23
- data/lib/solargraph/language_server/message/text_document/folding_range.rb +26 -26
- data/lib/solargraph/language_server/message/text_document/formatting.rb +126 -126
- data/lib/solargraph/language_server/message/text_document/hover.rb +56 -54
- data/lib/solargraph/language_server/message/text_document/on_type_formatting.rb +34 -34
- data/lib/solargraph/language_server/message/text_document/prepare_rename.rb +11 -11
- data/lib/solargraph/language_server/message/text_document/references.rb +16 -16
- data/lib/solargraph/language_server/message/text_document/rename.rb +19 -19
- data/lib/solargraph/language_server/message/text_document/signature_help.rb +29 -29
- data/lib/solargraph/language_server/message/text_document.rb +28 -28
- data/lib/solargraph/language_server/message/workspace/did_change_configuration.rb +30 -30
- data/lib/solargraph/language_server/message/workspace/did_change_watched_files.rb +33 -33
- data/lib/solargraph/language_server/message/workspace/did_change_workspace_folders.rb +24 -24
- data/lib/solargraph/language_server/message/workspace/workspace_symbol.rb +23 -23
- data/lib/solargraph/language_server/message/workspace.rb +14 -14
- data/lib/solargraph/language_server/message.rb +93 -93
- data/lib/solargraph/language_server/message_types.rb +14 -14
- data/lib/solargraph/language_server/request.rb +24 -24
- data/lib/solargraph/language_server/symbol_kinds.rb +36 -36
- data/lib/solargraph/language_server/transport/adapter.rb +53 -53
- data/lib/solargraph/language_server/transport/data_reader.rb +72 -72
- data/lib/solargraph/language_server/transport.rb +13 -13
- data/lib/solargraph/language_server/uri_helpers.rb +49 -49
- data/lib/solargraph/language_server.rb +19 -19
- data/lib/solargraph/library.rb +546 -546
- data/lib/solargraph/location.rb +37 -37
- data/lib/solargraph/logging.rb +27 -27
- data/lib/solargraph/page.rb +83 -83
- data/lib/solargraph/parser/comment_ripper.rb +52 -52
- data/lib/solargraph/parser/legacy/class_methods.rb +135 -135
- data/lib/solargraph/parser/legacy/flawed_builder.rb +16 -16
- data/lib/solargraph/parser/legacy/node_chainer.rb +148 -148
- data/lib/solargraph/parser/legacy/node_methods.rb +325 -325
- data/lib/solargraph/parser/legacy/node_processors/alias_node.rb +23 -23
- data/lib/solargraph/parser/legacy/node_processors/args_node.rb +35 -35
- data/lib/solargraph/parser/legacy/node_processors/begin_node.rb +15 -15
- data/lib/solargraph/parser/legacy/node_processors/block_node.rb +42 -42
- data/lib/solargraph/parser/legacy/node_processors/casgn_node.rb +25 -25
- data/lib/solargraph/parser/legacy/node_processors/cvasgn_node.rb +23 -23
- data/lib/solargraph/parser/legacy/node_processors/def_node.rb +63 -63
- data/lib/solargraph/parser/legacy/node_processors/defs_node.rb +36 -36
- data/lib/solargraph/parser/legacy/node_processors/gvasgn_node.rb +23 -23
- data/lib/solargraph/parser/legacy/node_processors/ivasgn_node.rb +38 -38
- data/lib/solargraph/parser/legacy/node_processors/lvasgn_node.rb +28 -28
- data/lib/solargraph/parser/legacy/node_processors/namespace_node.rb +39 -39
- data/lib/solargraph/parser/legacy/node_processors/orasgn_node.rb +16 -16
- data/lib/solargraph/parser/legacy/node_processors/resbody_node.rb +36 -36
- data/lib/solargraph/parser/legacy/node_processors/sclass_node.rb +21 -21
- data/lib/solargraph/parser/legacy/node_processors/send_node.rb +257 -257
- data/lib/solargraph/parser/legacy/node_processors/sym_node.rb +18 -18
- data/lib/solargraph/parser/legacy/node_processors.rb +54 -54
- data/lib/solargraph/parser/legacy.rb +12 -12
- data/lib/solargraph/parser/node_methods.rb +43 -43
- data/lib/solargraph/parser/node_processor/base.rb +77 -77
- data/lib/solargraph/parser/node_processor.rb +43 -43
- data/lib/solargraph/parser/region.rb +66 -66
- data/lib/solargraph/parser/rubyvm/class_methods.rb +144 -144
- data/lib/solargraph/parser/rubyvm/node_chainer.rb +160 -160
- data/lib/solargraph/parser/rubyvm/node_methods.rb +315 -315
- data/lib/solargraph/parser/rubyvm/node_processors/alias_node.rb +23 -23
- data/lib/solargraph/parser/rubyvm/node_processors/args_node.rb +85 -85
- data/lib/solargraph/parser/rubyvm/node_processors/begin_node.rb +15 -15
- data/lib/solargraph/parser/rubyvm/node_processors/block_node.rb +42 -42
- data/lib/solargraph/parser/rubyvm/node_processors/casgn_node.rb +22 -22
- data/lib/solargraph/parser/rubyvm/node_processors/cvasgn_node.rb +23 -23
- data/lib/solargraph/parser/rubyvm/node_processors/def_node.rb +63 -63
- data/lib/solargraph/parser/rubyvm/node_processors/defs_node.rb +57 -57
- data/lib/solargraph/parser/rubyvm/node_processors/gvasgn_node.rb +23 -23
- data/lib/solargraph/parser/rubyvm/node_processors/ivasgn_node.rb +38 -38
- data/lib/solargraph/parser/rubyvm/node_processors/kw_arg_node.rb +39 -39
- data/lib/solargraph/parser/rubyvm/node_processors/lit_node.rb +20 -20
- data/lib/solargraph/parser/rubyvm/node_processors/lvasgn_node.rb +27 -27
- data/lib/solargraph/parser/rubyvm/node_processors/namespace_node.rb +39 -39
- data/lib/solargraph/parser/rubyvm/node_processors/opt_arg_node.rb +26 -26
- data/lib/solargraph/parser/rubyvm/node_processors/orasgn_node.rb +15 -15
- data/lib/solargraph/parser/rubyvm/node_processors/resbody_node.rb +45 -45
- data/lib/solargraph/parser/rubyvm/node_processors/sclass_node.rb +21 -21
- data/lib/solargraph/parser/rubyvm/node_processors/scope_node.rb +15 -15
- data/lib/solargraph/parser/rubyvm/node_processors/send_node.rb +277 -277
- data/lib/solargraph/parser/rubyvm/node_processors/sym_node.rb +18 -18
- data/lib/solargraph/parser/rubyvm/node_processors.rb +63 -63
- data/lib/solargraph/parser/rubyvm.rb +40 -40
- data/lib/solargraph/parser/snippet.rb +13 -13
- data/lib/solargraph/parser.rb +26 -26
- data/lib/solargraph/pin/base.rb +296 -296
- data/lib/solargraph/pin/base_variable.rb +84 -84
- data/lib/solargraph/pin/block.rb +73 -72
- data/lib/solargraph/pin/class_variable.rb +8 -8
- data/lib/solargraph/pin/closure.rb +37 -37
- data/lib/solargraph/pin/common.rb +70 -70
- data/lib/solargraph/pin/constant.rb +43 -43
- data/lib/solargraph/pin/conversions.rb +96 -96
- data/lib/solargraph/pin/documenting.rb +105 -105
- data/lib/solargraph/pin/duck_method.rb +16 -16
- data/lib/solargraph/pin/global_variable.rb +8 -8
- data/lib/solargraph/pin/instance_variable.rb +30 -30
- data/lib/solargraph/pin/keyword.rb +15 -15
- data/lib/solargraph/pin/keyword_param.rb +8 -8
- data/lib/solargraph/pin/local_variable.rb +55 -55
- data/lib/solargraph/pin/method.rb +245 -245
- data/lib/solargraph/pin/method_alias.rb +31 -31
- data/lib/solargraph/pin/namespace.rb +91 -91
- data/lib/solargraph/pin/parameter.rb +201 -201
- data/lib/solargraph/pin/proxy_type.rb +29 -29
- data/lib/solargraph/pin/reference/extend.rb +10 -10
- data/lib/solargraph/pin/reference/include.rb +10 -10
- data/lib/solargraph/pin/reference/override.rb +29 -29
- data/lib/solargraph/pin/reference/prepend.rb +10 -10
- data/lib/solargraph/pin/reference/require.rb +14 -14
- data/lib/solargraph/pin/reference/superclass.rb +10 -10
- data/lib/solargraph/pin/reference.rb +14 -14
- data/lib/solargraph/pin/search.rb +56 -56
- data/lib/solargraph/pin/singleton.rb +11 -11
- data/lib/solargraph/pin/symbol.rb +47 -47
- data/lib/solargraph/pin.rb +37 -37
- data/lib/solargraph/position.rb +100 -100
- data/lib/solargraph/range.rb +95 -95
- data/lib/solargraph/server_methods.rb +16 -16
- data/lib/solargraph/shell.rb +226 -226
- data/lib/solargraph/source/chain/block_variable.rb +13 -13
- data/lib/solargraph/source/chain/call.rb +204 -204
- data/lib/solargraph/source/chain/class_variable.rb +13 -13
- data/lib/solargraph/source/chain/constant.rb +75 -75
- data/lib/solargraph/source/chain/global_variable.rb +13 -13
- data/lib/solargraph/source/chain/hash.rb +28 -28
- data/lib/solargraph/source/chain/head.rb +19 -19
- data/lib/solargraph/source/chain/instance_variable.rb +13 -13
- data/lib/solargraph/source/chain/link.rb +71 -71
- data/lib/solargraph/source/chain/literal.rb +23 -23
- data/lib/solargraph/source/chain/or.rb +23 -23
- data/lib/solargraph/source/chain/q_call.rb +11 -11
- data/lib/solargraph/source/chain/variable.rb +13 -13
- data/lib/solargraph/source/chain/z_super.rb +30 -30
- data/lib/solargraph/source/chain.rb +164 -164
- data/lib/solargraph/source/change.rb +79 -79
- data/lib/solargraph/source/cursor.rb +164 -164
- data/lib/solargraph/source/source_chainer.rb +191 -191
- data/lib/solargraph/source/updater.rb +54 -54
- data/lib/solargraph/source.rb +522 -522
- data/lib/solargraph/source_map/clip.rb +224 -224
- data/lib/solargraph/source_map/completion.rb +23 -23
- data/lib/solargraph/source_map/mapper.rb +239 -212
- data/lib/solargraph/source_map.rb +180 -180
- data/lib/solargraph/type_checker/checks.rb +99 -99
- data/lib/solargraph/type_checker/param_def.rb +35 -35
- data/lib/solargraph/type_checker/problem.rb +32 -32
- data/lib/solargraph/type_checker/rules.rb +57 -57
- data/lib/solargraph/type_checker.rb +543 -543
- data/lib/solargraph/version.rb +5 -5
- data/lib/solargraph/views/environment.erb +58 -58
- data/lib/solargraph/workspace/config.rb +231 -231
- data/lib/solargraph/workspace.rb +215 -215
- data/lib/solargraph/yard_map/cache.rb +19 -19
- data/lib/solargraph/yard_map/core_docs.rb +170 -170
- data/lib/solargraph/yard_map/core_fills.rb +208 -208
- data/lib/solargraph/yard_map/core_gen.rb +76 -76
- data/lib/solargraph/yard_map/helpers.rb +16 -16
- data/lib/solargraph/yard_map/mapper/to_constant.rb +25 -25
- data/lib/solargraph/yard_map/mapper/to_method.rb +78 -78
- data/lib/solargraph/yard_map/mapper/to_namespace.rb +27 -27
- data/lib/solargraph/yard_map/mapper.rb +77 -77
- data/lib/solargraph/yard_map/rdoc_to_yard.rb +140 -140
- data/lib/solargraph/yard_map/stdlib_fills.rb +43 -43
- data/lib/solargraph/yard_map/to_method.rb +79 -79
- data/lib/solargraph/yard_map.rb +460 -460
- data/lib/solargraph.rb +69 -69
- data/lib/yard-solargraph.rb +33 -33
- data/solargraph.gemspec +0 -0
- metadata +12 -12
data/lib/solargraph/position.rb
CHANGED
@@ -1,100 +1,100 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Solargraph
|
4
|
-
# The zero-based line and column numbers of a position in a string.
|
5
|
-
#
|
6
|
-
class Position
|
7
|
-
# @return [Integer]
|
8
|
-
attr_reader :line
|
9
|
-
|
10
|
-
# @return [Integer]
|
11
|
-
attr_reader :character
|
12
|
-
|
13
|
-
alias column character
|
14
|
-
|
15
|
-
# @param line [Integer]
|
16
|
-
# @param character [Integer]
|
17
|
-
def initialize line, character
|
18
|
-
@line = line
|
19
|
-
@character = character
|
20
|
-
end
|
21
|
-
|
22
|
-
# Get a hash of the position. This representation is suitable for use in
|
23
|
-
# the language server protocol.
|
24
|
-
#
|
25
|
-
# @return [Hash]
|
26
|
-
def to_hash
|
27
|
-
{
|
28
|
-
line: line,
|
29
|
-
character: character
|
30
|
-
}
|
31
|
-
end
|
32
|
-
|
33
|
-
def inspect
|
34
|
-
"#<#{self.class} #{line}, #{character}>"
|
35
|
-
end
|
36
|
-
|
37
|
-
# Get a numeric offset for the specified text and position.
|
38
|
-
#
|
39
|
-
# @param text [String]
|
40
|
-
# @param position [Position]
|
41
|
-
# @return [Integer]
|
42
|
-
def self.to_offset text, position
|
43
|
-
return 0 if text.empty?
|
44
|
-
text.lines[0...position.line].sum(&:length) + position.character
|
45
|
-
end
|
46
|
-
|
47
|
-
# Get a numeric offset for the specified text and a position identified
|
48
|
-
# by its line and character.
|
49
|
-
#
|
50
|
-
# @param text [String]
|
51
|
-
# @param line [Integer]
|
52
|
-
# @param character [Integer]
|
53
|
-
# @return [Integer]
|
54
|
-
def self.line_char_to_offset text, line, character
|
55
|
-
to_offset(text, Position.new(line, character))
|
56
|
-
end
|
57
|
-
|
58
|
-
# Get a position for the specified text and offset.
|
59
|
-
#
|
60
|
-
# @param text [String]
|
61
|
-
# @param offset [Integer]
|
62
|
-
# @return [Position]
|
63
|
-
def self.from_offset text, offset
|
64
|
-
cursor = 0
|
65
|
-
line = 0
|
66
|
-
character = nil
|
67
|
-
text.lines.each do |l|
|
68
|
-
line_length = l.length
|
69
|
-
char_length = l.chomp.length
|
70
|
-
if cursor + char_length >= offset
|
71
|
-
character = offset - cursor
|
72
|
-
break
|
73
|
-
end
|
74
|
-
cursor += line_length
|
75
|
-
line += 1
|
76
|
-
end
|
77
|
-
character = 0 if character.nil? and (cursor - offset).between?(0, 1)
|
78
|
-
raise InvalidOffsetError if character.nil?
|
79
|
-
Position.new(line, character)
|
80
|
-
end
|
81
|
-
|
82
|
-
# A helper method for generating positions from arrays of integers. The
|
83
|
-
# original parameter is returned if it is already a position.
|
84
|
-
#
|
85
|
-
# @raise [ArgumentError] if the object cannot be converted to a position.
|
86
|
-
#
|
87
|
-
# @param object [Position, Array(Integer, Integer)]
|
88
|
-
# @return [Position]
|
89
|
-
def self.normalize object
|
90
|
-
return object if object.is_a?(Position)
|
91
|
-
return Position.new(object[0], object[1]) if object.is_a?(Array)
|
92
|
-
raise ArgumentError, "Unable to convert #{object.class} to Position"
|
93
|
-
end
|
94
|
-
|
95
|
-
def == other
|
96
|
-
return false unless other.is_a?(Position)
|
97
|
-
line == other.line and character == other.character
|
98
|
-
end
|
99
|
-
end
|
100
|
-
end
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Solargraph
|
4
|
+
# The zero-based line and column numbers of a position in a string.
|
5
|
+
#
|
6
|
+
class Position
|
7
|
+
# @return [Integer]
|
8
|
+
attr_reader :line
|
9
|
+
|
10
|
+
# @return [Integer]
|
11
|
+
attr_reader :character
|
12
|
+
|
13
|
+
alias column character
|
14
|
+
|
15
|
+
# @param line [Integer]
|
16
|
+
# @param character [Integer]
|
17
|
+
def initialize line, character
|
18
|
+
@line = line
|
19
|
+
@character = character
|
20
|
+
end
|
21
|
+
|
22
|
+
# Get a hash of the position. This representation is suitable for use in
|
23
|
+
# the language server protocol.
|
24
|
+
#
|
25
|
+
# @return [Hash]
|
26
|
+
def to_hash
|
27
|
+
{
|
28
|
+
line: line,
|
29
|
+
character: character
|
30
|
+
}
|
31
|
+
end
|
32
|
+
|
33
|
+
def inspect
|
34
|
+
"#<#{self.class} #{line}, #{character}>"
|
35
|
+
end
|
36
|
+
|
37
|
+
# Get a numeric offset for the specified text and position.
|
38
|
+
#
|
39
|
+
# @param text [String]
|
40
|
+
# @param position [Position]
|
41
|
+
# @return [Integer]
|
42
|
+
def self.to_offset text, position
|
43
|
+
return 0 if text.empty?
|
44
|
+
text.lines[0...position.line].sum(&:length) + position.character
|
45
|
+
end
|
46
|
+
|
47
|
+
# Get a numeric offset for the specified text and a position identified
|
48
|
+
# by its line and character.
|
49
|
+
#
|
50
|
+
# @param text [String]
|
51
|
+
# @param line [Integer]
|
52
|
+
# @param character [Integer]
|
53
|
+
# @return [Integer]
|
54
|
+
def self.line_char_to_offset text, line, character
|
55
|
+
to_offset(text, Position.new(line, character))
|
56
|
+
end
|
57
|
+
|
58
|
+
# Get a position for the specified text and offset.
|
59
|
+
#
|
60
|
+
# @param text [String]
|
61
|
+
# @param offset [Integer]
|
62
|
+
# @return [Position]
|
63
|
+
def self.from_offset text, offset
|
64
|
+
cursor = 0
|
65
|
+
line = 0
|
66
|
+
character = nil
|
67
|
+
text.lines.each do |l|
|
68
|
+
line_length = l.length
|
69
|
+
char_length = l.chomp.length
|
70
|
+
if cursor + char_length >= offset
|
71
|
+
character = offset - cursor
|
72
|
+
break
|
73
|
+
end
|
74
|
+
cursor += line_length
|
75
|
+
line += 1
|
76
|
+
end
|
77
|
+
character = 0 if character.nil? and (cursor - offset).between?(0, 1)
|
78
|
+
raise InvalidOffsetError if character.nil?
|
79
|
+
Position.new(line, character)
|
80
|
+
end
|
81
|
+
|
82
|
+
# A helper method for generating positions from arrays of integers. The
|
83
|
+
# original parameter is returned if it is already a position.
|
84
|
+
#
|
85
|
+
# @raise [ArgumentError] if the object cannot be converted to a position.
|
86
|
+
#
|
87
|
+
# @param object [Position, Array(Integer, Integer)]
|
88
|
+
# @return [Position]
|
89
|
+
def self.normalize object
|
90
|
+
return object if object.is_a?(Position)
|
91
|
+
return Position.new(object[0], object[1]) if object.is_a?(Array)
|
92
|
+
raise ArgumentError, "Unable to convert #{object.class} to Position"
|
93
|
+
end
|
94
|
+
|
95
|
+
def == other
|
96
|
+
return false unless other.is_a?(Position)
|
97
|
+
line == other.line and character == other.character
|
98
|
+
end
|
99
|
+
end
|
100
|
+
end
|
data/lib/solargraph/range.rb
CHANGED
@@ -1,95 +1,95 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Solargraph
|
4
|
-
# A pair of positions that compose a section of text.
|
5
|
-
#
|
6
|
-
class Range
|
7
|
-
# @return [Position]
|
8
|
-
attr_reader :start
|
9
|
-
|
10
|
-
# @return [Position]
|
11
|
-
attr_reader :ending
|
12
|
-
|
13
|
-
# @param start [Position]
|
14
|
-
# @param ending [Position]
|
15
|
-
def initialize start, ending
|
16
|
-
@start = start
|
17
|
-
@ending = ending
|
18
|
-
end
|
19
|
-
|
20
|
-
# Get a hash of the range. This representation is suitable for use in
|
21
|
-
# the language server protocol.
|
22
|
-
#
|
23
|
-
# @return [Hash<Symbol, Position>]
|
24
|
-
def to_hash
|
25
|
-
{
|
26
|
-
start: start.to_hash,
|
27
|
-
end: ending.to_hash
|
28
|
-
}
|
29
|
-
end
|
30
|
-
|
31
|
-
# True if the specified position is inside the range.
|
32
|
-
#
|
33
|
-
# @param position [Position, Array(Integer, Integer)]
|
34
|
-
# @return [Boolean]
|
35
|
-
def contain? position
|
36
|
-
position = Position.normalize(position)
|
37
|
-
return false if position.line < start.line || position.line > ending.line
|
38
|
-
return false if position.line == start.line && position.character < start.character
|
39
|
-
return false if position.line == ending.line && position.character > ending.character
|
40
|
-
true
|
41
|
-
end
|
42
|
-
|
43
|
-
# True if the range contains the specified position and the position does not precede it.
|
44
|
-
#
|
45
|
-
# @param position [Position, Array(Integer, Integer)]
|
46
|
-
# @return [Boolean]
|
47
|
-
def include? position
|
48
|
-
position = Position.normalize(position)
|
49
|
-
contain?(position) && !(position.line == start.line && position.character == start.character)
|
50
|
-
end
|
51
|
-
|
52
|
-
# Create a range from a pair of lines and characters.
|
53
|
-
#
|
54
|
-
# @param l1 [Integer] Starting line
|
55
|
-
# @param c1 [Integer] Starting character
|
56
|
-
# @param l2 [Integer] Ending line
|
57
|
-
# @param c2 [Integer] Ending character
|
58
|
-
# @return [Range]
|
59
|
-
def self.from_to l1, c1, l2, c2
|
60
|
-
Range.new(Position.new(l1, c1), Position.new(l2, c2))
|
61
|
-
end
|
62
|
-
|
63
|
-
# Get a range from a node.
|
64
|
-
#
|
65
|
-
# @param node [RubyVM::AbstractSyntaxTree::Node, Parser::AST::Node]
|
66
|
-
# @return [Range]
|
67
|
-
def self.from_node node
|
68
|
-
if defined?(RubyVM::AbstractSyntaxTree::Node)
|
69
|
-
if node.is_a?(RubyVM::AbstractSyntaxTree::Node)
|
70
|
-
Solargraph::Range.from_to(node.first_lineno - 1, node.first_column, node.last_lineno - 1, node.last_column)
|
71
|
-
end
|
72
|
-
elsif node&.loc && node.loc.expression
|
73
|
-
from_expr(node.loc.expression)
|
74
|
-
end
|
75
|
-
end
|
76
|
-
|
77
|
-
# Get a range from a Parser range, usually found in
|
78
|
-
# Parser::AST::Node#location#expression.
|
79
|
-
#
|
80
|
-
# @param expr [Parser::Source::Range]
|
81
|
-
# @return [Range]
|
82
|
-
def self.from_expr expr
|
83
|
-
from_to(expr.line, expr.column, expr.last_line, expr.last_column)
|
84
|
-
end
|
85
|
-
|
86
|
-
def == other
|
87
|
-
return false unless other.is_a?(Range)
|
88
|
-
start == other.start && ending == other.ending
|
89
|
-
end
|
90
|
-
|
91
|
-
def inspect
|
92
|
-
"#<#{self.class} #{start.inspect} to #{ending.inspect}>"
|
93
|
-
end
|
94
|
-
end
|
95
|
-
end
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Solargraph
|
4
|
+
# A pair of positions that compose a section of text.
|
5
|
+
#
|
6
|
+
class Range
|
7
|
+
# @return [Position]
|
8
|
+
attr_reader :start
|
9
|
+
|
10
|
+
# @return [Position]
|
11
|
+
attr_reader :ending
|
12
|
+
|
13
|
+
# @param start [Position]
|
14
|
+
# @param ending [Position]
|
15
|
+
def initialize start, ending
|
16
|
+
@start = start
|
17
|
+
@ending = ending
|
18
|
+
end
|
19
|
+
|
20
|
+
# Get a hash of the range. This representation is suitable for use in
|
21
|
+
# the language server protocol.
|
22
|
+
#
|
23
|
+
# @return [Hash<Symbol, Position>]
|
24
|
+
def to_hash
|
25
|
+
{
|
26
|
+
start: start.to_hash,
|
27
|
+
end: ending.to_hash
|
28
|
+
}
|
29
|
+
end
|
30
|
+
|
31
|
+
# True if the specified position is inside the range.
|
32
|
+
#
|
33
|
+
# @param position [Position, Array(Integer, Integer)]
|
34
|
+
# @return [Boolean]
|
35
|
+
def contain? position
|
36
|
+
position = Position.normalize(position)
|
37
|
+
return false if position.line < start.line || position.line > ending.line
|
38
|
+
return false if position.line == start.line && position.character < start.character
|
39
|
+
return false if position.line == ending.line && position.character > ending.character
|
40
|
+
true
|
41
|
+
end
|
42
|
+
|
43
|
+
# True if the range contains the specified position and the position does not precede it.
|
44
|
+
#
|
45
|
+
# @param position [Position, Array(Integer, Integer)]
|
46
|
+
# @return [Boolean]
|
47
|
+
def include? position
|
48
|
+
position = Position.normalize(position)
|
49
|
+
contain?(position) && !(position.line == start.line && position.character == start.character)
|
50
|
+
end
|
51
|
+
|
52
|
+
# Create a range from a pair of lines and characters.
|
53
|
+
#
|
54
|
+
# @param l1 [Integer] Starting line
|
55
|
+
# @param c1 [Integer] Starting character
|
56
|
+
# @param l2 [Integer] Ending line
|
57
|
+
# @param c2 [Integer] Ending character
|
58
|
+
# @return [Range]
|
59
|
+
def self.from_to l1, c1, l2, c2
|
60
|
+
Range.new(Position.new(l1, c1), Position.new(l2, c2))
|
61
|
+
end
|
62
|
+
|
63
|
+
# Get a range from a node.
|
64
|
+
#
|
65
|
+
# @param node [RubyVM::AbstractSyntaxTree::Node, Parser::AST::Node]
|
66
|
+
# @return [Range]
|
67
|
+
def self.from_node node
|
68
|
+
if defined?(RubyVM::AbstractSyntaxTree::Node)
|
69
|
+
if node.is_a?(RubyVM::AbstractSyntaxTree::Node)
|
70
|
+
Solargraph::Range.from_to(node.first_lineno - 1, node.first_column, node.last_lineno - 1, node.last_column)
|
71
|
+
end
|
72
|
+
elsif node&.loc && node.loc.expression
|
73
|
+
from_expr(node.loc.expression)
|
74
|
+
end
|
75
|
+
end
|
76
|
+
|
77
|
+
# Get a range from a Parser range, usually found in
|
78
|
+
# Parser::AST::Node#location#expression.
|
79
|
+
#
|
80
|
+
# @param expr [Parser::Source::Range]
|
81
|
+
# @return [Range]
|
82
|
+
def self.from_expr expr
|
83
|
+
from_to(expr.line, expr.column, expr.last_line, expr.last_column)
|
84
|
+
end
|
85
|
+
|
86
|
+
def == other
|
87
|
+
return false unless other.is_a?(Range)
|
88
|
+
start == other.start && ending == other.ending
|
89
|
+
end
|
90
|
+
|
91
|
+
def inspect
|
92
|
+
"#<#{self.class} #{start.inspect} to #{ending.inspect}>"
|
93
|
+
end
|
94
|
+
end
|
95
|
+
end
|
@@ -1,16 +1,16 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require 'socket'
|
4
|
-
|
5
|
-
module Solargraph
|
6
|
-
module ServerMethods
|
7
|
-
# @return [Integer]
|
8
|
-
def available_port
|
9
|
-
socket = Socket.new(:INET, :STREAM, 0)
|
10
|
-
socket.bind(Addrinfo.tcp("127.0.0.1", 0))
|
11
|
-
port = socket.local_address.ip_port
|
12
|
-
socket.close
|
13
|
-
port
|
14
|
-
end
|
15
|
-
end
|
16
|
-
end
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'socket'
|
4
|
+
|
5
|
+
module Solargraph
|
6
|
+
module ServerMethods
|
7
|
+
# @return [Integer]
|
8
|
+
def available_port
|
9
|
+
socket = Socket.new(:INET, :STREAM, 0)
|
10
|
+
socket.bind(Addrinfo.tcp("127.0.0.1", 0))
|
11
|
+
port = socket.local_address.ip_port
|
12
|
+
socket.close
|
13
|
+
port
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|