solargraph 0.51.1 → 0.52.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (53) hide show
  1. checksums.yaml +4 -4
  2. data/.yardopts +2 -2
  3. data/CHANGELOG.md +31 -5
  4. data/lib/solargraph/api_map/cache.rb +2 -0
  5. data/lib/solargraph/api_map/store.rb +2 -2
  6. data/lib/solargraph/api_map.rb +11 -4
  7. data/lib/solargraph/complex_type/type_methods.rb +1 -1
  8. data/lib/solargraph/complex_type/unique_type.rb +19 -12
  9. data/lib/solargraph/complex_type.rb +24 -10
  10. data/lib/solargraph/documentor.rb +1 -1
  11. data/lib/solargraph/library.rb +12 -5
  12. data/lib/solargraph/parser/comment_ripper.rb +1 -0
  13. data/lib/solargraph/parser/legacy/class_methods.rb +2 -2
  14. data/lib/solargraph/parser/legacy/node_chainer.rb +18 -10
  15. data/lib/solargraph/parser/legacy/node_methods.rb +5 -3
  16. data/lib/solargraph/parser/legacy/node_processors/args_node.rb +28 -13
  17. data/lib/solargraph/parser/legacy/node_processors.rb +22 -21
  18. data/lib/solargraph/parser/node_methods.rb +1 -0
  19. data/lib/solargraph/parser/region.rb +1 -1
  20. data/lib/solargraph/parser/rubyvm/class_methods.rb +1 -3
  21. data/lib/solargraph/parser/rubyvm/node_chainer.rb +5 -2
  22. data/lib/solargraph/parser.rb +2 -0
  23. data/lib/solargraph/pin/base.rb +1 -1
  24. data/lib/solargraph/pin/block.rb +2 -2
  25. data/lib/solargraph/pin/delegated_method.rb +1 -1
  26. data/lib/solargraph/pin/method.rb +63 -6
  27. data/lib/solargraph/pin/namespace.rb +10 -3
  28. data/lib/solargraph/pin/parameter.rb +9 -10
  29. data/lib/solargraph/pin/signature.rb +9 -1
  30. data/lib/solargraph/rbs_map/conversions.rb +86 -31
  31. data/lib/solargraph/rbs_map/core_fills.rb +9 -10
  32. data/lib/solargraph/rbs_map/core_map.rb +1 -1
  33. data/lib/solargraph/rbs_map.rb +2 -3
  34. data/lib/solargraph/source/chain/array.rb +29 -0
  35. data/lib/solargraph/source/chain/call.rb +14 -30
  36. data/lib/solargraph/source/chain/link.rb +1 -1
  37. data/lib/solargraph/source/chain/z_super.rb +1 -1
  38. data/lib/solargraph/source/chain.rb +9 -10
  39. data/lib/solargraph/source/source_chainer.rb +2 -0
  40. data/lib/solargraph/source.rb +3 -3
  41. data/lib/solargraph/source_map/clip.rb +0 -16
  42. data/lib/solargraph/source_map/mapper.rb +2 -1
  43. data/lib/solargraph/source_map.rb +2 -2
  44. data/lib/solargraph/type_checker.rb +18 -7
  45. data/lib/solargraph/version.rb +1 -1
  46. data/lib/solargraph/workspace.rb +2 -1
  47. data/lib/solargraph/yard_map/mapper.rb +1 -1
  48. data/lib/solargraph/yard_map.rb +6 -5
  49. data/lib/solargraph/yard_tags.rb +20 -0
  50. data/lib/solargraph.rb +2 -3
  51. data/solargraph.gemspec +3 -0
  52. metadata +32 -3
  53. data/lib/yard-solargraph.rb +0 -33
@@ -24,7 +24,7 @@ module Solargraph
24
24
  # @param api_map [ApiMap]
25
25
  # @param name_pin [Pin::Base]
26
26
  # @param locals [Array<Pin::Base>]
27
- # @return [Array<Pin::Base>]
27
+ # @return [::Array<Pin::Base>]
28
28
  def resolve api_map, name_pin, locals
29
29
  []
30
30
  end
@@ -20,7 +20,7 @@ module Solargraph
20
20
 
21
21
  # @param api_map [ApiMap]
22
22
  # @param name_pin [Pin::Base]
23
- # @param locals [Array<Pin::Base>]
23
+ # @param locals [::Array<Pin::Base>]
24
24
  def resolve api_map, name_pin, locals
25
25
  return super_pins(api_map, name_pin)
26
26
  end
@@ -23,6 +23,7 @@ module Solargraph
23
23
  autoload :BlockVariable, 'solargraph/source/chain/block_variable'
24
24
  autoload :ZSuper, 'solargraph/source/chain/z_super'
25
25
  autoload :Hash, 'solargraph/source/chain/hash'
26
+ autoload :Array, 'solargraph/source/chain/array'
26
27
 
27
28
  @@inference_stack = []
28
29
  @@inference_depth = 0
@@ -30,12 +31,12 @@ module Solargraph
30
31
  UNDEFINED_CALL = Chain::Call.new('<undefined>')
31
32
  UNDEFINED_CONSTANT = Chain::Constant.new('<undefined>')
32
33
 
33
- # @return [Array<Source::Chain::Link>]
34
+ # @return [::Array<Source::Chain::Link>]
34
35
  attr_reader :links
35
36
 
36
37
  attr_reader :node
37
38
 
38
- # @param links [Array<Chain::Link>]
39
+ # @param links [::Array<Chain::Link>]
39
40
  def initialize links, node = nil, splat = false
40
41
  @links = links.clone
41
42
  @links.push UNDEFINED_CALL if @links.empty?
@@ -57,7 +58,7 @@ module Solargraph
57
58
  # @param api_map [ApiMap]
58
59
  # @param name_pin [Pin::Base]
59
60
  # @param locals [Array<Pin::Base>]
60
- # @return [Array<Pin::Base>]
61
+ # @return [::Array<Pin::Base>]
61
62
  def define api_map, name_pin, locals
62
63
  return [] if undefined?
63
64
  working_pin = name_pin
@@ -122,17 +123,13 @@ module Solargraph
122
123
  pins.each do |pin|
123
124
  # Avoid infinite recursion
124
125
  next if @@inference_stack.include?(pin.identity)
126
+
125
127
  @@inference_stack.push pin.identity
126
128
  type = pin.typify(api_map)
127
129
  @@inference_stack.pop
128
130
  if type.defined?
129
- if type.parameterized?
130
- type = type.resolve_parameters(pin.closure, context)
131
- # idx = pin.closure.parameters.index(type.subtypes.first.name)
132
- # next if idx.nil?
133
- # param_type = context.return_type.all_params[idx]
134
- # next unless param_type
135
- # type = ComplexType.try_parse(param_type.to_s)
131
+ if type.generic?
132
+ type = type.resolve_generics(pin.closure, context.return_type)
136
133
  end
137
134
  if type.defined?
138
135
  possibles.push type
@@ -143,10 +140,12 @@ module Solargraph
143
140
  if possibles.empty?
144
141
  # Limit method inference recursion
145
142
  return ComplexType::UNDEFINED if @@inference_depth >= 10 && pins.first.is_a?(Pin::Method)
143
+
146
144
  @@inference_depth += 1
147
145
  pins.each do |pin|
148
146
  # Avoid infinite recursion
149
147
  next if @@inference_stack.include?(pin.identity)
148
+
150
149
  @@inference_stack.push pin.identity
151
150
  type = pin.probe(api_map)
152
151
  @@inference_stack.pop
@@ -47,6 +47,8 @@ module Solargraph
47
47
  elsif source.parsed? && source.repaired? && end_of_phrase == '.'
48
48
  node, parent = source.tree_at(fixed_position.line, fixed_position.column)[0..2]
49
49
  node = Parser.parse(fixed_phrase) if node.nil?
50
+ elsif source.repaired?
51
+ node = Parser.parse(fixed_phrase)
50
52
  else
51
53
  node, parent = source.tree_at(fixed_position.line, fixed_position.column)[0..2] unless source.error_ranges.any?{|r| r.nil? || r.include?(fixed_position)}
52
54
  # Exception for positions that chain literal nodes in unsynchronized sources
@@ -33,7 +33,7 @@ module Solargraph
33
33
  attr_reader :version
34
34
 
35
35
  # @param code [String]
36
- # @param filename [String]
36
+ # @param filename [String, nil]
37
37
  # @param version [Integer]
38
38
  def initialize code, filename = nil, version = 0
39
39
  @code = normalize(code)
@@ -332,7 +332,7 @@ module Solargraph
332
332
 
333
333
  # @param top [Parser::AST::Node]
334
334
  # @param result [Array<Range>]
335
- # @param parent [Symbol]
335
+ # @param parent [Symbol, nil]
336
336
  # @return [void]
337
337
  def inner_folding_ranges top, result = [], parent = nil
338
338
  return unless Parser.is_ast_node?(top)
@@ -503,7 +503,7 @@ module Solargraph
503
503
  end
504
504
 
505
505
  # @param code [String]
506
- # @param filename [String]
506
+ # @param filename [String, nil]
507
507
  # @param version [Integer]
508
508
  # @return [Solargraph::Source]
509
509
  def load_string code, filename = nil, version = 0
@@ -115,21 +115,6 @@ module Solargraph
115
115
  @context_pin ||= source_map.locate_named_path_pin(cursor.node_position.line, cursor.node_position.character)
116
116
  end
117
117
 
118
- # @return [Array<Pin::Base>]
119
- def yielded_self_pins
120
- return [] unless block.is_a?(Pin::Block) && block.receiver
121
- chain = Parser.chain(block.receiver, source_map.source.filename)
122
- receiver_pin = chain.define(api_map, context_pin, locals).first
123
- return [] if receiver_pin.nil?
124
- result = []
125
- ys = receiver_pin.docstring.tag(:yieldpublic)
126
- unless ys.nil? || ys.types.empty?
127
- ysct = ComplexType.try_parse(*ys.types).qualify(api_map, receiver_pin.context.namespace)
128
- result.concat api_map.get_complex_type_methods(ysct, '', false)
129
- end
130
- result
131
- end
132
-
133
118
  # @return [Array<Pin::KeywordParam]
134
119
  def complete_keyword_parameters
135
120
  return [] unless cursor.argument? && cursor.chain.links.one? && cursor.word =~ /^[a-z0-9_]*:?$/
@@ -226,7 +211,6 @@ module Solargraph
226
211
  result.concat api_map.get_methods('Kernel')
227
212
  # result.concat ApiMap.keywords
228
213
  result.concat api_map.keyword_pins.to_a
229
- result.concat yielded_self_pins
230
214
  end
231
215
  end
232
216
  package_completions(result)
@@ -107,7 +107,8 @@ module Solargraph
107
107
  begin
108
108
  src = Solargraph::Source.load_string("def #{directive.tag.name};end", @source.filename)
109
109
  region = Parser::Region.new(source: src, closure: namespace)
110
- gen_pin = Parser.process_node(src.node, region).first.last
110
+ method_gen_pins = Parser.process_node(src.node, region).first.select { |pin| pin.is_a?(Pin::Method) }
111
+ gen_pin = method_gen_pins.last
111
112
  return if gen_pin.nil?
112
113
  # Move the location to the end of the line so it gets recognized
113
114
  # as originating from a comment
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require 'yard'
4
- require 'yard-solargraph'
4
+ require 'solargraph/yard_tags'
5
5
  require 'set'
6
6
 
7
7
  module Solargraph
@@ -41,7 +41,7 @@ module Solargraph
41
41
 
42
42
  def rebindable_method_names
43
43
  @rebindable_method_names ||= pins_by_class(Pin::Method)
44
- .select { |pin| pin.comments && pin.comments.include?('@yieldself') }
44
+ .select { |pin| pin.comments && pin.comments.include?('@yieldreceiver') }
45
45
  .map(&:name)
46
46
  .to_set
47
47
  end
@@ -22,7 +22,7 @@ module Solargraph
22
22
  attr_reader :api_map
23
23
 
24
24
  # @param filename [String]
25
- # @param api_map [ApiMap]
25
+ # @param api_map [ApiMap, nil]
26
26
  # @param level [Symbol]
27
27
  def initialize filename, api_map: nil, level: :normal
28
28
  @filename = filename
@@ -91,7 +91,12 @@ module Solargraph
91
91
  declared = pin.typify(api_map).self_to(pin.full_context.namespace)
92
92
  if declared.undefined?
93
93
  if pin.return_type.undefined? && rules.require_type_tags?
94
- result.push Problem.new(pin.location, "Missing @return tag for #{pin.path}", pin: pin)
94
+ if pin.attribute?
95
+ inferred = pin.probe(api_map).self_to(pin.full_context.namespace)
96
+ result.push Problem.new(pin.location, "Missing @return tag for #{pin.path}", pin: pin) unless inferred.defined?
97
+ else
98
+ result.push Problem.new(pin.location, "Missing @return tag for #{pin.path}", pin: pin)
99
+ end
95
100
  elsif pin.return_type.defined? && !resolved_constant?(pin)
96
101
  result.push Problem.new(pin.location, "Unresolved return type #{pin.return_type} for #{pin.path}", pin: pin)
97
102
  elsif rules.must_tag_or_infer? && pin.probe(api_map).undefined?
@@ -141,7 +146,14 @@ module Solargraph
141
146
  sig.parameters.each do |par|
142
147
  break if par.decl == :restarg || par.decl == :kwrestarg || par.decl == :blockarg
143
148
  unless params[par.name]
144
- result.push Problem.new(pin.location, "Missing @param tag for #{par.name} on #{pin.path}", pin: pin)
149
+ if pin.attribute?
150
+ inferred = pin.probe(api_map).self_to(pin.full_context.namespace)
151
+ if inferred.undefined?
152
+ result.push Problem.new(pin.location, "Missing @param tag for #{par.name} on #{pin.path}", pin: pin)
153
+ end
154
+ else
155
+ result.push Problem.new(pin.location, "Missing @param tag for #{par.name} on #{pin.path}", pin: pin)
156
+ end
145
157
  end
146
158
  end
147
159
  end
@@ -243,7 +255,7 @@ module Solargraph
243
255
  end
244
256
  closest = found.typify(api_map) if found
245
257
  if !found || found.is_a?(Pin::BaseVariable) || (closest.defined? && internal_or_core?(found))
246
- unless closest.parameterized? || ignored_pins.include?(found)
258
+ unless closest.generic? || ignored_pins.include?(found)
247
259
  result.push Problem.new(location, "Unresolved call to #{missing.links.last.word}")
248
260
  @marked_ranges.push rng
249
261
  end
@@ -279,7 +291,8 @@ module Solargraph
279
291
  result.concat ap
280
292
  break
281
293
  end
282
- break unless rules.validate_calls?
294
+ break if !rules.validate_calls? || base.links.first.is_a?(Solargraph::Source::Chain::ZSuper)
295
+
283
296
  params = first_param_hash(pins)
284
297
 
285
298
  all_errors = []
@@ -455,8 +468,6 @@ module Solargraph
455
468
  return [] if parameters.empty? && arguments.empty?
456
469
  return [] if pin.anon_splat?
457
470
  if parameters.empty?
458
- # Functions tagged param_tuple accepts two arguments (e.g., Hash#[]=)
459
- return [] if pin.docstring.tag(:param_tuple) && arguments.length == 2
460
471
  return [] if arguments.length == 1 && arguments.last.links.last.is_a?(Source::Chain::BlockVariable)
461
472
  return [Problem.new(location, "Too many arguments to #{pin.path}")]
462
473
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Solargraph
4
- VERSION = '0.51.1'
4
+ VERSION = '0.52.0'
5
5
  end
@@ -104,7 +104,8 @@ module Solargraph
104
104
  # @return [Boolean]
105
105
  def would_require? path
106
106
  require_paths.each do |rp|
107
- return true if File.exist?(File.join(rp, "#{path}.rb"))
107
+ full = File.join rp, path
108
+ return true if File.exist?(full) or File.exist?(full << ".rb")
108
109
  end
109
110
  false
110
111
  end
@@ -8,7 +8,7 @@ module Solargraph
8
8
  autoload :ToConstant, 'solargraph/yard_map/mapper/to_constant'
9
9
 
10
10
  # @param code_objects [Array<YARD::CodeObjects::Base>]
11
- # @param spec [Gem::Specification]
11
+ # @param spec [Gem::Specification, nil]
12
12
  def initialize code_objects, spec = nil
13
13
  @code_objects = code_objects
14
14
  @spec = spec
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require 'yard'
4
- require 'yard-solargraph'
4
+ require 'solargraph/yard_tags'
5
5
  require 'rubygems/package'
6
6
  require 'set'
7
7
 
@@ -66,7 +66,7 @@ module Solargraph
66
66
  # @return [Set<String>]
67
67
  def rebindable_method_names
68
68
  @rebindable_method_names ||= pins_by_class(Pin::Method)
69
- .select { |pin| pin.comments && pin.comments.include?('@yieldself') }
69
+ .select { |pin| pin.comments && pin.comments.include?('@yieldreceiver') }
70
70
  .map(&:name)
71
71
  .concat(['instance_eval', 'instance_exec', 'class_eval', 'class_exec', 'module_eval', 'module_exec', 'define_method'])
72
72
  .to_set
@@ -120,8 +120,9 @@ module Solargraph
120
120
  # @type [Gem::Specification]
121
121
  spec = spec_for_require(path)
122
122
  spec.full_require_paths.each do |rp|
123
- file = File.join(rp, "#{path}.rb")
124
- next unless File.file?(file)
123
+ file = File.join(rp, path)
124
+ file = [file, file + ".rb"].find { |file| File.file?(file) }
125
+ next unless file
125
126
  return Solargraph::Location.new(file, Solargraph::Range.from_to(0, 0, 0, 0))
126
127
  end
127
128
  nil
@@ -144,7 +145,7 @@ module Solargraph
144
145
  @cache ||= YardMap::Cache.new
145
146
  end
146
147
 
147
- # @return [Hash]
148
+ # @return [Hash{Class<Pin::Base> => Array<Pin::Base>}]
148
149
  def pin_class_hash
149
150
  @pin_class_hash ||= pins.to_set.classify(&:class).transform_values(&:to_a)
150
151
  end
@@ -0,0 +1,20 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'yard'
4
+
5
+ # Change YARD log IO to avoid sending unexpected messages to STDOUT
6
+ YARD::Logger.instance.io = File.new(File::NULL, 'w')
7
+
8
+ module Solargraph
9
+ # A placeholder for the @!domain directive. It doesn't need to do anything
10
+ # for yardocs. It's only used for Solargraph API maps.
11
+ class DomainDirective < YARD::Tags::Directive
12
+ def call; end
13
+ end
14
+ end
15
+
16
+ # Define a @type tag for documenting variables
17
+ YARD::Tags::Library.define_tag("Type", :type, :with_types_and_name)
18
+
19
+ # Define an @!override directive for overriding method tags
20
+ YARD::Tags::Library.define_directive("override", :with_name, Solargraph::DomainDirective)
data/lib/solargraph.rb CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  Encoding.default_external = 'UTF-8'
4
4
 
5
+ require 'yard-solargraph'
6
+ require 'solargraph/yard_tags'
5
7
  require 'solargraph/version'
6
8
 
7
9
  # The top-level namespace for the Solargraph code mapping, documentation,
@@ -44,7 +46,6 @@ module Solargraph
44
46
  autoload :Cache, 'solargraph/cache'
45
47
 
46
48
  dir = File.dirname(__FILE__)
47
- YARD_EXTENSION_FILE = File.join(dir, 'yard-solargraph.rb')
48
49
  VIEWS_PATH = File.join(dir, 'solargraph', 'views')
49
50
 
50
51
  # A convenience method for Solargraph::Logging.logger.
@@ -56,8 +57,6 @@ module Solargraph
56
57
 
57
58
  # A helper method that runs Bundler.with_unbundled_env or falls back to
58
59
  # Bundler.with_clean_env for earlier versions of Bundler.
59
- #
60
- # @return [void]
61
60
  def self.with_clean_env &block
62
61
  meth = if Bundler.respond_to?(:with_original_env)
63
62
  :with_original_env
data/solargraph.gemspec CHANGED
@@ -40,6 +40,7 @@ Gem::Specification.new do |s|
40
40
  s.add_runtime_dependency 'thor', '~> 1.0'
41
41
  s.add_runtime_dependency 'tilt', '~> 2.0'
42
42
  s.add_runtime_dependency 'yard', '~> 0.9', '>= 0.9.24'
43
+ s.add_runtime_dependency 'yard-solargraph', '~> 0.1'
43
44
 
44
45
  s.add_development_dependency 'pry'
45
46
  s.add_development_dependency 'public_suffix', '~> 3.1'
@@ -47,4 +48,6 @@ Gem::Specification.new do |s|
47
48
  s.add_development_dependency 'rspec', '~> 3.5'
48
49
  s.add_development_dependency 'simplecov', '~> 0.14'
49
50
  s.add_development_dependency 'webmock', '~> 3.6'
51
+ # work around missing yard dependency needed as of Ruby 3.5
52
+ s.add_development_dependency 'irb'
50
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: solargraph
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.51.1
4
+ version: 0.52.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Fred Snyder
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-01-23 00:00:00.000000000 Z
11
+ date: 2025-02-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: backport
@@ -260,6 +260,20 @@ dependencies:
260
260
  - - ">="
261
261
  - !ruby/object:Gem::Version
262
262
  version: 0.9.24
263
+ - !ruby/object:Gem::Dependency
264
+ name: yard-solargraph
265
+ requirement: !ruby/object:Gem::Requirement
266
+ requirements:
267
+ - - "~>"
268
+ - !ruby/object:Gem::Version
269
+ version: '0.1'
270
+ type: :runtime
271
+ prerelease: false
272
+ version_requirements: !ruby/object:Gem::Requirement
273
+ requirements:
274
+ - - "~>"
275
+ - !ruby/object:Gem::Version
276
+ version: '0.1'
263
277
  - !ruby/object:Gem::Dependency
264
278
  name: pry
265
279
  requirement: !ruby/object:Gem::Requirement
@@ -344,6 +358,20 @@ dependencies:
344
358
  - - "~>"
345
359
  - !ruby/object:Gem::Version
346
360
  version: '3.6'
361
+ - !ruby/object:Gem::Dependency
362
+ name: irb
363
+ requirement: !ruby/object:Gem::Requirement
364
+ requirements:
365
+ - - ">="
366
+ - !ruby/object:Gem::Version
367
+ version: '0'
368
+ type: :development
369
+ prerelease: false
370
+ version_requirements: !ruby/object:Gem::Requirement
371
+ requirements:
372
+ - - ">="
373
+ - !ruby/object:Gem::Version
374
+ version: '0'
347
375
  description: IDE tools for code completion, inline documentation, and static analysis
348
376
  email: admin@castwide.com
349
377
  executables:
@@ -561,6 +589,7 @@ files:
561
589
  - lib/solargraph/shell.rb
562
590
  - lib/solargraph/source.rb
563
591
  - lib/solargraph/source/chain.rb
592
+ - lib/solargraph/source/chain/array.rb
564
593
  - lib/solargraph/source/chain/block_variable.rb
565
594
  - lib/solargraph/source/chain/call.rb
566
595
  - lib/solargraph/source/chain/class_variable.rb
@@ -607,7 +636,7 @@ files:
607
636
  - lib/solargraph/yard_map/mapper/to_method.rb
608
637
  - lib/solargraph/yard_map/mapper/to_namespace.rb
609
638
  - lib/solargraph/yard_map/to_method.rb
610
- - lib/yard-solargraph.rb
639
+ - lib/solargraph/yard_tags.rb
611
640
  - solargraph.gemspec
612
641
  homepage: https://solargraph.org
613
642
  licenses:
@@ -1,33 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'yard'
4
-
5
- # Change YARD log IO to avoid sending unexpected messages to STDOUT
6
- YARD::Logger.instance.io = File.new(File::NULL, 'w')
7
-
8
- module Solargraph
9
- # A placeholder for the @!domain directive. It doesn't need to do anything
10
- # for yardocs. It's only used for Solargraph API maps.
11
- class DomainDirective < YARD::Tags::Directive
12
- def call; end
13
- end
14
- end
15
-
16
- # Define a @type tag for documenting variables
17
- YARD::Tags::Library.define_tag("Type", :type, :with_types_and_name)
18
- # Define a @yieldself tag for documenting block contexts
19
- YARD::Tags::Library.define_tag("Yieldself", :yieldself, :with_types)
20
- # Define a @yieldpublic tag for documenting block domains
21
- YARD::Tags::Library.define_tag("Yieldpublic", :yieldpublic, :with_types)
22
- # Define a @return_single_parameter tag for returning e.g. Array parameters
23
- YARD::Tags::Library.define_tag('ReturnSingleParameter', :return_single_parameter)
24
- # Define a @yieldparam_single_parameter tag for yielding e.g. Array parameters
25
- YARD::Tags::Library.define_tag('YieldparamSingleParameter', :yieldparam_single_parameter)
26
- # Define a @return_value_parameter tag for returning e.g. Hash values
27
- YARD::Tags::Library.define_tag('ReturnValueParameter', :return_value_parameter)
28
- # Define a @param_tuple tag for e.g. Hash#[]= parameters
29
- YARD::Tags::Library.define_tag('ParamTuple', :param_tuple)
30
- # Define a @!domain directive for documenting DSLs
31
- YARD::Tags::Library.define_directive("domain", :with_types, Solargraph::DomainDirective)
32
- # Define an @!override directive for overriding method tags
33
- YARD::Tags::Library.define_directive("override", :with_name, Solargraph::DomainDirective)