diff dmd/TypeInfoFunctionDeclaration.d @ 73:ef02e2e203c2

Updating to dmd2.033
author korDen
date Sat, 28 Aug 2010 19:42:41 +0400
parents
children 43073c7c7769
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/dmd/TypeInfoFunctionDeclaration.d	Sat Aug 28 19:42:41 2010 +0400
@@ -0,0 +1,20 @@
+module dmd.TypeInfoFunctionDeclaration;
+
+import dmd.Type;
+import dmd.TypeInfoDeclaration;
+import dmd.backend.dt_t;
+
+class TypeInfoFunctionDeclaration : TypeInfoDeclaration
+{
+	this(Type tinfo)
+	{
+		super(tinfo, 0);
+        type = Type.typeinfofunction.type;
+	}
+
+	void toDt(dt_t** pdt)
+	{
+		assert(false);
+	}
+}
+