Home | History | Annotate | Download | only in dmd

Lines Matching refs:tfld

848             TypeFunction tfld = null;
855 tfld = cast(TypeFunction)fdapply.type.typeSemantic(loc, sc2);
860 tfld = cast(TypeFunction)tab.nextOf();
862 //printf("tfld = %s\n", tfld.toChars());
863 if (tfld.parameterList.parameters.dim == 1)
865 Parameter p = tfld.parameterList[0];
870 tfld = cast(TypeFunction)t.nextOf();
876 FuncExp flde = foreachBodyToFunction(sc2, fs, tfld);
1611 * tfld = type of function literal to be created (type of opApply() function if any), can be null
1616 static FuncExp foreachBodyToFunction(Scope* sc, ForeachStatement fs, TypeFunction tfld)
1627 if (tfld)
1629 Parameter prm = tfld.parameterList[i];