Changeset 29508 in webkit for trunk/JavaScriptCore/kjs/array_object.h
- Timestamp:
- Jan 15, 2008, 10:43:15 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/array_object.h
r27608 r29508 49 49 }; 50 50 51 #define FOR_EACH_CLASS(macro) \ 52 macro(ArrayProtoFuncToString) \ 53 macro(ArrayProtoFuncToLocaleString) \ 54 macro(ArrayProtoFuncConcat) \ 55 macro(ArrayProtoFuncJoin) \ 56 macro(ArrayProtoFuncPop) \ 57 macro(ArrayProtoFuncPush) \ 58 macro(ArrayProtoFuncReverse) \ 59 macro(ArrayProtoFuncShift) \ 60 macro(ArrayProtoFuncSlice) \ 61 macro(ArrayProtoFuncSort) \ 62 macro(ArrayProtoFuncSplice) \ 63 macro(ArrayProtoFuncUnShift) \ 64 macro(ArrayProtoFuncEvery) \ 65 macro(ArrayProtoFuncForEach) \ 66 macro(ArrayProtoFuncSome) \ 67 macro(ArrayProtoFuncIndexOf) \ 68 macro(ArrayProtoFuncFilter) \ 69 macro(ArrayProtoFuncMap) \ 70 macro(ArrayProtoFuncLastIndexOf) \ 71 72 FOR_EACH_CLASS(KJS_IMPLEMENT_PROTOTYPE_FUNCTION_WITH_CREATE) 73 #undef FOR_EACH_CLASS 51 JSValue* arrayProtoFuncToString(ExecState*, JSObject*, const List&); 52 JSValue* arrayProtoFuncToLocaleString(ExecState*, JSObject*, const List&); 53 JSValue* arrayProtoFuncConcat(ExecState*, JSObject*, const List&); 54 JSValue* arrayProtoFuncJoin(ExecState*, JSObject*, const List&); 55 JSValue* arrayProtoFuncPop(ExecState*, JSObject*, const List&); 56 JSValue* arrayProtoFuncPush(ExecState*, JSObject*, const List&); 57 JSValue* arrayProtoFuncReverse(ExecState*, JSObject*, const List&); 58 JSValue* arrayProtoFuncShift(ExecState*, JSObject*, const List&); 59 JSValue* arrayProtoFuncSlice(ExecState*, JSObject*, const List&); 60 JSValue* arrayProtoFuncSort(ExecState*, JSObject*, const List&); 61 JSValue* arrayProtoFuncSplice(ExecState*, JSObject*, const List&); 62 JSValue* arrayProtoFuncUnShift(ExecState*, JSObject*, const List&); 63 JSValue* arrayProtoFuncEvery(ExecState*, JSObject*, const List&); 64 JSValue* arrayProtoFuncForEach(ExecState*, JSObject*, const List&); 65 JSValue* arrayProtoFuncSome(ExecState*, JSObject*, const List&); 66 JSValue* arrayProtoFuncIndexOf(ExecState*, JSObject*, const List&); 67 JSValue* arrayProtoFuncFilter(ExecState*, JSObject*, const List&); 68 JSValue* arrayProtoFuncMap(ExecState*, JSObject*, const List&); 69 JSValue* arrayProtoFuncLastIndexOf(ExecState*, JSObject*, const List&); 74 70 75 71 } // namespace KJS
Note:
See TracChangeset
for help on using the changeset viewer.