-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The end attributes previously were always assigned from the last read token, which does not necessarily correspond to the last token in the reduced rule. In particular this occurs if the parser read a new token and based on that lookahead decided to reduce a rule. The behavior was only correct if the newly read token was first shifted and then the rule was reduced. This is fixed by buffering the endAttributes of the new token in a temporary variable and only assigning them once the token is shifted.
- Loading branch information
Showing
2 changed files
with
12 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters