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