Class: Faust2Ruby::AST::Identifier
Overview
Identifier reference
Instance Attribute Summary collapse
-
#name ⇒ Object
readonly
Returns the value of attribute name.
Attributes inherited from Node
Instance Method Summary collapse
-
#initialize(name, **opts) ⇒ Identifier
constructor
A new instance of Identifier.
Constructor Details
#initialize(name, **opts) ⇒ Identifier
Returns a new instance of Identifier.
112 113 114 115 |
# File 'lib/faust2ruby/ast.rb', line 112 def initialize(name, **opts) super(**opts) @name = name end |
Instance Attribute Details
#name ⇒ Object (readonly)
Returns the value of attribute name.
110 111 112 |
# File 'lib/faust2ruby/ast.rb', line 110 def name @name end |