Sha256: 0ba213a863fb534df2d1bcc3224fa49453402327b494c3dd491b96f0230748c1
Contents?: true
Size: 701 Bytes
Versions: 7
Compression:
Stored size: 701 Bytes
Contents
module LanguageServer module Protocol module Interfaces # # Signature help options. # class SignatureHelpOptions def initialize(trigger_characters: nil) @attributes = {} @attributes[:triggerCharacters] = trigger_characters if trigger_characters @attributes.freeze end # # The characters that trigger signature help # automatically. # # @return [string[]] def trigger_characters attributes.fetch(:triggerCharacters) end attr_reader :attributes def to_json(*args) attributes.to_json(*args) end end end end end
Version data entries
7 entries across 7 versions & 2 rubygems