class RKelly::Nodes::FunctionExprNode

Attributes

arguments[R]
function_body[R]

Public Class Methods

new(name, body, args = []) click to toggle source
Calls superclass method
# File lib/rkelly/nodes/function_expr_node.rb, line 5
def initialize(name, body, args = [])
  super(name)
  @function_body = body
  @arguments = args
end