free_mutant/lib/mutant/expression/namespace.rb
Markus Schirp b65939d527 Move bootstrapping into Env::Bootstrap
* Do not mix concerns of domain with building an object graph concerning
  the domains execution environment
* Removes the amount of clutter in Env (mostly a cleanup for tracing
  where Env will grow a bit)
2014-12-22 15:12:30 +00:00

90 lines
1.8 KiB
Ruby

module Mutant
class Expression
# Abstract base class for expressions matching namespaces
class Namespace < self
include AbstractType
private
# Return matched namespace
#
# @return [String]
#
# @api private
#
def namespace
match[__method__]
end
# Recursive namespace expression
class Recursive < self
register(/\A(?<namespace>#{SCOPE_PATTERN})?\*\z/)
# Initialize object
#
# @return [undefined]
#
# @api private
def initialize(*)
super
@recursion_pattern = Regexp.union(
/\A#{namespace}\z/,
/\A#{namespace}::/,
/\A#{namespace}[.#]/
)
end
# Return matcher
#
# @param [Env::Bootstrap] bootstrap
#
# @return [Matcher]
#
# @api private
#
def matcher(bootstrap)
Matcher::Namespace.new(bootstrap, self)
end
# Return length of match
#
# @param [Expression] expression
#
# @return [Fixnum]
#
# @api private
#
def match_length(expression)
if @recursion_pattern =~ expression.syntax
namespace.length
else
0
end
end
end # Recursive
# Exact namespace expression
class Exact < self
register(/\A(?<namespace>#{SCOPE_PATTERN})\z/)
MATCHER = Matcher::Scope
# Return matcher
#
# @param [Env::Bootstrap] boostrap
#
# @return [Matcher]
#
# @api private
#
def matcher(bootstrap)
Matcher::Scope.new(bootstrap, Mutant.constant_lookup(namespace), self)
end
end # Exact
end # Namespace
end # Namespace
end # Mutant