2016-09-20 21:30:45 +00:00
|
|
|
// Copyright 2016 the V8 project authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2017-01-10 23:27:02 +00:00
|
|
|
// Flags: --allow-natives-syntax
|
2016-09-20 21:30:45 +00:00
|
|
|
|
|
|
|
let log = [];
|
|
|
|
|
|
|
|
(async function() {
|
|
|
|
with ({get ['.promise']() { log.push('async') }}) {
|
|
|
|
return 10;
|
|
|
|
}
|
|
|
|
})();
|
2018-12-04 06:12:49 +00:00
|
|
|
%PerformMicrotaskCheckpoint();
|
2016-09-20 21:30:45 +00:00
|
|
|
|
|
|
|
(function() {
|
|
|
|
with ({get ['.new.target']() { log.push('new.target') }}) {
|
|
|
|
return new.target;
|
|
|
|
}
|
|
|
|
})();
|
|
|
|
|
|
|
|
(function() {
|
|
|
|
with ({get ['this']() { log.push('this') }}) {
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
})();
|
|
|
|
|
2016-09-20 22:13:58 +00:00
|
|
|
assertArrayEquals([], log);
|