Class: LanguageServer::Protocol::Interface::ReferenceContext

Inherits:
Object
  • Object
show all
Defined in:
lib/language_server/protocol/interface/reference_context.rb

Overview

Value-object that contains additional information when requesting references.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(include_declaration:) ⇒ ReferenceContext

Returns a new instance of ReferenceContext.



9
10
11
12
13
14
15
# File 'lib/language_server/protocol/interface/reference_context.rb', line 9

def initialize(include_declaration:)
  @attributes = {}

  @attributes[:includeDeclaration] = include_declaration

  @attributes.freeze
end

Instance Attribute Details

#attributesObject (readonly)

Returns the value of attribute attributes.



25
26
27
# File 'lib/language_server/protocol/interface/reference_context.rb', line 25

def attributes
  @attributes
end

Instance Method Details

#include_declarationboolean

Include the declaration of the current symbol.

Returns:

  • (boolean)


21
22
23
# File 'lib/language_server/protocol/interface/reference_context.rb', line 21

def include_declaration
  attributes.fetch(:includeDeclaration)
end

#to_hashObject



27
28
29
# File 'lib/language_server/protocol/interface/reference_context.rb', line 27

def to_hash
  attributes
end

#to_json(*args) ⇒ Object



31
32
33
# File 'lib/language_server/protocol/interface/reference_context.rb', line 31

def to_json(*args)
  to_hash.to_json(*args)
end