OLD | NEW |
| (Empty) |
1 // Copyright 2009 the V8 project authors. All rights reserved. | |
2 // Redistribution and use in source and binary forms, with or without | |
3 // modification, are permitted provided that the following conditions are | |
4 // met: | |
5 // | |
6 // * Redistributions of source code must retain the above copyright | |
7 // notice, this list of conditions and the following disclaimer. | |
8 // * Redistributions in binary form must reproduce the above | |
9 // copyright notice, this list of conditions and the following | |
10 // disclaimer in the documentation and/or other materials provided | |
11 // with the distribution. | |
12 // * Neither the name of Google Inc. nor the names of its | |
13 // contributors may be used to endorse or promote products derived | |
14 // from this software without specific prior written permission. | |
15 // | |
16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | |
17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | |
18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | |
19 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | |
20 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | |
21 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | |
22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | |
23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | |
24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | |
25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | |
26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
27 | |
28 function introduceSetter(useProto, Constructor) { | |
29 // Before introducing the setter this test expects 'y' to be set | |
30 // normally. Afterwards setting 'y' will throw an exception. | |
31 var runTest = new Function("Constructor", | |
32 "var p = new Constructor(3); p.y = 4; assertEquals(p.y, 4);"); | |
33 | |
34 // Create the prototype object first because defining a setter should | |
35 // clear inline caches. | |
36 if (useProto) { | |
37 var newProto = { }; | |
38 newProto.__defineSetter__('y', function () { throw signal; }); | |
39 } | |
40 | |
41 // Ensure that monomorphic ics have been set up. | |
42 runTest(Constructor); | |
43 runTest(Constructor); | |
44 | |
45 var signal = "was called"; | |
46 if (useProto) { | |
47 // Either introduce the setter through __proto__... | |
48 Constructor.prototype.__proto__ = newProto; | |
49 } else { | |
50 // ...or introduce it directly using __defineSetter__. | |
51 Constructor.prototype.__defineSetter__('y', function () { throw signal; }); | |
52 } | |
53 | |
54 // Now setting 'y' should throw an exception. | |
55 try { | |
56 runTest(Constructor); | |
57 fail("Accessor was not called."); | |
58 } catch (e) { | |
59 assertEquals(e, signal); | |
60 } | |
61 | |
62 } | |
63 | |
64 introduceSetter(false, function FastCase(x) { this.x = x; }); | |
65 introduceSetter(true, function FastCase(x) { this.x = x; }); | |
66 introduceSetter(false, function SlowCase(x) { this.x = x; delete this.x; }); | |
67 introduceSetter(true, function SlowCase(x) { this.x = x; delete this.x; }); | |
OLD | NEW |