Changeset 98909 in webkit for trunk/Source/JavaScriptCore/runtime/JSObject.cpp
- Timestamp:
- Oct 31, 2011, 4:43:58 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/JSObject.cpp
r98889 r98909 30 30 #include "JSFunction.h" 31 31 #include "JSGlobalObject.h" 32 #include "JSGlobalThis.h" 33 #include "Lookup.h" 32 34 #include "NativeErrorConstructor.h" 35 #include "Nodes.h" 33 36 #include "ObjectPrototype.h" 37 #include "Operations.h" 34 38 #include "PropertyDescriptor.h" 35 39 #include "PropertyNameArray.h" 36 #include "Lookup.h"37 #include "Nodes.h"38 #include "Operations.h"39 40 #include <math.h> 40 41 #include <wtf/Assertions.h> … … 565 566 JSObject* JSObject::unwrappedObject() 566 567 { 568 if (isGlobalThis()) 569 return static_cast<JSGlobalThis*>(this)->unwrappedObject(); 567 570 return this; 568 571 }
Note:
See TracChangeset
for help on using the changeset viewer.