Changeset 13821 in webkit for trunk/JavaScriptCore/kjs/object.h
- Timestamp:
- Apr 11, 2006, 9:30:21 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/object.h
r13568 r13821 26 26 #define KJS_OBJECT_H 27 27 28 // Objects29 30 // maximum global call stack size. Protects against accidental or31 // malicious infinite recursions. Define to -1 if you want no limit.32 #if PLATFORM(DARWIN)33 // Given OS X stack sizes we run out of stack at about 350 levels.34 // If we improve our stack usage, we can bump this number.35 #define KJS_MAX_STACK 10036 #else37 #define KJS_MAX_STACK 100038 #endif39 40 28 #include "JSType.h" 41 29 #include "interpreter.h" 42 #include "kxmlcore/AlwaysInline.h"43 30 #include "property_map.h" 44 31 #include "property_slot.h" 45 32 #include "scope_chain.h" 33 #include <kxmlcore/AlwaysInline.h> 46 34 47 35 namespace KJS {
Note:
See TracChangeset
for help on using the changeset viewer.