Changeset 129711 in webkit for trunk/Source/JavaScriptCore/jsc.cpp
- Timestamp:
- Sep 26, 2012, 3:50:27 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/jsc.cpp
r128851 r129711 34 34 #include "JSFunction.h" 35 35 #include "JSLock.h" 36 #include "JSProxy.h" 36 37 #include "JSString.h" 37 38 #include "SamplingTool.h" … … 177 178 GlobalObject* object = new (NotNull, allocateCell<GlobalObject>(globalData.heap)) GlobalObject(globalData, structure); 178 179 object->finishCreation(globalData, arguments); 180 object->setGlobalThis(globalData, JSProxy::create(globalData, JSProxy::createStructure(globalData, object), object)); 179 181 return object; 180 182 }
Note:
See TracChangeset
for help on using the changeset viewer.