Changeset 34587 in webkit for trunk/JavaScriptCore/kjs/string_object.h
- Timestamp:
- Jun 15, 2008, 10:28:46 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/string_object.h
r34582 r34587 84 84 */ 85 85 86 JSValue* stringProtoFuncToString(ExecState*, JSObject*, const List&);87 JSValue* stringProtoFuncValueOf(ExecState*, JSObject*, const List&);88 JSValue* stringProtoFuncCharAt(ExecState*, JSObject*, const List&);89 JSValue* stringProtoFuncCharCodeAt(ExecState*, JSObject*, const List&);90 JSValue* stringProtoFuncConcat(ExecState*, JSObject*, const List&);91 JSValue* stringProtoFuncIndexOf(ExecState*, JSObject*, const List&);92 JSValue* stringProtoFuncLastIndexOf(ExecState*, JSObject*, const List&);93 JSValue* stringProtoFuncMatch(ExecState*, JSObject*, const List&);94 JSValue* stringProtoFuncReplace(ExecState*, JSObject*, const List&);95 JSValue* stringProtoFuncSearch(ExecState*, JSObject*, const List&);96 JSValue* stringProtoFuncSlice(ExecState*, JSObject*, const List&);97 JSValue* stringProtoFuncSplit(ExecState*, JSObject*, const List&);98 JSValue* stringProtoFuncSubstr(ExecState*, JSObject*, const List&);99 JSValue* stringProtoFuncSubstring(ExecState*, JSObject*, const List&);100 JSValue* stringProtoFuncToLowerCase(ExecState*, JSObject*, const List&);101 JSValue* stringProtoFuncToUpperCase(ExecState*, JSObject*, const List&);102 JSValue* stringProtoFuncToLocaleLowerCase(ExecState*, JSObject*, const List&);103 JSValue* stringProtoFuncToLocaleUpperCase(ExecState*, JSObject*, const List&);104 JSValue* stringProtoFuncLocaleCompare(ExecState*, JSObject*, const List&);86 JSValue* stringProtoFuncToString(ExecState*, JSObject*, const ArgList&); 87 JSValue* stringProtoFuncValueOf(ExecState*, JSObject*, const ArgList&); 88 JSValue* stringProtoFuncCharAt(ExecState*, JSObject*, const ArgList&); 89 JSValue* stringProtoFuncCharCodeAt(ExecState*, JSObject*, const ArgList&); 90 JSValue* stringProtoFuncConcat(ExecState*, JSObject*, const ArgList&); 91 JSValue* stringProtoFuncIndexOf(ExecState*, JSObject*, const ArgList&); 92 JSValue* stringProtoFuncLastIndexOf(ExecState*, JSObject*, const ArgList&); 93 JSValue* stringProtoFuncMatch(ExecState*, JSObject*, const ArgList&); 94 JSValue* stringProtoFuncReplace(ExecState*, JSObject*, const ArgList&); 95 JSValue* stringProtoFuncSearch(ExecState*, JSObject*, const ArgList&); 96 JSValue* stringProtoFuncSlice(ExecState*, JSObject*, const ArgList&); 97 JSValue* stringProtoFuncSplit(ExecState*, JSObject*, const ArgList&); 98 JSValue* stringProtoFuncSubstr(ExecState*, JSObject*, const ArgList&); 99 JSValue* stringProtoFuncSubstring(ExecState*, JSObject*, const ArgList&); 100 JSValue* stringProtoFuncToLowerCase(ExecState*, JSObject*, const ArgList&); 101 JSValue* stringProtoFuncToUpperCase(ExecState*, JSObject*, const ArgList&); 102 JSValue* stringProtoFuncToLocaleLowerCase(ExecState*, JSObject*, const ArgList&); 103 JSValue* stringProtoFuncToLocaleUpperCase(ExecState*, JSObject*, const ArgList&); 104 JSValue* stringProtoFuncLocaleCompare(ExecState*, JSObject*, const ArgList&); 105 105 106 JSValue* stringProtoFuncBig(ExecState*, JSObject*, const List&);107 JSValue* stringProtoFuncSmall(ExecState*, JSObject*, const List&);108 JSValue* stringProtoFuncBlink(ExecState*, JSObject*, const List&);109 JSValue* stringProtoFuncBold(ExecState*, JSObject*, const List&);110 JSValue* stringProtoFuncFixed(ExecState*, JSObject*, const List&);111 JSValue* stringProtoFuncItalics(ExecState*, JSObject*, const List&);112 JSValue* stringProtoFuncStrike(ExecState*, JSObject*, const List&);113 JSValue* stringProtoFuncSub(ExecState*, JSObject*, const List&);114 JSValue* stringProtoFuncSup(ExecState*, JSObject*, const List&);115 JSValue* stringProtoFuncFontcolor(ExecState*, JSObject*, const List&);116 JSValue* stringProtoFuncFontsize(ExecState*, JSObject*, const List&);117 JSValue* stringProtoFuncAnchor(ExecState*, JSObject*, const List&);118 JSValue* stringProtoFuncLink(ExecState*, JSObject*, const List&);106 JSValue* stringProtoFuncBig(ExecState*, JSObject*, const ArgList&); 107 JSValue* stringProtoFuncSmall(ExecState*, JSObject*, const ArgList&); 108 JSValue* stringProtoFuncBlink(ExecState*, JSObject*, const ArgList&); 109 JSValue* stringProtoFuncBold(ExecState*, JSObject*, const ArgList&); 110 JSValue* stringProtoFuncFixed(ExecState*, JSObject*, const ArgList&); 111 JSValue* stringProtoFuncItalics(ExecState*, JSObject*, const ArgList&); 112 JSValue* stringProtoFuncStrike(ExecState*, JSObject*, const ArgList&); 113 JSValue* stringProtoFuncSub(ExecState*, JSObject*, const ArgList&); 114 JSValue* stringProtoFuncSup(ExecState*, JSObject*, const ArgList&); 115 JSValue* stringProtoFuncFontcolor(ExecState*, JSObject*, const ArgList&); 116 JSValue* stringProtoFuncFontsize(ExecState*, JSObject*, const ArgList&); 117 JSValue* stringProtoFuncAnchor(ExecState*, JSObject*, const ArgList&); 118 JSValue* stringProtoFuncLink(ExecState*, JSObject*, const ArgList&); 119 119 120 120 /** … … 128 128 129 129 virtual ConstructType getConstructData(ConstructData&); 130 virtual JSObject* construct(ExecState*, const List&);130 virtual JSObject* construct(ExecState*, const ArgList&); 131 131 132 virtual JSValue* callAsFunction(ExecState*, JSObject* thisObj, const List& args);132 virtual JSValue* callAsFunction(ExecState*, JSObject* thisObj, const ArgList& args); 133 133 }; 134 134 … … 142 142 public: 143 143 StringConstructorFunction(ExecState*, FunctionPrototype*, const Identifier&); 144 virtual JSValue* callAsFunction(ExecState*, JSObject* thisObj, const List& args);144 virtual JSValue* callAsFunction(ExecState*, JSObject* thisObj, const ArgList& args); 145 145 }; 146 146
Note:
See TracChangeset
for help on using the changeset viewer.