view dmd/InterState.d @ 146:af7e5ebef6ad

redundant extern(C)
author Eldar Insafutdinov <e.insafutdinov@gmail.com>
date Tue, 14 Sep 2010 23:34:50 +0100
parents e28b18c23469
children e3afd1303184
line wrap: on
line source

module dmd.InterState;

import dmd.common;
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
}