Class: Faust2Ruby::AST::Import
Overview
Import statement: import(“stdfaust.lib”);
Instance Attribute Summary collapse
-
#path ⇒ Object
readonly
Returns the value of attribute path.
Attributes inherited from Node
Instance Method Summary collapse
-
#initialize(path, **opts) ⇒ Import
constructor
A new instance of Import.
Constructor Details
#initialize(path, **opts) ⇒ Import
Returns a new instance of Import.
31 32 33 34 |
# File 'lib/faust2ruby/ast.rb', line 31 def initialize(path, **opts) super(**opts) @path = path end |
Instance Attribute Details
#path ⇒ Object (readonly)
Returns the value of attribute path.
29 30 31 |
# File 'lib/faust2ruby/ast.rb', line 29 def path @path end |