class Prism::Translation::Parser::Lexer

def parse_float(value)

Parse a float from the string representation.
def parse_float(value)
  Float(value)
rescue ArgumentError
  0.0
end