Class: Faust2Ruby::AST::Waveform

Inherits:
Node
  • Object
show all
Defined in:
lib/faust2ruby/ast.rb

Overview

Waveform: waveformv2, …

Instance Attribute Summary collapse

Attributes inherited from Node

#column, #line

Instance Method Summary collapse

Constructor Details

#initialize(values, **opts) ⇒ Waveform

Returns a new instance of Waveform.



233
234
235
236
# File 'lib/faust2ruby/ast.rb', line 233

def initialize(values, **opts)
  super(**opts)
  @values = values
end

Instance Attribute Details

#valuesObject (readonly)

Returns the value of attribute values.



231
232
233
# File 'lib/faust2ruby/ast.rb', line 231

def values
  @values
end