diff dmd/UnrolledLoopStatement.d @ 0:10317f0c89a5

Initial commit
author korDen
date Sat, 24 Oct 2009 08:42:06 +0400
parents
children 51605de93870
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/dmd/UnrolledLoopStatement.d	Sat Oct 24 08:42:06 2009 +0400
@@ -0,0 +1,92 @@
+module dmd.UnrolledLoopStatement;
+
+import dmd.Expression;
+import dmd.Statement;
+import dmd.InterState;
+import dmd.ArrayTypes;
+import dmd.OutBuffer;
+import dmd.Loc;
+import dmd.Scope;
+import dmd.InlineCostState;
+import dmd.InlineDoState;
+import dmd.IRState;
+import dmd.HdrGenState;
+import dmd.InlineScanState;
+import dmd.BE;
+
+class UnrolledLoopStatement : Statement
+{
+	Statements statements;
+
+	this(Loc loc, Statements statements)
+	{
+		assert(false);
+		super(loc);
+	}
+
+	Statement syntaxCopy()
+	{
+		assert(false);
+	}
+
+	Statement semantic(Scope sc)
+	{
+		assert(false);
+	}
+
+	bool hasBreak()
+	{
+		assert(false);
+	}
+
+	bool hasContinue()
+	{
+		assert(false);
+	}
+
+	bool usesEH()
+	{
+		assert(false);
+	}
+
+	BE blockExit()
+	{
+		assert(false);
+	}
+
+	bool comeFrom()
+	{
+		assert(false);
+	}
+
+	Expression interpret(InterState* istate)
+	{
+		assert(false);
+	}
+
+	void toCBuffer(OutBuffer buf, HdrGenState* hgs)
+	{
+		assert(false);
+	}
+
+	int inlineCost(InlineCostState* ics)
+	{
+		assert(false);
+	}
+
+	Expression doInline(InlineDoState ids)
+	{
+		assert(false);
+	}
+
+	Statement inlineScan(InlineScanState* iss)
+	{
+		assert(false);
+	}
+
+	void toIR(IRState* irs)
+	{
+		assert(false);
+	}
+}
+