Class: Faust2Ruby::AST::Table
Overview
Table operations: rdtable, rwtable
Instance Attribute Summary collapse
-
#args ⇒ Object
readonly
Returns the value of attribute args.
-
#type ⇒ Object
readonly
Returns the value of attribute type.
Attributes inherited from Node
Instance Method Summary collapse
-
#initialize(type, args, **opts) ⇒ Table
constructor
A new instance of Table.
Constructor Details
#initialize(type, args, **opts) ⇒ Table
Returns a new instance of Table.
243 244 245 246 247 |
# File 'lib/faust2ruby/ast.rb', line 243 def initialize(type, args, **opts) super(**opts) @type = type @args = args end |
Instance Attribute Details
#args ⇒ Object (readonly)
Returns the value of attribute args.
241 242 243 |
# File 'lib/faust2ruby/ast.rb', line 241 def args @args end |
#type ⇒ Object (readonly)
Returns the value of attribute type.
241 242 243 |
# File 'lib/faust2ruby/ast.rb', line 241 def type @type end |