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.
207 |
# File 'lib/milk_tea/core/ast.rb', line 207 def initialize(line: nil, column: nil, length: nil) = super |
Instance Attribute Details
#column ⇒ Object (readonly)
Returns the value of attribute column
206 207 208 |
# File 'lib/milk_tea/core/ast.rb', line 206 def column @column end |
#length ⇒ Object (readonly)
Returns the value of attribute length
206 207 208 |
# File 'lib/milk_tea/core/ast.rb', line 206 def length @length end |
#line ⇒ Object (readonly)
Returns the value of attribute line
206 207 208 |
# File 'lib/milk_tea/core/ast.rb', line 206 def line @line end |