class Fear::Extractor::Grammar::FloatLiteral

Public Instance Methods

to_matcher() click to toggle source
# File lib/fear/extractor/grammar.rb, line 56
def to_matcher
  ValueMatcher.new(value: value, node: self)
end
value() click to toggle source
# File lib/fear/extractor/grammar.rb, line 60
def value
  Float(text_value)
end