shithub: libmujs

ref: fe8cac61e3bf64900e6f608d05e0c4d0f9b4af5e
dir: /jsrun.h/

View raw version
#ifndef js_run_h
#define js_run_h

js_Environment *jsR_newenvironment(js_State *J, js_Object *variables, js_Environment *outer);

struct js_Environment
{
	js_Environment *outer;
	js_Object *variables;

	js_Environment *gcnext;
	int gcmark;
};

#endif