File tree 1 file changed +7
-3
lines changed
1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -78,17 +78,19 @@ typedef struct js_StackTrace js_StackTrace;
78
78
/* Limits */
79
79
80
80
#ifndef JS_STACKSIZE
81
- #define JS_STACKSIZE 256 /* value stack size */
81
+ #define JS_STACKSIZE 4096 /* value stack size */
82
82
#endif
83
83
#ifndef JS_ENVLIMIT
84
- #define JS_ENVLIMIT 128 /* environment stack size */
84
+ #define JS_ENVLIMIT 1024 /* environment stack size */
85
85
#endif
86
86
#ifndef JS_TRYLIMIT
87
87
#define JS_TRYLIMIT 64 /* exception stack size */
88
88
#endif
89
+
89
90
#ifndef JS_ARRAYLIMIT
90
91
#define JS_ARRAYLIMIT (1<<26) /* limit arrays to 64M entries (1G of flat array data) */
91
92
#endif
93
+
92
94
#ifndef JS_GCFACTOR
93
95
/*
94
96
* GC will try to trigger when memory usage is this value times the minimum
@@ -100,9 +102,11 @@ typedef struct js_StackTrace js_StackTrace;
100
102
*/
101
103
#define JS_GCFACTOR 5.0 /* memory overhead factor >= 1.0 */
102
104
#endif
105
+
103
106
#ifndef JS_ASTLIMIT
104
- #define JS_ASTLIMIT 100 /* max nested expressions */
107
+ #define JS_ASTLIMIT 400 /* max nested expressions */
105
108
#endif
109
+
106
110
#ifndef JS_STRLIMIT
107
111
#define JS_STRLIMIT (1<<28) /* max string length */
108
112
#endif
You can’t perform that action at this time.
0 commit comments