view dmd/AnonymousAggregateDeclaration.d @ 102:3ddadd0c4534

wrong name.length check fixed (greetings to Trass3r!)
author korDen
date Tue, 31 Aug 2010 17:07:01 +0400
parents 10317f0c89a5
children e28b18c23469
line wrap: on
line source

module dmd.AnonymousAggregateDeclaration;

import dmd.AggregateDeclaration;
import dmd.Loc;

class AnonymousAggregateDeclaration : AggregateDeclaration
{
    this()
    {
		super(Loc(0), null);
    }

    AnonymousAggregateDeclaration isAnonymousAggregateDeclaration() { return this; }
}