Home | History | Annotate | Download | only in sh

Lines Matching refs:NIF

317 		n1 = (union node *)stalloc(sizeof (struct nif));
318 n1->type = NIF;
319 n1->nif.test = list(0);
322 n1->nif.ifpart = list(0);
325 n2->nif.elsepart = (union node *)stalloc(sizeof (struct nif));
326 n2 = n2->nif.elsepart;
327 n2->type = NIF;
328 n2->nif.test = list(0);
331 n2->nif.ifpart = list(0);
334 n2->nif.elsepart = list(0);
336 n2->nif.elsepart = NULL;