diff dmd/OverloadSet.d @ 63:cab4c37afb89

A bunch of implementations
author korDen
date Mon, 23 Aug 2010 16:52:24 +0400
parents 10317f0c89a5
children 2e2a5c3f943a
line wrap: on
line diff
--- a/dmd/OverloadSet.d	Mon Aug 23 03:21:32 2010 +0400
+++ b/dmd/OverloadSet.d	Mon Aug 23 16:52:24 2010 +0400
@@ -9,18 +9,18 @@
 
     this()
 	{
-		assert(false);
+		a = new Dsymbols();
 	}
 	
     void push(Dsymbol s)
 	{
-		assert(false);
+		a.push(cast(void*)s);
 	}
 	
     OverloadSet isOverloadSet() { return this; }
 
     string kind()
 	{
-		assert(false);
+		return "overloadset";
 	}
 }
\ No newline at end of file