notype_declarator:
notype_declarator '(' parmlist_or_identifiers %prec '.'
{ $$ = build_nt (CALL_EXPR, $1, $3, NULL_TREE); }
Anyone familiar with yacc rules?
notype_declarator:
notype_declarator '(' parmlist_or_identifiers %prec '.'
{ $$ = build_nt (CALL_EXPR, $1, $3, NULL_TREE); }
Anyone familiar with yacc rules?
It declares that the construct has the same precedence as the '.' operator, which have been specified earlier.
%prec
, actually. It's telling yacc
how to disambiguate that branch of the parse tree relative to other similar branches. –
Byelostok yacc program for showing error for 1) redeclaration of variable 2) Assignment expression error 3) operator missing
© 2022 - 2024 — McMap. All rights reserved.
that construct
? – Crag