Class: SyntaxTree::For
Overview
For represents using a for loop.
for value in list do
end
Instance Attribute Summary collapse
-
#collection ⇒ Object
readonly
- untyped
-
the object being enumerated in the loop.
-
#comments ⇒ Object
readonly
- Array[ Comment | EmbDoc ]
-
the comments attached to this node.
-
#index ⇒ Object
readonly
- MLHS | VarField
-
the variable declaration being used to pull values out of the object being enumerated.
-
#statements ⇒ Object
readonly
- Statements
-
the statements to be executed.
Attributes inherited from Node
Instance Method Summary collapse
- #accept(visitor) ⇒ Object
- #child_nodes ⇒ Object (also: #deconstruct)
- #deconstruct_keys(_keys) ⇒ Object
- #format(q) ⇒ Object
-
#initialize(index:, collection:, statements:, location:, comments: []) ⇒ For
constructor
A new instance of For.
Methods inherited from Node
#construct_keys, #pretty_print, #to_json
Constructor Details
#initialize(index:, collection:, statements:, location:, comments: []) ⇒ For
Returns a new instance of For.
4647 4648 4649 4650 4651 4652 4653 |
# File 'lib/syntax_tree/node.rb', line 4647 def initialize(index:, collection:, statements:, location:, comments: []) @index = index @collection = collection @statements = statements @location = location @comments = comments end |
Instance Attribute Details
#collection ⇒ Object (readonly)
- untyped
-
the object being enumerated in the loop
4639 4640 4641 |
# File 'lib/syntax_tree/node.rb', line 4639 def collection @collection end |
#comments ⇒ Object (readonly)
- Array[ Comment | EmbDoc ]
-
the comments attached to this node
4645 4646 4647 |
# File 'lib/syntax_tree/node.rb', line 4645 def comments @comments end |
#index ⇒ Object (readonly)
- MLHS | VarField
-
the variable declaration being used to
pull values out of the object being enumerated
4636 4637 4638 |
# File 'lib/syntax_tree/node.rb', line 4636 def index @index end |
#statements ⇒ Object (readonly)
- Statements
-
the statements to be executed
4642 4643 4644 |
# File 'lib/syntax_tree/node.rb', line 4642 def statements @statements end |
Instance Method Details
#accept(visitor) ⇒ Object
4655 4656 4657 |
# File 'lib/syntax_tree/node.rb', line 4655 def accept(visitor) visitor.visit_for(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
4659 4660 4661 |
# File 'lib/syntax_tree/node.rb', line 4659 def child_nodes [index, collection, statements] end |
#deconstruct_keys(_keys) ⇒ Object
4665 4666 4667 4668 4669 4670 4671 4672 4673 |
# File 'lib/syntax_tree/node.rb', line 4665 def deconstruct_keys(_keys) { index: index, collection: collection, statements: statements, location: location, comments: comments } end |
#format(q) ⇒ Object
4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 |
# File 'lib/syntax_tree/node.rb', line 4675 def format(q) q.group do q.text("for ") q.group { q.format(index) } q.text(" in ") q.format(collection) unless statements.empty? q.indent do q.breakable(force: true) q.format(statements) end end q.breakable(force: true) q.text("end") end end |