test262/test/built-ins/Proxy/get/trap-is-undefined.js

22 lines
481 B
JavaScript
Raw Normal View History

2015-06-03 01:14:17 +02:00
// 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]
2015-06-03 01:14:17 +02:00
---*/
var target = {
attr: 1
2015-06-03 01:14:17 +02:00
};
var p = new Proxy(target, {
get: undefined
2015-06-03 01:14:17 +02:00
});
assert.sameValue(p.attr, 1, 'return target.attr');
assert.sameValue(p.foo, undefined, 'return target.foo');