php-parser/test/code/parser/errorHandling
Nikita Popov d3d1ee470a Fix #738 incorrect start line for traits
Empty productions are supposed to be assigned the start attributes
of the lookahead token. Currently, this happens by assigning above
the current stack position when the token it read.

This fails in a situation where we first reduce an empty production
higher up in the stack, and then again reduce an empty production
lower in the stack, without consuming the lookahead token in the
meantime.

Fix this by moving the assignment into the reduction phase. We
also need to do this for error productions, which are effectively
empty.
2020-12-20 10:52:47 +01:00
..
eofError.test Perform automated test update 2017-01-19 22:25:22 +01:00
lexerErrors.test Insert T_BAD_CHARACTER tokens for missing characters 2019-06-30 11:43:48 +02:00
recovery.test Fix #738 incorrect start line for traits 2020-12-20 10:52:47 +01:00