class LanguageServer::Protocol::Interface::SaveOptions

def include_text

Returns:
  • (boolean) -
def include_text
  attributes.fetch(:includeText)
end

def initialize(include_text: nil)

def initialize(include_text: nil)
  @attributes = {}
  @attributes[:includeText] = include_text if include_text
  @attributes.freeze
end

def to_hash

def to_hash
  attributes
end

def to_json(*args)

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