scanID()

in lib/lexer.js [82:90]


  scanID() {
    let id  = '';
    while (isLetter(this.peek) || this.peek === '_') {
      id += this.peek;
      this.getch();
    }

    return new ID(id);
  }