free_mutant/lib/mutant/ast/meta/restarg.rb
2016-03-21 21:44:07 +00:00

17 lines
290 B
Ruby

module Mutant
module AST
# Node meta information mixin
module Meta
# Metadata for restarg nodes
class Restarg
include NamedChildren, Concord.new(:node)
children :name
public :name
end # Restarg
end # Meta
end # AST
end # Mutant