Class: Mutant::Matcher::Method::Metaclass Private

Inherits:
Mutant::Matcher::Method show all
Defined in:
lib/mutant/matcher/method/metaclass.rb

Overview

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

Matcher for metaclass methods i.e. ones defined using class << self or class << CONSTANT. It might?? work for methods defined like class << obj, but I don’t think the plumbing will be in place in the subject for that to work

Defined Under Namespace

Classes: Evaluator

Constant Summary

Constants inherited from Mutant::Matcher::Method

BLACKLIST, CLOSURE_WARNING_FORMAT, SOURCE_LOCATION_WARNING_FORMAT

Class Method Summary collapse

Methods inherited from Mutant::Matcher::Method

#call

Methods inherited from Mutant::Matcher

#call, from_config, ignore_subject?

Class Method Details

.new(scope, method_name) ⇒ Matcher::Method::Singleton

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

New singleton method matcher

Parameters:

  • scope (Class, Module)
  • method_name (Symbol)

Returns:



18
19
20
# File 'lib/mutant/matcher/method/metaclass.rb', line 18

def self.new(scope, method_name)
  super(scope, method_name, Evaluator)
end