/external/v8/test/webkit/ |
D | for-in-cached.js | 42 var o = { x: 1, __proto__: null }; property 52 var o = { x: 1, __proto__: proto }; property 57 forIn3({ __proto__: { y1: 2 } }); property 58 forIn3({ __proto__: { y1: 2 } }); property 61 forIn3({ y2 : 2, __proto__: null }); property 62 forIn3({ y2 : 2, __proto__: null }); property 65 forIn3({ __proto__: { __proto__: { y3 : 2 } } }); property 66 forIn3({ __proto__: { __proto__: { y3 : 2 } } }); property
|
D | dictionary-prototype-caching.js | 31 var o = { __proto__: proto }; property 49 var o = { __proto__: proto }; property 67 var o = { __proto__: proto }; property 85 var subclass1 = { __proto__: proto }; property 86 var subclass2 = { __proto__: proto }; property
|
D | dictionary-no-cache.js | 86 var test4 = {__proto__:{prop:"on prototype"}}; property 90 var test5 = {__proto__:{__proto__:{prop:"on prototype's prototype"}}}; property
|
/external/v8/test/mjsunit/regress/ |
D | regress-1403.js | 31 Object.prototype.__proto__ = { __proto__: null }; variable 35 Array.prototype.__proto__ = { __proto__: null }; method in Array
|
D | regress-3462.js | 8 var o = {__proto__: f}; property 19 Number.prototype.__proto__ = f; method in Number 32 var o = {__proto__: a}; property 42 Number.prototype.__proto__ = [1]; method in Number
|
D | regress-4665.js | 10 FirstBuffer.prototype.__proto__ = Uint8Array.prototype method in FirstBuffer 26 SecondBuffer.prototype.__proto__ = Uint8Array.prototype method in SecondBuffer
|
D | regress-4376-1.js | 7 Baz.prototype = { __proto__: new Bar() } property in Baz 11 Baz.prototype.__proto__ = null; method in Baz
|
D | regress-618.js | 53 C2.prototype.__proto__ = { set x(value) { this.y = 23; } }; method in C2 83 C4.prototype.__proto__.__defineSetter__('x', function(value) { this.y = 23; }); method in C4
|
D | regress-4296.js | 19 var o = {__proto__: new String("ab")}; property 33 var o = {__proto__: {}}; property
|
D | regress-1015.js | 50 var op = { __proto__: { set bar(v) { assertUnreachable("bset"); } }, property 62 var op = { __proto__: { set bar(v) { assertUnreachable("bset"); } }, property
|
D | regress-1062422.js | 29 Number.prototype.__proto__ = String.prototype; method in Number
|
D | regress-1121.js | 32 Array.prototype.__proto__ = null; method in Array
|
/external/v8/test/mjsunit/harmony/ |
D | proxies-cross-realm-exception.js | 15 __proto__ = new Proxy({}, { getPrototypeOf() { assertUnreachable() } }); variable 30 __proto__ = new Proxy({}, { get(t, p, r) { assertUnreachable() } }); variable 37 __proto__.__proto__ = new Proxy({}, { variable 46 __proto__ = new Proxy({}, variable
|
D | private-symbols.js | 22 var object2 = {__proto__: object}; property 34 var object = {__proto__: proxy}; property
|
/external/v8/test/mjsunit/es6/ |
D | super.js | 25 __proto__: Base.prototype, property in Derived 65 __proto__: Base.prototype, property in Derived 113 __proto__: Base.prototype, property in Derived 148 __proto__: Base.prototype, property in Derived 215 __proto__: Base.prototype, property in Derived 287 __proto__: Base.prototype, property in Derived 329 __proto__: Base.prototype, property in Derived 403 __proto__: Base.prototype, property in Derived 480 __proto__: Base.prototype, property in Derived 504 __proto__: Base.prototype, property in Derived [all …]
|
D | object-literals-super.js | 62 __proto__: { property 77 __proto__: { property 93 __proto__: { property 122 __proto__: { property 143 __proto__: p, property 174 __proto__: p, property
|
D | object-literals-property-shorthand.js | 63 __proto__ field 74 __proto__: p, property 75 __proto__, property
|
D | computed-property-names-super.js | 20 __proto__: proto, property 43 __proto__: proto, property 64 __proto__: proto, property
|
/external/v8/test/mjsunit/ |
D | for-in-opt.js | 51 var o = {__proto__: proxy}; property 85 f3({__proto__:{x:1}}); property 86 f3({__proto__:{x:1}}); property 100 var o2 = {__proto__: proxy2}; property 151 var o3 = {__proto__: proxy3}; property
|
D | array-elements-from-array-prototype-chain.js | 46 Array.prototype.__proto__ = {3: at3}; method in Array 47 Array.prototype.__proto__.__proto__ = {7: at7}; method in Array
|
D | elide-double-hole-check-8.js | 38 Array.prototype.__proto__ = new Object(); method in Array 39 Array.prototype.__proto__[1] = 1.5; method in Array
|
D | fun-as-prototype.js | 30 Number.prototype.__proto__ = Funky; method in Number 35 Number.prototype.__proto__ = [1, 2, 3]; method in Number
|
D | setter-on-constructor-prototype.js | 50 C2.prototype.__proto__ = { set x(value) { this.y = 23; } }; method in C2 82 C4.prototype.__proto__ = { }; method in C4 83 C4.prototype.__proto__.__defineSetter__('x', function(value) { this.y = 23; }); method in C4
|
/external/v8/test/mjsunit/strong/ |
D | load-proxy.js | 55 var childObj1 = { __proto__: proxy1 }; property 56 var childObj2 = { __proto__: proxy2 }; property 57 var childObjAccessor1 = { set foo(_){}, set "1"(_){}, __proto__: proxy1 }; property 58 var childObjAccessor2 = { set foo(_){}, set "1"(_){}, __proto__: proxy2 }; property
|
/external/v8/test/mjsunit/harmony/regress/ |
D | regress-576662.js | 10 this.__proto__ = new Proxy({},{}); property
|