Changeset 8453 in webkit for trunk/JavaScriptCore/kjs/object.cpp
- Timestamp:
- Jan 26, 2005, 1:38:10 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/object.cpp
r8400 r8453 125 125 126 126 ObjectImp::ObjectImp(const Object &proto) 127 : _proto(static_cast<ObjectImp*>(proto.imp())), _internalValue(0L) , _forwardingScriptMessage(false)127 : _proto(static_cast<ObjectImp*>(proto.imp())), _internalValue(0L) 128 128 { 129 129 //fprintf(stderr,"ObjectImp::ObjectImp %p\n",(void*)this); … … 131 131 132 132 ObjectImp::ObjectImp(ObjectImp *proto) 133 : _proto(proto), _internalValue(0L) , _forwardingScriptMessage(false)133 : _proto(proto), _internalValue(0L) 134 134 { 135 135 //fprintf(stderr,"ObjectImp::ObjectImp %p\n",(void*)this); … … 141 141 _proto = NullImp::staticNull; 142 142 _internalValue = 0L; 143 _forwardingScriptMessage = false;144 143 } 145 144
Note:
See TracChangeset
for help on using the changeset viewer.