Fix code formatting

This commit is contained in:
Dan Kubb 2013-07-29 14:43:42 -07:00
parent 011c99d3fd
commit 6236f085fb
2 changed files with 6 additions and 3 deletions

View file

@ -3,13 +3,14 @@
module Mutant
class CLI
class Classifier
# Explicit method classifier
class Method < self
register
TABLE = {
'.' => Matcher::Methods::Singleton,
'#' => Matcher::Methods::Instance
'#' => Matcher::Methods::Instance,
}.freeze
REGEXP =

View file

@ -31,15 +31,17 @@ module Mutant
# Recursive namespace classifier
class Recursive < self
REGEXP = /\A(#{SCOPE_PATTERN})\*\z/.freeze
REGEXP = /\A(#{SCOPE_PATTERN})\*\z/.freeze
MATCHER = Matcher::Namespace
register
end # Recursive
# Recursive namespace classifier
class Flat < self
REGEXP = /\A(#{SCOPE_PATTERN})\z/.freeze
REGEXP = /\A(#{SCOPE_PATTERN})\z/.freeze
MATCHER = Matcher::Scope
register
end # Flat