class CodeRay::Encoders::Debug

def text_token text, kind

def text_token text, kind
  if kind == :space
    @out << text
  else
    # TODO: Escape (
    text = text.gsub(/[)\\]/, '\\\\\0')  # escape ) and \
    @out << kind.to_s << '(' << text << ')'
  end
end