view dmd/DVCondition.d @ 0:10317f0c89a5

Initial commit
author korDen
date Sat, 24 Oct 2009 08:42:06 +0400
parents
children a8b50ff7f201
line wrap: on
line source

module dmd.DVCondition;

import dmd.Condition;
import dmd.Identifier;
import dmd.Module;
import dmd.Loc;

class DVCondition : Condition
{
    uint level;
    Identifier ident;
    Module mod;

    this(Module mod, uint level, Identifier ident)
	{
		super(Loc(0));
		this.mod = mod;
		this.level = level;
		this.ident = ident;
	}

    Condition syntaxCopy()
	{
		assert(false);
	}
}