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

17 lines
287 B
Ruby

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