Changeset 197391 in webkit for trunk/Source/JavaScriptCore/runtime/JSModuleNamespaceObject.h
- Timestamp:
- Mar 1, 2016, 12:11:20 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/JSModuleNamespaceObject.h
r189429 r197391 42 42 { 43 43 JSModuleNamespaceObject* object = new (NotNull, allocateCell<JSModuleNamespaceObject>(exec->vm().heap)) JSModuleNamespaceObject(exec->vm(), structure); 44 object->finishCreation(exec ->vm(), globalObject, moduleRecord, exports);44 object->finishCreation(exec, globalObject, moduleRecord, exports); 45 45 return object; 46 46 } … … 63 63 64 64 protected: 65 JS_EXPORT_PRIVATE void finishCreation( VM&, JSGlobalObject*, JSModuleRecord*, const IdentifierSet& exports);65 JS_EXPORT_PRIVATE void finishCreation(ExecState*, JSGlobalObject*, JSModuleRecord*, const IdentifierSet& exports); 66 66 JS_EXPORT_PRIVATE JSModuleNamespaceObject(VM&, Structure*); 67 67
Note:
See TracChangeset
for help on using the changeset viewer.