module Haml::Precompiler

def parse_literal_value(text)

def parse_literal_value(text)
  return nil unless text
  text.match(LITERAL_VALUE_REGEX)
  # $2 holds the value matched by a symbol, but is nil for a string match
  # $5 holds the value matched by a string
  $2 || $5
end