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

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

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.

Parameters:

  • include_declaration: (Boolean)


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

#attributesHash[Symbol, untyped] (readonly)

Returns the value of attribute attributes.

Returns:

  • (Hash[Symbol, untyped])


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_hashHash[Symbol, untyped]

Returns:

  • (Hash[Symbol, untyped])


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

def to_hash
  attributes
end

#to_json(*args) ⇒ String

Parameters:

  • (Object)

Returns:

  • (String)


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

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