Class: Faust2Ruby::AST::Route
Overview
Route: route(ins, outs, connections)
Instance Attribute Summary collapse
-
#connections ⇒ Object
readonly
Returns the value of attribute connections.
-
#ins ⇒ Object
readonly
Returns the value of attribute ins.
-
#outs ⇒ Object
readonly
Returns the value of attribute outs.
Attributes inherited from Node
Instance Method Summary collapse
-
#initialize(ins, outs, connections, **opts) ⇒ Route
constructor
A new instance of Route.
Constructor Details
#initialize(ins, outs, connections, **opts) ⇒ Route
Returns a new instance of Route.
285 286 287 288 289 290 |
# File 'lib/faust2ruby/ast.rb', line 285 def initialize(ins, outs, connections, **opts) super(**opts) @ins = ins @outs = outs @connections = connections end |
Instance Attribute Details
#connections ⇒ Object (readonly)
Returns the value of attribute connections.
283 284 285 |
# File 'lib/faust2ruby/ast.rb', line 283 def connections @connections end |
#ins ⇒ Object (readonly)
Returns the value of attribute ins.
283 284 285 |
# File 'lib/faust2ruby/ast.rb', line 283 def ins @ins end |
#outs ⇒ Object (readonly)
Returns the value of attribute outs.
283 284 285 |
# File 'lib/faust2ruby/ast.rb', line 283 def outs @outs end |