js/src/tests/js1_5/extensions/getset-001.js

Wed, 31 Dec 2014 07:53:36 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 07:53:36 +0100
branch
TOR_BUG_3246
changeset 5
4ab42b5ab56c
permissions
-rw-r--r--

Correct small whitespace inconsistency, lost while renaming variables.

     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/. */
     7 function TestObject ()
     8 {
     9   /* A warm, dry place for properties and methods to live */
    10 }
    12 TestObject.prototype._y = "<initial y>";
    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 });
    30 test(new TestObject());
    32 function test(t)
    33 {
    34   enterFunc ("test");
    36   printStatus ("Basic Getter/ Setter test");
    37   reportCompare ("<initial y>", t._y, "y prototype check");
    39   reportCompare ("got <initial y>", t.y, "y getter, before set");
    41   t.y = "new y";
    42   reportCompare ("got new y", t.y, "y getter, after set");
    44   t.y = 2;
    45   reportCompare (2, t.y, "y getter, after numeric set");
    47   var d = new Date();
    48   t.y = d;
    49   reportCompare (d, t.y, "y getter, after date set");
    51 }

mercurial