Class: LanguageServer::Protocol::Interface::SignatureHelpOptions

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

Overview

Signature help options.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(trigger_characters: nil) ⇒ SignatureHelpOptions

Returns a new instance of SignatureHelpOptions.



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

def initialize(trigger_characters: nil)
  @attributes = {}

  @attributes[:triggerCharacters] = trigger_characters if trigger_characters

  @attributes.freeze
end

Instance Attribute Details

#attributesObject (readonly)

Returns the value of attribute attributes.



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

def attributes
  @attributes
end

Instance Method Details

#to_hashObject



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

def to_hash
  attributes
end

#to_json(*args) ⇒ Object



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

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

#trigger_charactersstring[]

The characters that trigger signature help automatically.

Returns:

  • (string[])


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

def trigger_characters
  attributes.fetch(:triggerCharacters)
end