diff dmd/Dsymbol.d @ 50:adf6f7f216ea

CondExp.toCBuffer IsExp.toCBuffer TemplateValueParameter.toCBuffer Dsymbol.search TemplateDeclaration.overloadInsert bug fixed
author korDen
date Sat, 21 Aug 2010 10:38:26 +0400
parents ccbc1e0bb3f0
children 51605de93870
line wrap: on
line diff
--- a/dmd/Dsymbol.d	Sat Aug 21 07:53:20 2010 +0400
+++ b/dmd/Dsymbol.d	Sat Aug 21 10:38:26 2010 +0400
@@ -450,9 +450,19 @@
 		// Most Dsymbols aren't functions
 	}
 	
+	/*********************************************
+	 * Search for ident as member of s.
+	 * Input:
+	 *	flags:	1	don't find private members
+	 *		2	don't give error messages
+	 *		4	return null if ambiguous
+	 * Returns:
+	 *	null if not found
+	 */
     Dsymbol search(Loc loc, Identifier ident, int flags)
 	{
-		assert(false);
+		//printf("Dsymbol.search(this=%p,%s, ident='%s')\n", this, toChars(), ident.toChars());
+		return null;
 	}
 	
 	/***************************************