diff options
Diffstat (limited to 'Source/JavaScriptCore/runtime/StringConstructor.h')
| -rw-r--r-- | Source/JavaScriptCore/runtime/StringConstructor.h | 65 |
1 files changed, 33 insertions, 32 deletions
diff --git a/Source/JavaScriptCore/runtime/StringConstructor.h b/Source/JavaScriptCore/runtime/StringConstructor.h index 357511a57..a2c08231e 100644 --- a/Source/JavaScriptCore/runtime/StringConstructor.h +++ b/Source/JavaScriptCore/runtime/StringConstructor.h @@ -25,38 +25,39 @@ namespace JSC { -class StringPrototype; - -class StringConstructor : public InternalFunction { -public: - typedef InternalFunction Base; - static const unsigned StructureFlags = Base::StructureFlags | OverridesGetOwnPropertySlot; - - static StringConstructor* create(VM& vm, Structure* structure, StringPrototype* stringPrototype) - { - StringConstructor* constructor = new (NotNull, allocateCell<StringConstructor>(vm.heap)) StringConstructor(vm, structure); - constructor->finishCreation(vm, stringPrototype); - return constructor; - } - - DECLARE_INFO; - - static Structure* createStructure(VM& vm, JSGlobalObject* globalObject, JSValue prototype) - { - return Structure::create(vm, globalObject, prototype, TypeInfo(ObjectType, StructureFlags), info()); - } - -private: - StringConstructor(VM&, Structure*); - void finishCreation(VM&, StringPrototype*); - static ConstructType getConstructData(JSCell*, ConstructData&); - static CallType getCallData(JSCell*, CallData&); - - static bool getOwnPropertySlot(JSObject*, ExecState*, PropertyName, PropertySlot&); -}; - -JSCell* JSC_HOST_CALL stringFromCharCode(ExecState*, int32_t); -JSCell* stringConstructor(ExecState*, JSValue); + class StringPrototype; + + class StringConstructor : public InternalFunction { + public: + typedef InternalFunction Base; + + static StringConstructor* create(VM& vm, Structure* structure, StringPrototype* stringPrototype) + { + StringConstructor* constructor = new (NotNull, allocateCell<StringConstructor>(vm.heap)) StringConstructor(vm, structure); + constructor->finishCreation(vm, stringPrototype); + return constructor; + } + + DECLARE_INFO; + + static Structure* createStructure(VM& vm, JSGlobalObject* globalObject, JSValue prototype) + { + return Structure::create(vm, globalObject, prototype, TypeInfo(ObjectType, StructureFlags), info()); + } + + protected: + static const unsigned StructureFlags = OverridesGetOwnPropertySlot | InternalFunction::StructureFlags; + + private: + StringConstructor(VM&, Structure*); + void finishCreation(VM&, StringPrototype*); + static ConstructType getConstructData(JSCell*, ConstructData&); + static CallType getCallData(JSCell*, CallData&); + + static bool getOwnPropertySlot(JSObject*, ExecState*, PropertyName, PropertySlot&); + }; + + JSCell* JSC_HOST_CALL stringFromCharCode(ExecState*, int32_t); } // namespace JSC |
