view dmd/HdrGenState.d @ 175:94b6033c07f3

get rid of globals malloc -> GC.malloc
author korDen
date Sun, 10 Oct 2010 03:48:06 +0400
parents 10317f0c89a5
children
line wrap: on
line source

module dmd.HdrGenState;

struct HdrGenState
{
    int hdrgen;		// 1 if generating header file
    int ddoc;		// 1 if generating Ddoc file
    int console;	// 1 if writing to console
    int tpltMember;
    int inCallExp;
    int inPtrExp;
    int inSlcExp;
    int inDotExp;
    int inBinExp;
    int inArrExp;
    int emitInst;
    
	struct FLinit_
    {
        int init;
        int decl;
    }
	
	FLinit_ FLinit;
}