view dmd/AliasThis.d @ 0:10317f0c89a5

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

module dmd.AliasThis;

import dmd.Dsymbol;
import dmd.Identifier;
import dmd.Loc;
import dmd.Scope;
import dmd.OutBuffer;
import dmd.HdrGenState;

class AliasThis : Dsymbol
{
   // alias Identifier this;
    Identifier ident;

    this(Loc loc, Identifier ident)
	{
		assert(false);
	}

    Dsymbol syntaxCopy(Dsymbol)
	{
		assert(false);
	}
	
    void semantic(Scope sc)
	{
		assert(false);
	}
	
    string kind()
	{
		assert(false);
	}
		
    void toCBuffer(OutBuffer buf, HdrGenState* hgs)
	{
		assert(false);
	}
	
    AliasThis isAliasThis() { return this; }
}