free_mutant/lib/mutant/ast/meta/symbol.rb

18 lines
287 B
Ruby
Raw Normal View History

module Mutant
module AST
# Node meta information mixin
module Meta
# Metadata for symbol nodes
class Symbol
include NamedChildren, Concord.new(:node)
children :name
2016-03-21 17:44:07 -04:00
public :name
end # Symbol
end # Meta
end # AST
end # Mutant