Lines Matching refs:fld
94 * fld = the starting AST node for the lambda function
98 * The serialization of `fld` allocated with mem.
100 private string getSerialization(FuncLiteralDeclaration fld, Scope* sc)
102 scope serVisitor = new SerializeVisitor(fld.parent._scope);
103 fld.accept(serVisitor);
132 * fld = the lambda function for which the serialization is computed
134 override void visit(FuncLiteralDeclaration fld)
136 assert(fld.type.ty != Terror);
138 printf("FuncLiteralDeclaration: %s\n", fld.toChars());
140 TypeFunction tf = cast(TypeFunction) fld.type;
166 ReturnStatement rs = fld.fbody.endsWithReturnStatement();