Changeset 43372 in webkit for trunk/JavaScriptCore/runtime/StringConstructor.cpp
- Timestamp:
- May 7, 2009, 3:52:19 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/StringConstructor.cpp
r43226 r43372 39 39 } 40 40 41 static JSValue stringFromCharCode(ExecState* exec, JSObject*, JSValue, const ArgList& args)41 static JSValue JSC_HOST_CALL stringFromCharCode(ExecState* exec, JSObject*, JSValue, const ArgList& args) 42 42 { 43 43 if (LIKELY(args.size() == 1)) … … 76 76 77 77 // ECMA 15.5.1 78 static JSValue callStringConstructor(ExecState* exec, JSObject*, JSValue, const ArgList& args)78 static JSValue JSC_HOST_CALL callStringConstructor(ExecState* exec, JSObject*, JSValue, const ArgList& args) 79 79 { 80 80 if (args.isEmpty())
Note:
See TracChangeset
for help on using the changeset viewer.