Class: Faust2Ruby::AST::Prime
Overview
Delay with prime: expr’
Instance Attribute Summary collapse
-
#operand ⇒ Object
readonly
Returns the value of attribute operand.
Attributes inherited from Node
Instance Method Summary collapse
-
#initialize(operand, **opts) ⇒ Prime
constructor
A new instance of Prime.
Constructor Details
#initialize(operand, **opts) ⇒ Prime
Returns a new instance of Prime.
254 255 256 257 |
# File 'lib/faust2ruby/ast.rb', line 254 def initialize(operand, **opts) super(**opts) @operand = operand end |
Instance Attribute Details
#operand ⇒ Object (readonly)
Returns the value of attribute operand.
252 253 254 |
# File 'lib/faust2ruby/ast.rb', line 252 def operand @operand end |