diff dmd/LineInitExp.d @ 0:10317f0c89a5

Initial commit
author korDen
date Sat, 24 Oct 2009 08:42:06 +0400
parents
children 427f8aa74d28 ddae60498573
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/dmd/LineInitExp.d	Sat Oct 24 08:42:06 2009 +0400
@@ -0,0 +1,26 @@
+module dmd.LineInitExp;
+
+import dmd.Expression;
+import dmd.Loc;
+import dmd.Scope;
+import dmd.DefaultInitExp;
+import dmd.TOK;
+
+class LineInitExp : DefaultInitExp
+{
+	this(Loc loc)
+	{
+		assert(false);
+		super(loc, TOK.init, 0);
+	}
+
+	Expression semantic(Scope sc)
+	{
+		assert(false);
+	}
+
+	Expression resolve(Loc loc, Scope sc)
+	{
+		assert(false);
+	}
+}
\ No newline at end of file