# File test/src/parser_test.rb, line 39
  def current(code, index)
    return "EOF" if code.length <= index
    c = code[index]
    if c.kind_of? Fixnum
      "'"<<c<<"'"
    else
      c.to_s
    end
  end