Class: Journey::Visitors::Each
- Defined in:
- lib/journey/visitors.rb
Overview
Loop through the requirements AST
Constant Summary
Constants inherited from Visitor
Instance Attribute Summary collapse
-
#block ⇒ Object
readonly
:nodoc:.
Instance Method Summary collapse
-
#initialize(block) ⇒ Each
constructor
A new instance of Each.
- #visit(node) ⇒ Object
Methods inherited from Visitor
Constructor Details
#initialize(block) ⇒ Each
Returns a new instance of Each.
46 47 48 |
# File 'lib/journey/visitors.rb', line 46 def initialize block @block = block end |
Instance Attribute Details
#block ⇒ Object (readonly)
:nodoc:
44 45 46 |
# File 'lib/journey/visitors.rb', line 44 def block @block end |
Instance Method Details
#visit(node) ⇒ Object
50 51 52 53 |
# File 'lib/journey/visitors.rb', line 50 def visit node super block.call node end |