Fix code formatting
This commit is contained in:
parent
011c99d3fd
commit
6236f085fb
2 changed files with 6 additions and 3 deletions
|
@ -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 =
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue