Restore bizarro tests for Object.create.

This commit is contained in:
John-David Dalton
2016-02-15 16:47:21 -08:00
parent ba2d3f7704
commit 10dd42b6e4
3 changed files with 34 additions and 3 deletions

View File

@@ -1315,7 +1315,6 @@
/** Built-in value references. */
var Buffer = moduleExports ? context.Buffer : undefined,
objectCreate = Object.create,
Reflect = context.Reflect,
Symbol = context.Symbol,
Uint8Array = context.Uint8Array,
@@ -1324,6 +1323,7 @@
getPrototypeOf = Object.getPrototypeOf,
getOwnPropertySymbols = Object.getOwnPropertySymbols,
iteratorSymbol = typeof (iteratorSymbol = Symbol && Symbol.iterator) == 'symbol' ? iteratorSymbol : undefined,
objectCreate = Object.create,
propertyIsEnumerable = objectProto.propertyIsEnumerable,
setTimeout = context.setTimeout,
splice = arrayProto.splice;