Changeset 94931 in webkit for trunk/Source/JavaScriptCore/runtime/JSAPIValueWrapper.h
- Timestamp:
- Sep 11, 2011, 3:29:24 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/JSAPIValueWrapper.h
r94929 r94931 38 38 JSValue value() const { return m_value.get(); } 39 39 40 virtual bool isAPIValueWrapper() const { return true; }41 42 40 static Structure* createStructure(JSGlobalData& globalData, JSGlobalObject* globalObject, JSValue prototype) 43 41 { 44 return Structure::create(globalData, globalObject, prototype, TypeInfo( CompoundType, OverridesVisitChildren | OverridesGetPropertyNames), &s_info);42 return Structure::create(globalData, globalObject, prototype, TypeInfo(APIValueWrapper, OverridesVisitChildren | OverridesGetPropertyNames), &s_info); 45 43 } 46 44
Note:
See TracChangeset
for help on using the changeset viewer.