diff dmd/InExp.d @ 0:10317f0c89a5

Initial commit
author korDen
date Sat, 24 Oct 2009 08:42:06 +0400
parents
children d42cd5917df4
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/dmd/InExp.d	Sat Oct 24 08:42:06 2009 +0400
@@ -0,0 +1,46 @@
+module dmd.InExp;
+
+import dmd.Expression;
+import dmd.Identifier;
+import dmd.Loc;
+import dmd.Scope;
+import dmd.IRState;
+import dmd.BinExp;
+import dmd.TOK;
+
+import dmd.backend.elem;
+
+class InExp : BinExp
+{
+	this(Loc loc, Expression e1, Expression e2)
+	{
+		assert(false);
+		super(loc, TOK.init, 0, e1, e2);
+	}
+
+	Expression semantic(Scope sc)
+	{
+		assert(false);
+	}
+
+	int isBit()
+	{
+		assert(false);
+	}
+
+	Identifier opId()
+	{
+		assert(false);
+	}
+
+	Identifier opId_r()
+	{
+		assert(false);
+	}
+
+	elem* toElem(IRState* irs)
+	{
+		assert(false);
+	}
+}
+