Class: VisualizerCompilerPassListener
- Inherits:
-
Object
- Object
- VisualizerCompilerPassListener
- Defined in:
- lib/jruby_visualizer/visualizer_compiler_pass_listener.rb
Instance Method Summary collapse
- #already_executed(pass, scope, data, child_scope) ⇒ Object
- #end_execute(pass, scope, data, child_scope) ⇒ Object
- #start_execute(pass, scope, child_scope) ⇒ Object
Instance Method Details
#already_executed(pass, scope, data, child_scope) ⇒ Object
23 24 25 26 27 |
# File 'lib/jruby_visualizer/visualizer_compiler_pass_listener.rb', line 23 def already_executed(pass, scope, data, child_scope) # TODO add implementation logic #puts "PassListener inside already_executed" nil end |
#end_execute(pass, scope, data, child_scope) ⇒ Object
35 36 37 38 39 |
# File 'lib/jruby_visualizer/visualizer_compiler_pass_listener.rb', line 35 def end_execute(pass, scope, data, child_scope) # TODO diff on start_execute or already_executed #puts "PassListener inside end_execute" nil end |
#start_execute(pass, scope, child_scope) ⇒ Object
29 30 31 32 33 |
# File 'lib/jruby_visualizer/visualizer_compiler_pass_listener.rb', line 29 def start_execute(pass, scope, child_scope) # TODO implementation logic #puts "PassListener inside start_execute" nil end |