comparison CONTRIBUTORS @ 25816:43a8a87fc175

parser: resolve ambiguity where both prefix and primary actions are defined If both actions are defined, a primary-expression action is accepted only if the next token never starts new term. For example, parsed as primary expression: ":" # next token 'end' has no action "(:)" # next token ')' has no action ":+y" # next token '+' is infix operator parsed as prefix operator: ":y" # next token 'y' is primary expression ":-y" # next token '-' is prefix operator This is mostly the same resolution as the infix/suffix rules.
author Yuya Nishihara <yuya@tcha.org>
date Sun, 05 Jul 2015 12:09:27 +0900
parents c29efd272395
children
comparison
equal deleted inserted replaced
25815:e71e5629e006 25816:43a8a87fc175