Class: MilkTea::AST::ParallelBlockStmt
- Inherits:
-
Data
- Object
- Data
- MilkTea::AST::ParallelBlockStmt
- Defined in:
- lib/milk_tea/core/ast.rb
Instance Attribute Summary collapse
-
#bodies ⇒ Object
readonly
Returns the value of attribute bodies.
-
#column ⇒ Object
readonly
Returns the value of attribute column.
-
#line ⇒ Object
readonly
Returns the value of attribute line.
Instance Method Summary collapse
-
#initialize(bodies:, line: nil, column: nil) ⇒ ParallelBlockStmt
constructor
A new instance of ParallelBlockStmt.
Constructor Details
#initialize(bodies:, line: nil, column: nil) ⇒ ParallelBlockStmt
Returns a new instance of ParallelBlockStmt.
176 |
# File 'lib/milk_tea/core/ast.rb', line 176 def initialize(bodies:, line: nil, column: nil) = super |
Instance Attribute Details
#bodies ⇒ Object (readonly)
Returns the value of attribute bodies
175 176 177 |
# File 'lib/milk_tea/core/ast.rb', line 175 def bodies @bodies end |
#column ⇒ Object (readonly)
Returns the value of attribute column
175 176 177 |
# File 'lib/milk_tea/core/ast.rb', line 175 def column @column end |
#line ⇒ Object (readonly)
Returns the value of attribute line
175 176 177 |
# File 'lib/milk_tea/core/ast.rb', line 175 def line @line end |