Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
7639 views
1
#ifndef js_run_h
2
#define js_run_h
3
4
js_Environment *jsR_newenvironment(js_State *J, js_Object *variables, js_Environment *outer);
5
6
struct js_Environment
7
{
8
js_Environment *outer;
9
js_Object *variables;
10
11
js_Environment *gcnext;
12
int gcmark;
13
};
14
15
#endif
16
17