Class: RubyRTL::FuncCall
Overview
func call
Instance Attribute Summary collapse
-
#args ⇒ Object
Returns the value of attribute args.
-
#name ⇒ Object
Returns the value of attribute name.
Attributes inherited from Expr
Attributes inherited from Ast
Instance Method Summary collapse
-
#initialize(name, args = []) ⇒ FuncCall
constructor
A new instance of FuncCall.
Methods inherited from Ast
Constructor Details
#initialize(name, args = []) ⇒ FuncCall
Returns a new instance of FuncCall.
200 201 202 |
# File 'lib/ruby_rtl/ast.rb', line 200 def initialize name,args=[] @name,@args=name,args end |
Instance Attribute Details
#args ⇒ Object
Returns the value of attribute args.
199 200 201 |
# File 'lib/ruby_rtl/ast.rb', line 199 def args @args end |
#name ⇒ Object
Returns the value of attribute name.
199 200 201 |
# File 'lib/ruby_rtl/ast.rb', line 199 def name @name end |