Changeset 29508 in webkit for trunk/JavaScriptCore/kjs/math_object.h
- Timestamp:
- Jan 15, 2008, 10:43:15 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/math_object.h
r27608 r29508 41 41 }; 42 42 43 44 #define FOR_EACH_CLASS(macro) \ 45 macro(MathProtoFuncAbs) \ 46 macro(MathProtoFuncACos) \ 47 macro(MathProtoFuncASin) \ 48 macro(MathProtoFuncATan) \ 49 macro(MathProtoFuncATan2) \ 50 macro(MathProtoFuncCeil) \ 51 macro(MathProtoFuncCos) \ 52 macro(MathProtoFuncExp) \ 53 macro(MathProtoFuncFloor) \ 54 macro(MathProtoFuncLog) \ 55 macro(MathProtoFuncMax) \ 56 macro(MathProtoFuncMin) \ 57 macro(MathProtoFuncPow) \ 58 macro(MathProtoFuncRandom) \ 59 macro(MathProtoFuncRound) \ 60 macro(MathProtoFuncSin) \ 61 macro(MathProtoFuncSqrt) \ 62 macro(MathProtoFuncTan) \ 63 64 FOR_EACH_CLASS(KJS_IMPLEMENT_PROTOTYPE_FUNCTION_WITH_CREATE) 65 #undef FOR_EACH_CLASS 66 43 JSValue* mathProtoFuncAbs(ExecState*, JSObject*, const List&); 44 JSValue* mathProtoFuncACos(ExecState*, JSObject*, const List&); 45 JSValue* mathProtoFuncASin(ExecState*, JSObject*, const List&); 46 JSValue* mathProtoFuncATan(ExecState*, JSObject*, const List&); 47 JSValue* mathProtoFuncATan2(ExecState*, JSObject*, const List&); 48 JSValue* mathProtoFuncCeil(ExecState*, JSObject*, const List&); 49 JSValue* mathProtoFuncCos(ExecState*, JSObject*, const List&); 50 JSValue* mathProtoFuncExp(ExecState*, JSObject*, const List&); 51 JSValue* mathProtoFuncFloor(ExecState*, JSObject*, const List&); 52 JSValue* mathProtoFuncLog(ExecState*, JSObject*, const List&); 53 JSValue* mathProtoFuncMax(ExecState*, JSObject*, const List&); 54 JSValue* mathProtoFuncMin(ExecState*, JSObject*, const List&); 55 JSValue* mathProtoFuncPow(ExecState*, JSObject*, const List&); 56 JSValue* mathProtoFuncRandom(ExecState*, JSObject*, const List&); 57 JSValue* mathProtoFuncRound(ExecState*, JSObject*, const List&); 58 JSValue* mathProtoFuncSin(ExecState*, JSObject*, const List&); 59 JSValue* mathProtoFuncSqrt(ExecState*, JSObject*, const List&); 60 JSValue* mathProtoFuncTan(ExecState*, JSObject*, const List&); 67 61 68 62 } // namespace KJS
Note:
See TracChangeset
for help on using the changeset viewer.