Class: Gloo::Verbs::Exists
- Inherits:
-
Core::Verb
- Object
- Core::Baseo
- Core::Verb
- Gloo::Verbs::Exists
- Defined in:
- lib/gloo/verbs/exists.rb
Constant Summary collapse
- KEYWORD =
'exists?'.freeze
- KEYWORD_SHORT =
'exist'.freeze
- VERB_TYPE =
'verb'.freeze
- OBJ_TYPE =
'object'.freeze
- ANY_TYPE =
'any'.freeze
- WRONG_NUM_ARGS_ERR =
'Wrong number of arguments! 1 or 2 expected.'.freeze
Constants inherited from Core::Baseo
Core::Baseo::NOT_IMPLEMENTED_ERR
Instance Attribute Summary
Attributes inherited from Core::Verb
Attributes inherited from Core::Baseo
Class Method Summary collapse
-
.keyword ⇒ Object
Get the Verb’s keyword.
-
.keyword_shortcut ⇒ Object
Get the Verb’s keyword shortcut.
Instance Method Summary collapse
-
#run ⇒ Object
Run the verb.
Methods inherited from Core::Verb
#display_value, help, inherited, #initialize, #type_display
Methods inherited from Core::Baseo
Constructor Details
This class inherits a constructor from Gloo::Core::Verb
Class Method Details
.keyword ⇒ Object
Get the Verb’s keyword.
39 40 41 |
# File 'lib/gloo/verbs/exists.rb', line 39 def self.keyword return KEYWORD end |
.keyword_shortcut ⇒ Object
Get the Verb’s keyword shortcut.
46 47 48 |
# File 'lib/gloo/verbs/exists.rb', line 46 def self.keyword_shortcut return KEYWORD_SHORT end |
Instance Method Details
#run ⇒ Object
Run the verb.
21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
# File 'lib/gloo/verbs/exists.rb', line 21 def run if @tokens.token_count == 3 type = @tokens.second.strip.downcase keyword = @tokens.last elsif @tokens.token_count == 2 type = ANY_TYPE keyword = @tokens.second else @engine.err WRONG_NUM_ARGS_ERR return end @engine.heap.it.set_to lookup_keyword(keyword, type) end |