class Opal::Nodes::ArgsNode
def args list
def compile
def compile children.each_with_index do |child, idx| next if child.to_s == '*' child = child.to_sym push ', ' unless idx == 0 child = variable(child) scope.add_arg child.to_sym push child.to_s end end