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