view dmd/AnonymousAggregateDeclaration.d @ 192:eb38fdcb3e62 default tip

updated to compile with dmd2.062
author korDen
date Sat, 02 Mar 2013 01:25:52 -0800
parents b0d41ff5e0df
children
line wrap: on
line source

module dmd.AnonymousAggregateDeclaration;

import dmd.common;
import dmd.AggregateDeclaration;
import dmd.Loc;

import dmd.DDMDExtensions;

class AnonymousAggregateDeclaration : AggregateDeclaration
{
	mixin insertMemberExtension!(typeof(this));

    this()
    {
		register();
		super(Loc(0), null);
    }

    AnonymousAggregateDeclaration isAnonymousAggregateDeclaration() { return this; }
}