Changeset 43372 in webkit for trunk/JavaScriptCore/runtime/JSGlobalObjectFunctions.h
- Timestamp:
- May 7, 2009, 3:52:19 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/JSGlobalObjectFunctions.h
r43122 r43372 37 37 // is a 0.5% reduction. 38 38 39 JSValue globalFuncEval(ExecState*, JSObject*, JSValue, const ArgList&);40 JSValue globalFuncParseInt(ExecState*, JSObject*, JSValue, const ArgList&);41 JSValue globalFuncParseFloat(ExecState*, JSObject*, JSValue, const ArgList&);42 JSValue globalFuncIsNaN(ExecState*, JSObject*, JSValue, const ArgList&);43 JSValue globalFuncIsFinite(ExecState*, JSObject*, JSValue, const ArgList&);44 JSValue globalFuncDecodeURI(ExecState*, JSObject*, JSValue, const ArgList&);45 JSValue globalFuncDecodeURIComponent(ExecState*, JSObject*, JSValue, const ArgList&);46 JSValue globalFuncEncodeURI(ExecState*, JSObject*, JSValue, const ArgList&);47 JSValue globalFuncEncodeURIComponent(ExecState*, JSObject*, JSValue, const ArgList&);48 JSValue globalFuncEscape(ExecState*, JSObject*, JSValue, const ArgList&);49 JSValue globalFuncUnescape(ExecState*, JSObject*, JSValue, const ArgList&);39 JSValue JSC_HOST_CALL globalFuncEval(ExecState*, JSObject*, JSValue, const ArgList&); 40 JSValue JSC_HOST_CALL globalFuncParseInt(ExecState*, JSObject*, JSValue, const ArgList&); 41 JSValue JSC_HOST_CALL globalFuncParseFloat(ExecState*, JSObject*, JSValue, const ArgList&); 42 JSValue JSC_HOST_CALL globalFuncIsNaN(ExecState*, JSObject*, JSValue, const ArgList&); 43 JSValue JSC_HOST_CALL globalFuncIsFinite(ExecState*, JSObject*, JSValue, const ArgList&); 44 JSValue JSC_HOST_CALL globalFuncDecodeURI(ExecState*, JSObject*, JSValue, const ArgList&); 45 JSValue JSC_HOST_CALL globalFuncDecodeURIComponent(ExecState*, JSObject*, JSValue, const ArgList&); 46 JSValue JSC_HOST_CALL globalFuncEncodeURI(ExecState*, JSObject*, JSValue, const ArgList&); 47 JSValue JSC_HOST_CALL globalFuncEncodeURIComponent(ExecState*, JSObject*, JSValue, const ArgList&); 48 JSValue JSC_HOST_CALL globalFuncEscape(ExecState*, JSObject*, JSValue, const ArgList&); 49 JSValue JSC_HOST_CALL globalFuncUnescape(ExecState*, JSObject*, JSValue, const ArgList&); 50 50 #ifndef NDEBUG 51 JSValue globalFuncJSCPrint(ExecState*, JSObject*, JSValue, const ArgList&);51 JSValue JSC_HOST_CALL globalFuncJSCPrint(ExecState*, JSObject*, JSValue, const ArgList&); 52 52 #endif 53 53
Note:
See TracChangeset
for help on using the changeset viewer.