Changeset 221475 in webkit for trunk/Source/JavaScriptCore/runtime/ProxyRevoke.cpp
- Timestamp:
- Aug 31, 2017, 11:40:55 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/ProxyRevoke.cpp
r217108 r221475 50 50 void ProxyRevoke::finishCreation(VM& vm, const char* name, ProxyObject* proxy) 51 51 { 52 Base::finishCreation(vm, String(name) );52 Base::finishCreation(vm, String(name), NameVisibility::Anonymous); 53 53 m_proxy.set(vm, this, proxy); 54 54 55 putDirect(vm, vm.propertyNames->length, jsNumber(0), ReadOnly | Dont Delete | DontEnum);55 putDirect(vm, vm.propertyNames->length, jsNumber(0), ReadOnly | DontEnum); 56 56 } 57 57
Note:
See TracChangeset
for help on using the changeset viewer.