2015-10-09 00:58:59 -04:00
|
|
|
module Mutant
|
|
|
|
module AST
|
|
|
|
# Node meta information mixin
|
|
|
|
module Meta
|
|
|
|
|
|
|
|
# Metadata for const nodes
|
|
|
|
class Const
|
|
|
|
include NamedChildren, Concord.new(:node), NodePredicates
|
|
|
|
|
|
|
|
children :base, :name
|
|
|
|
|
2016-03-21 17:44:07 -04:00
|
|
|
public :base, :name
|
|
|
|
|
2015-10-09 00:58:59 -04:00
|
|
|
# Test if AST node is possibly a top level constant
|
|
|
|
#
|
|
|
|
# @return [Boolean]
|
|
|
|
def possible_top_level?
|
|
|
|
base.nil? || n_cbase?(base)
|
|
|
|
end
|
|
|
|
|
|
|
|
end # Const
|
|
|
|
end # Meta
|
|
|
|
end # AST
|
|
|
|
end # Mutant
|