diff dmd/CompileDeclaration.d @ 0:10317f0c89a5

Initial commit
author korDen
date Sat, 24 Oct 2009 08:42:06 +0400
parents
children 427f8aa74d28 f2413c9183d1
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/dmd/CompileDeclaration.d	Sat Oct 24 08:42:06 2009 +0400
@@ -0,0 +1,51 @@
+module dmd.CompileDeclaration;
+
+import dmd.AttribDeclaration;
+import dmd.Expression;
+import dmd.ScopeDsymbol;
+import dmd.Dsymbol;
+import dmd.Loc;
+import dmd.Scope;
+import dmd.OutBuffer;
+import dmd.HdrGenState;
+
+// Mixin declarations
+
+class CompileDeclaration : AttribDeclaration
+{
+    Expression exp;
+
+    ScopeDsymbol *sd;
+    int compiled;
+
+    this(Loc loc, Expression exp)
+	{
+		assert(false);
+		super(null);
+	}
+	
+    Dsymbol syntaxCopy(Dsymbol s)
+	{
+		assert(false);
+	}
+	
+    bool addMember(Scope sc, ScopeDsymbol sd, int memnum)
+	{
+		assert(false);
+	}
+	
+    void compileIt(Scope sc)
+	{
+		assert(false);
+	}
+	
+    void semantic(Scope sc)
+	{
+		assert(false);
+	}
+	
+    void toCBuffer(OutBuffer buf, HdrGenState* hgs)
+	{
+		assert(false);
+	}
+}
\ No newline at end of file