class Fear::Extractor::Grammar::NamedArraySplat

Public Instance Methods

name() click to toggle source
# File lib/fear/extractor/grammar.rb, line 146
def name
  text_value[1..-1].to_sym
end
to_matcher() click to toggle source
# File lib/fear/extractor/grammar.rb, line 142
def to_matcher
  NamedArraySplatMatcher.new(name: name, node: self)
end