Class: ThemeCheck::LanguageServer::ExecuteCommandProvider

Inherits:
Object
  • Object
show all
Defined in:
lib/theme_check/language_server/execute_command_provider.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.allObject



7
8
9
# File 'lib/theme_check/language_server/execute_command_provider.rb', line 7

def all
  @all ||= []
end

.command(cmd = nil) ⇒ Object



15
16
17
18
# File 'lib/theme_check/language_server/execute_command_provider.rb', line 15

def command(cmd = nil)
  @command = cmd unless cmd.nil?
  @command
end

.inherited(subclass) ⇒ Object



11
12
13
# File 'lib/theme_check/language_server/execute_command_provider.rb', line 11

def inherited(subclass)
  all << subclass
end

Instance Method Details

#commandObject



25
26
27
# File 'lib/theme_check/language_server/execute_command_provider.rb', line 25

def command
  self.class.command
end

#execute(arguments) ⇒ Object

Raises:

  • (NotImplementedError)


21
22
23
# File 'lib/theme_check/language_server/execute_command_provider.rb', line 21

def execute(arguments)
  raise NotImplementedError
end