diff dmd/DVCondition.d @ 0:10317f0c89a5

Initial commit
author korDen
date Sat, 24 Oct 2009 08:42:06 +0400
parents
children a8b50ff7f201
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/dmd/DVCondition.d	Sat Oct 24 08:42:06 2009 +0400
@@ -0,0 +1,26 @@
+module dmd.DVCondition;
+
+import dmd.Condition;
+import dmd.Identifier;
+import dmd.Module;
+import dmd.Loc;
+
+class DVCondition : Condition
+{
+    uint level;
+    Identifier ident;
+    Module mod;
+
+    this(Module mod, uint level, Identifier ident)
+	{
+		super(Loc(0));
+		this.mod = mod;
+		this.level = level;
+		this.ident = ident;
+	}
+
+    Condition syntaxCopy()
+	{
+		assert(false);
+	}
+}
\ No newline at end of file