Home
last modified time | relevance | path

Searched refs:c_checkcall (Results 1 – 4 of 4) sorted by relevance

/dports/net/dgd/dgd-1.4.23/src/comp/
H A Dcompile.h71 extern node *c_checkcall (node*, int);
H A Dparser.y584 { $$ = c_checkcall(c_funcall($1, $3), typechecking); }
601 $$ = c_checkcall(c_arrow($1, $3, $5), typechecking);
H A Dparser.c2834 { yyval.node = c_checkcall(c_funcall(yyvsp[-3].node, yyvsp[-1].node), typechecking); } in yyparse()
2863 yyval.node = c_checkcall(c_arrow(yyvsp[-5].node, yyvsp[-3].node, yyvsp[-1].node), typechecking); in yyparse()
H A Dcompile.c2260 node *c_checkcall(node *n, int typechecked) in c_checkcall() function