diff dmd/TypeTuple.d @ 56:51605de93870

TupleExp.optimize UnrolledLoopStatement.ctor UnrolledLoopStatement.semantic UnrolledLoopStatement.blockExit OrOrExp.checkSideEffect FuncExp.syntaxCopy FuncLiteralDeclaration.syntaxCopy WhileStatement.hasBreak StructInitializer.toExpression StructLiteralExp.ctor StructLiteralExp.optimize BinExp.commonSemanticAssign ModAssignExp.opId Argument.isLazyArray CommaExp.implicitConvTo CommaExp.castTo TypeClass.isBaseOf createTypeInfoArray TypeTuple.getTypeInfoDeclaration TypeInfoTupleDeclaration.ctor TypeNext.constConv XorExp.implicitConvTo TemplateParameter.isTemplateValueParameter
author korDen
date Sat, 21 Aug 2010 14:16:53 +0400
parents ccbc1e0bb3f0
children 2e2a5c3f943a
line wrap: on
line diff
--- a/dmd/TypeTuple.d	Sat Aug 21 13:28:16 2010 +0400
+++ b/dmd/TypeTuple.d	Sat Aug 21 14:16:53 2010 +0400
@@ -3,6 +3,7 @@
 import dmd.Type;
 import dmd.ArrayTypes;
 import dmd.MOD;
+import dmd.TypeInfoTupleDeclaration;
 import dmd.TypeInfoDeclaration;
 import dmd.Expression;
 import dmd.Loc;
@@ -170,6 +171,6 @@
 
 	TypeInfoDeclaration getTypeInfoDeclaration()
 	{
-		assert(false);
+		return new TypeInfoTupleDeclaration(this);
 	}
 }