view dmd/OverloadSet.d @ 157:b7b61140701d

* added all missing default cases in switch statements + Lexer.getDocComment + Lexer.combineComments
author trass3r
date Thu, 16 Sep 2010 01:34:10 +0200
parents e28b18c23469
children e3afd1303184
line wrap: on
line source

module dmd.OverloadSet;

import dmd.common;
import dmd.Dsymbol;
import dmd.ArrayTypes;

class OverloadSet : Dsymbol
{
    Dsymbols a;		// array of Dsymbols

    this()
	{
		a = new Dsymbols();
	}
	
    void push(Dsymbol s)
	{
		a.push(s);
	}
	
    override OverloadSet isOverloadSet() { return this; }

    override string kind()
	{
		return "overloadset";
	}
}