Class: MilkTea::AST::PassStmt
- Inherits:
-
Data
- Object
- Data
- MilkTea::AST::PassStmt
- 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) ⇒ PassStmt
constructor
A new instance of PassStmt.
Constructor Details
#initialize(line: nil, column: nil, length: nil) ⇒ PassStmt
Returns a new instance of PassStmt.
210 |
# File 'lib/milk_tea/core/ast.rb', line 210 def initialize(line: nil, column: nil, length: nil) = super |
Instance Attribute Details
#column ⇒ Object (readonly)
Returns the value of attribute column
209 210 211 |
# File 'lib/milk_tea/core/ast.rb', line 209 def column @column end |
#length ⇒ Object (readonly)
Returns the value of attribute length
209 210 211 |
# File 'lib/milk_tea/core/ast.rb', line 209 def length @length end |
#line ⇒ Object (readonly)
Returns the value of attribute line
209 210 211 |
# File 'lib/milk_tea/core/ast.rb', line 209 def line @line end |