X-Git-Url: https://git.saurik.com/apple/javascriptcore.git/blobdiff_plain/14957cd040308e3eeec43d26bae5d76da13fcd85..ed1e77d3adeb83d26fd1dfb16dd84cabdcefd250:/runtime/StringConstructor.h diff --git a/runtime/StringConstructor.h b/runtime/StringConstructor.h index b2e3be6..357511a 100644 --- a/runtime/StringConstructor.h +++ b/runtime/StringConstructor.h @@ -25,29 +25,38 @@ namespace JSC { - class StringPrototype; - - class StringConstructor : public InternalFunction { - public: - StringConstructor(ExecState*, JSGlobalObject*, Structure*, StringPrototype*); - - static const ClassInfo s_info; - - static Structure* createStructure(JSGlobalData& globalData, JSValue prototype) - { - return Structure::create(globalData, prototype, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount, &s_info); - } - - protected: - static const unsigned StructureFlags = OverridesGetOwnPropertySlot | InternalFunction::StructureFlags; - - private: - virtual ConstructType getConstructData(ConstructData&); - virtual CallType getCallData(CallData&); - - virtual bool getOwnPropertySlot(ExecState*, const Identifier&, PropertySlot&); - virtual bool getOwnPropertyDescriptor(ExecState*, const Identifier&, PropertyDescriptor&); - }; +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(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); } // namespace JSC