forked from KolibriOS/kolibrios
91ae0dee0b
git-svn-id: svn://kolibrios.org@8456 a494cfbc-eb01-0410-851d-a64ba20cac60
16 lines
251 B
C
Executable File
16 lines
251 B
C
Executable File
#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
|