view dmd/CompoundDeclarationStatement.d @ 72:2e2a5c3f943a

reduced warnings by adding override to the methods think this also normalizes different line endings used all over the place
author Trass3r
date Sat, 28 Aug 2010 16:19:48 +0200
parents b7d29f613539
children e28b18c23469
line wrap: on
line source

module dmd.CompoundDeclarationStatement;

import dmd.CompoundStatement;
import dmd.Loc;
import dmd.ArrayTypes;
import dmd.Statement;
import dmd.OutBuffer;
import dmd.HdrGenState;

class CompoundDeclarationStatement : CompoundStatement
{
    this(Loc loc, Statements s)
	{
		super(loc, s);
		///statements = s;
	}
	
    override Statement syntaxCopy()
	{
		Statements a = new Statements();
		a.setDim(statements.dim);
		for (size_t i = 0; i < statements.dim; i++)
		{	
			Statement s = cast(Statement)statements.data[i];
			if (s)
				s = s.syntaxCopy();
			a.data[i] = cast(void*)s;
		}
		CompoundDeclarationStatement cs = new CompoundDeclarationStatement(loc, a);
		return cs;
	}
	
    override void toCBuffer(OutBuffer buf, HdrGenState* hgs)
	{
		assert(false);
	}
}