free_mutant/lib/mutant/ast/meta/symbol.rb
2015-09-01 15:22:37 +00:00

15 lines
265 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
end # Symbol
end # Meta
end # AST
end # Mutant