test262/test/built-ins/Proxy/has/call-with.js

37 lines
746 B
JavaScript
Raw Normal View History

2015-06-03 01:14:06 +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.7
description: >
A `with` variable check trigger trap.call(handler, target, P);
info: |
2015-06-03 01:14:06 +02:00
[[HasProperty]] (P)
...
9. Let booleanTrapResult be ToBoolean(Call(trap, handler, «target, P»)).
...
flags: [noStrict]
features: [Proxy]
2015-06-03 01:14:06 +02:00
---*/
var _handler, _target, _prop;
var target = {};
var handler = {
has: function(t, prop) {
_handler = this;
_target = t;
_prop = prop;
2015-06-03 01:14:06 +02:00
return true;
}
2015-06-03 01:14:06 +02:00
};
var p = new Proxy(target, handler);
with(p) {
(attr);
2015-06-03 01:14:06 +02:00
}
assert.sameValue(_handler, handler);
assert.sameValue(_target, target);
assert.sameValue(_prop, "attr");