Searched refs:GrammarError (Results 1 – 1 of 1) sorted by relevance
| /openbmc/openbmc/poky/bitbake/lib/ply/ |
| H A D | yacc.py | 1313 class GrammarError(YaccError): pass class 1369 raise GrammarError("Precedence already specified for terminal '%s'" % term) 1371 raise GrammarError("Associativity must be one of 'left','right', or 'nonassoc'") 1394 …raise GrammarError("%s:%d: Illegal rule name '%s'. Already defined as a token" % (file,line,prodna… 1396 …raise GrammarError("%s:%d: Illegal rule name '%s'. error is a reserved word" % (file,line,prodname… 1398 raise GrammarError("%s:%d: Illegal rule name '%s'" % (file,line,prodname)) 1406 …raise GrammarError("%s:%d: Literal token %s in rule '%s' may only be a single character" % (file,l… 1414 … raise GrammarError("%s:%d: Illegal name '%s' in rule '%s'" % (file,line,s, prodname)) 1419 raise GrammarError("%s:%d: Syntax error. Nothing follows %%prec" % (file,line)) 1421 …raise GrammarError("%s:%d: Syntax error. %%prec can only appear at the end of a grammar rule" % (f… [all …]
|