summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Proxy/get/trap-is-undefined.js
blob: 03bb20a99fbf047f02a0c67afa04ae539f59c4d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
es6id: 9.5.8
description: >
    [[Get]] (P, Receiver)

    8. If trap is undefined, then return target.[[Get]](P, Receiver).

features: [Proxy]
---*/

var target = {
  attr: 1
};
var p = new Proxy(target, {
  get: undefined
});

assert.sameValue(p.attr, 1, 'return target.attr');
assert.sameValue(p.foo, undefined, 'return target.foo');

reportCompare(0, 0);