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