Searched refs:GrammarError (Results 1 – 1 of 1) sorted by relevance
| /OK3568_Linux_fs/yocto/poky/bitbake/lib/ply/ |
| H A D | yacc.py | 1314 class GrammarError(YaccError): pass class 1370 raise GrammarError("Precedence already specified for terminal '%s'" % term) 1372 raise GrammarError("Associativity must be one of 'left','right', or 'nonassoc'") 1395 …raise GrammarError("%s:%d: Illegal rule name '%s'. Already defined as a token" % (file,line,prodna… 1397 …raise GrammarError("%s:%d: Illegal rule name '%s'. error is a reserved word" % (file,line,prodname… 1399 raise GrammarError("%s:%d: Illegal rule name '%s'" % (file,line,prodname)) 1407 …raise GrammarError("%s:%d: Literal token %s in rule '%s' may only be a single character" % (file,l… 1415 … raise GrammarError("%s:%d: Illegal name '%s' in rule '%s'" % (file,line,s, prodname)) 1420 raise GrammarError("%s:%d: Syntax error. Nothing follows %%prec" % (file,line)) 1422 …raise GrammarError("%s:%d: Syntax error. %%prec can only appear at the end of a grammar rule" % (f… [all …]
|