view dmd/InterState.d @ 92:0c891ec48515

Fixed another bug related to copy ctor
author korDen
date Mon, 30 Aug 2010 23:43:38 +0400
parents 7e0d548de9e6
children e28b18c23469
line wrap: on
line source

module dmd.InterState;

import dmd.FuncDeclaration;
import dmd.Dsymbol;
import dmd.Expression;
import dmd.Statement;

class InterState
{
	this()
	{
		vars = new Dsymbols();
	}
	
    InterState caller;		// calling function's InterState
    FuncDeclaration fd;	// function being interpreted
    Dsymbols vars;		// variables used in this function
    Statement start;		// if !=NULL, start execution at this statement
    Statement gotoTarget;	// target of EXP_GOTO_INTERPRET result
    Expression localThis;	// value of 'this', or NULL if none
}