view dmd/VoidInitializer.d @ 87:b17640f0e4e8

Fixed a bug with a Scope.this(Scope enclosing) being called instead of Scope.clone() method (as a copy ctor replacement)
author korDen
date Mon, 30 Aug 2010 19:56:27 +0400
parents 2e2a5c3f943a
children e28b18c23469
line wrap: on
line source

module dmd.VoidInitializer;

import dmd.Initializer;
import dmd.Type;
import dmd.Loc;
import dmd.Scope;
import dmd.Expression;
import dmd.OutBuffer;
import dmd.HdrGenState;

import dmd.backend.dt_t;
import dmd.backend.Util;

class VoidInitializer : Initializer
{
    Type type = null;		// type that this will initialize to

    this(Loc loc)
	{
		super(loc);
	}
	
    override Initializer syntaxCopy()
	{
		return new VoidInitializer(loc);
	}
	
    override Initializer semantic(Scope sc, Type t)
	{
		//printf("VoidInitializer.semantic(t = %p)\n", t);
		type = t;
		return this;
	}
	
    override Expression toExpression()
	{
		assert(false);
	}
	
    override void toCBuffer(OutBuffer buf, HdrGenState* hgs)
	{
		assert(false);
	}

    override dt_t* toDt()
	{
		/* Void initializers are set to 0, just because we need something
		 * to set them to in the static data segment.
		 */
		dt_t *dt = null;

		dtnzeros(&dt, cast(uint)type.size());
		return dt;
	}

    override VoidInitializer isVoidInitializer() { return this; }
}