Lines Matching full:create
30 // Different ways to create an object.
41 return Object.create(Object.prototype);
52 return function() { return Object.create(proto); }
83 // Create a fresh constructor.
118 var p = Object.create(o.__proto__);
124 var p = Proxy.create({
167 f(function(strict, create, readonly) {
174 var o = create();
184 var o = create();
203 TestAllCreates(function(create) {
204 scenario(strict, create, readonly);