Class: LanguageServer::Protocol::Interface::FormattingOptions

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

Overview

Value-object describing what options formatting should use.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(tab_size:, insert_spaces:) ⇒ FormattingOptions

Returns a new instance of FormattingOptions.



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

def initialize(tab_size:, insert_spaces:)
  @attributes = {}

  @attributes[:tabSize] = tab_size
  @attributes[:insertSpaces] = insert_spaces

  @attributes.freeze
end

Instance Attribute Details

#attributesObject (readonly)

Returns the value of attribute attributes.



33
34
35
# File 'lib/language_server/protocol/interface/formatting_options.rb', line 33

def attributes
  @attributes
end

Instance Method Details

#insert_spacesboolean

Prefer spaces over tabs.

Returns:

  • (boolean)


29
30
31
# File 'lib/language_server/protocol/interface/formatting_options.rb', line 29

def insert_spaces
  attributes.fetch(:insertSpaces)
end

#tab_sizenumber

Size of a tab in spaces.

Returns:

  • (number)


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

def tab_size
  attributes.fetch(:tabSize)
end

#to_hashObject



35
36
37
# File 'lib/language_server/protocol/interface/formatting_options.rb', line 35

def to_hash
  attributes
end

#to_json(*args) ⇒ Object



39
40
41
# File 'lib/language_server/protocol/interface/formatting_options.rb', line 39

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