|
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- |
|
2 * This Source Code Form is subject to the terms of the Mozilla Public |
|
3 * License, v. 2.0. If a copy of the MPL was not distributed with this |
|
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
|
5 |
|
6 |
|
7 function TestObject () |
|
8 { |
|
9 /* A warm, dry place for properties and methods to live */ |
|
10 } |
|
11 |
|
12 TestObject.prototype._y = "<initial y>"; |
|
13 |
|
14 Object.defineProperty(TestObject.prototype, "y", |
|
15 { |
|
16 enumerable: true, configurable: true, |
|
17 get: function get_y () |
|
18 { |
|
19 var rv; |
|
20 if (typeof this._y == "string") |
|
21 rv = "got " + this._y; |
|
22 else |
|
23 rv = this._y; |
|
24 return rv; |
|
25 }, |
|
26 set: function set_y (newVal) { this._y = newVal; } |
|
27 }); |
|
28 |
|
29 |
|
30 test(new TestObject()); |
|
31 |
|
32 function test(t) |
|
33 { |
|
34 enterFunc ("test"); |
|
35 |
|
36 printStatus ("Basic Getter/ Setter test"); |
|
37 reportCompare ("<initial y>", t._y, "y prototype check"); |
|
38 |
|
39 reportCompare ("got <initial y>", t.y, "y getter, before set"); |
|
40 |
|
41 t.y = "new y"; |
|
42 reportCompare ("got new y", t.y, "y getter, after set"); |
|
43 |
|
44 t.y = 2; |
|
45 reportCompare (2, t.y, "y getter, after numeric set"); |
|
46 |
|
47 var d = new Date(); |
|
48 t.y = d; |
|
49 reportCompare (d, t.y, "y getter, after date set"); |
|
50 |
|
51 } |