summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/expressions/object/11.1.5-0-2.js
blob: 7b814cea8d095f6de309011467480150d6dab262 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// Copyright (c) 2012 Ecma International.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
info: |
    it isn't clear what specific requirements of the specificaiton are being tested here. This test should 
    probably be replaced by some more targeted tests.  AllenWB
es5id: 11.1.5-0-2
description: Object literal - multiple get set properties
---*/

  var s1 = "First getter";
  var s2 = "First setter";
  var s3 = "Second getter";
  var o;
  eval("o = {get foo(){ return s1;},set foo(arg){return s2 = s3}, get bar(){ return s3}, set bar(arg){ s3 = arg;}};");

assert.sameValue(o.foo, s1, 'o.foo');

  o.foo = 10;

assert.sameValue(s2, s3, 's2');
assert.sameValue(o.bar, s3, 'o.bar');

  o.bar = "Second setter";

assert.sameValue(o.bar, "Second setter", 'o.bar');

reportCompare(0, 0);