class Fear::Extractor::Grammar::TypedIdentifier

Public Instance Methods

to_matcher() click to toggle source
# File lib/fear/extractor/grammar.rb, line 162
def to_matcher
  identifier, type = elements.values_at(0, 2)
  type.to_matcher.and(identifier.to_matcher)
end