Class: Gloo::Exec::ExecEnv
- Inherits:
-
Object
- Object
- Gloo::Exec::ExecEnv
- Defined in:
- lib/gloo/exec/exec_env.rb
Constant Summary collapse
- VERB_STACK =
'verbs'.freeze
- ACTION_STACK =
'actions'.freeze
- SCRIPT_STACK =
'scripts'.freeze
- HERE_STACK =
'here'.freeze
Instance Attribute Summary collapse
-
#actions ⇒ Object
Returns the value of attribute actions.
-
#here ⇒ Object
Returns the value of attribute here.
-
#scripts ⇒ Object
Returns the value of attribute scripts.
-
#verbs ⇒ Object
Returns the value of attribute verbs.
Instance Method Summary collapse
-
#here_obj ⇒ Object
Get the here object.
-
#initialize ⇒ ExecEnv
constructor
Set up the execution environment.
-
#pop_action ⇒ Object
Pop an action off the stack.
-
#pop_script ⇒ Object
Pop a script off the stack.
-
#push_action(action) ⇒ Object
Push an action onto the stack.
-
#push_script(script) ⇒ Object
Push a script onto the stack.
Constructor Details
#initialize ⇒ ExecEnv
Set up the execution environment.
22 23 24 25 26 27 28 29 |
# File 'lib/gloo/exec/exec_env.rb', line 22 def initialize $log.debug 'exec env intialized...' @verbs = Gloo::Exec::Stack.new VERB_STACK @actions = Gloo::Exec::Stack.new ACTION_STACK @scripts = Gloo::Exec::Stack.new SCRIPT_STACK @here = Gloo::Exec::Stack.new HERE_STACK end |
Instance Attribute Details
#actions ⇒ Object
Returns the value of attribute actions.
12 13 14 |
# File 'lib/gloo/exec/exec_env.rb', line 12 def actions @actions end |
#here ⇒ Object
Returns the value of attribute here.
12 13 14 |
# File 'lib/gloo/exec/exec_env.rb', line 12 def here @here end |
#scripts ⇒ Object
Returns the value of attribute scripts.
12 13 14 |
# File 'lib/gloo/exec/exec_env.rb', line 12 def scripts @scripts end |
#verbs ⇒ Object
Returns the value of attribute verbs.
12 13 14 |
# File 'lib/gloo/exec/exec_env.rb', line 12 def verbs @verbs end |
Instance Method Details
#here_obj ⇒ Object
Get the here object.
34 35 36 37 38 |
# File 'lib/gloo/exec/exec_env.rb', line 34 def here_obj return nil if @here.stack.empty? return @here.stack.last end |
#pop_action ⇒ Object
Pop an action off the stack.
67 68 69 70 |
# File 'lib/gloo/exec/exec_env.rb', line 67 def pop_action @actions.pop # @here.pop end |
#pop_script ⇒ Object
Pop a script off the stack.
51 52 53 54 |
# File 'lib/gloo/exec/exec_env.rb', line 51 def pop_script @scripts.pop @here.pop end |
#push_action(action) ⇒ Object
Push an action onto the stack.
59 60 61 62 |
# File 'lib/gloo/exec/exec_env.rb', line 59 def push_action( action ) @actions.push action # @here.push action.to end |
#push_script(script) ⇒ Object
Push a script onto the stack.
43 44 45 46 |
# File 'lib/gloo/exec/exec_env.rb', line 43 def push_script( script ) @scripts.push script @here.push script.obj end |