Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion contributors.txt
Original file line number Diff line number Diff line change
Expand Up @@ -240,4 +240,5 @@ YYYY/MM/DD, github id, Full name, email
2020/02/02, carocad, Camilo Roca, [email protected]
2020/02/10, julibert, Julián Bermúdez Ortega, [email protected]
2020/02/21, StochasticTinkr, Daniel Pitts, [email protected]
2020/03/17, XsongyangX, Song Yang, [email protected]
2020/03/17, XsongyangX, Song Yang, [email protected]
2020/04/07, deniskyashif, Denis Kyashif, [email protected]
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,7 @@ public virtual void Consume()
System.Diagnostics.Debug.Assert(LA(1) == IntStreamConstants.EOF);
throw new InvalidOperationException("cannot consume EOF");
}
//System.out.println("prev p="+p+", c="+(char)data[p]);
if (p < n)
else
{
p++;
}
Expand Down