class SassC::Script::ValueConversion::String

def to_native(opts = {})

def to_native(opts = {})
  if opts[:quote] == :none || @value.type == :identifier
    Native::make_string(@value.to_s)
  else
    Native::make_qstring(@value.to_s)
  end
end