class MatchItem

def initialize(name, matcher, negate)
  self.name = name
  self.matcher = matcher
  self.negate = negate
end

end