Skip to content

Commit

Permalink
minor style changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Egbert.Voigt authored and Egbert.Voigt committed Mar 24, 2020
1 parent 5c33afb commit 36a6987
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions source/antlr/v4/runtime/BufferedTokenStream.d
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,6 @@ class BufferedTokenStream : TokenStream
*/
private size_t index_ = size_t.max;

//private bool first_token = true;

/**
* Indicates whether the {@link Token#EOF} token has been fetched from
* {@link #tokenSource} and added to {@link #tokens}. This field improves
Expand Down Expand Up @@ -234,7 +232,7 @@ class BufferedTokenStream : TokenStream

public dchar LA(int i)
{
return LT(i).getType();
return LT(i).getType;
}

public Token LB(int k)
Expand Down

0 comments on commit 36a6987

Please sign in to comment.