Changeset 13821 in webkit for trunk/JavaScriptCore/kjs/object.cpp
- Timestamp:
- Apr 11, 2006, 9:30:21 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/object.cpp
r13465 r13821 24 24 25 25 #include "config.h" 26 #include "value.h"27 26 #include "object.h" 28 #include "types.h" 29 #include " interpreter.h"27 28 #include "error_object.h" 30 29 #include "lookup.h" 30 #include "nodes.h" 31 #include "operations.h" 31 32 #include "reference_list.h" 32 33 #include <assert.h>34 33 #include <math.h> 35 #include <stdio.h> 36 37 #include "internal.h" 38 #include "collector.h" 39 #include "operations.h" 40 #include "error_object.h" 41 #include "nodes.h" 34 35 // maximum global call stack size. Protects against accidental or 36 // malicious infinite recursions. Define to -1 if you want no limit. 37 #if PLATFORM(DARWIN) 38 // Given OS X stack sizes we run out of stack at about 350 levels. 39 // If we improve our stack usage, we can bump this number. 40 #define KJS_MAX_STACK 100 41 #else 42 #define KJS_MAX_STACK 1000 43 #endif 42 44 43 45 #define JAVASCRIPT_CALL_TRACING 0
Note:
See TracChangeset
for help on using the changeset viewer.