# File json/lexer.rb, line 50
    def nextchar
      c = self.more?() ? @source[@index,1] : "\0"
      @index += 1
      return(c)
    end