Changeset 197484 in webkit for trunk/Source/JavaScriptCore/runtime/ReflectObject.cpp
- Timestamp:
- Mar 2, 2016, 6:04:49 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/ReflectObject.cpp
r197467 r197484 170 170 return JSValue::encode(throwTypeError(exec, ASCIILiteral("Reflect.isExtensible requires the first argument be an object"))); 171 171 172 bool isExtensible = asObject(target)->isExtensible Inline(exec);172 bool isExtensible = asObject(target)->isExtensible(exec); 173 173 if (exec->hadException()) 174 174 return JSValue::encode(JSValue()); … … 216 216 return JSValue::encode(jsBoolean(true)); 217 217 218 bool isExtensible = object->isExtensible Inline(exec);218 bool isExtensible = object->isExtensible(exec); 219 219 if (exec->hadException()) 220 220 return JSValue::encode(JSValue()); … … 223 223 224 224 VM& vm = exec->vm(); 225 bool didSetPrototype = object->setPrototype OfInline(vm, exec, proto);225 bool didSetPrototype = object->setPrototype(vm, exec, proto); 226 226 if (vm.exception()) 227 227 return JSValue::encode(JSValue());
Note:
See TracChangeset
for help on using the changeset viewer.