class Fear::Extractor::Grammar::IdentifiedMatcher

Public Instance Methods

to_matcher() click to toggle source
# File lib/fear/extractor/grammar.rb, line 169
def to_matcher
  identifier, matcher = elements.values_at(0, -1)
  identifier.to_matcher.and(matcher.to_matcher)
end