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