Class: Kumi::Syntax::CallExpression
- Inherits:
-
Struct
- Object
- Struct
- Kumi::Syntax::CallExpression
- Includes:
- Node
- Defined in:
- lib/kumi/syntax/call_expression.rb
Instance Attribute Summary collapse
-
#args ⇒ Object
Returns the value of attribute args.
-
#fn_name ⇒ Object
Returns the value of attribute fn_name.
-
#opts ⇒ Object
Returns the value of attribute opts.
Attributes included from Node
Instance Method Summary collapse
Methods included from Node
Instance Attribute Details
#args ⇒ Object
Returns the value of attribute args
5 6 7 |
# File 'lib/kumi/syntax/call_expression.rb', line 5 def args @args end |
#fn_name ⇒ Object
Returns the value of attribute fn_name
5 6 7 |
# File 'lib/kumi/syntax/call_expression.rb', line 5 def fn_name @fn_name end |
#opts ⇒ Object
Returns the value of attribute opts
5 6 7 |
# File 'lib/kumi/syntax/call_expression.rb', line 5 def opts @opts end |
Instance Method Details
#children ⇒ Object
8 |
# File 'lib/kumi/syntax/call_expression.rb', line 8 def children = args |