2016-10-07 19:37:04 +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.
|
|
|
|
|
|
|
|
let ja = 42;
|
|
|
|
export {ja as yo};
|
|
|
|
export const bla = "blaa";
|
|
|
|
export {foo as foo_again};
|
|
|
|
// See further below for the actual star import that declares "foo".
|
|
|
|
|
|
|
|
// The object itself.
|
|
|
|
assertEquals("object", typeof foo);
|
|
|
|
assertThrows(() => foo = 666, TypeError);
|
|
|
|
assertFalse(Reflect.isExtensible(foo));
|
|
|
|
assertTrue(Reflect.preventExtensions(foo));
|
|
|
|
assertThrows(() => Reflect.apply(foo, {}, []));
|
|
|
|
assertThrows(() => Reflect.construct(foo, {}, []));
|
|
|
|
assertSame(null, Reflect.getPrototypeOf(foo));
|
|
|
|
assertTrue(Reflect.setPrototypeOf(foo, null));
|
|
|
|
assertFalse(Reflect.setPrototypeOf(foo, {}));
|
|
|
|
assertSame(null, Reflect.getPrototypeOf(foo));
|
|
|
|
assertEquals(
|
2016-12-16 08:57:29 +00:00
|
|
|
["bla", "foo_again", "yo", Symbol.toStringTag], Reflect.ownKeys(foo));
|
2016-10-07 19:37:04 +00:00
|
|
|
|
|
|
|
// Its "yo" property.
|
|
|
|
assertEquals(
|
|
|
|
{value: 42, enumerable: true, configurable: false, writable: true},
|
|
|
|
Reflect.getOwnPropertyDescriptor(foo, "yo"));
|
|
|
|
assertFalse(Reflect.deleteProperty(foo, "yo"));
|
|
|
|
assertTrue(Reflect.has(foo, "yo"));
|
2016-10-26 08:59:24 +00:00
|
|
|
assertFalse(Reflect.set(foo, "yo", true));
|
|
|
|
// TODO(neis): The next two should be False.
|
2016-10-07 19:37:04 +00:00
|
|
|
assertTrue(Reflect.defineProperty(foo, "yo",
|
|
|
|
Reflect.getOwnPropertyDescriptor(foo, "yo")));
|
|
|
|
assertTrue(Reflect.defineProperty(foo, "yo", {}));
|
|
|
|
assertFalse(Reflect.defineProperty(foo, "yo", {get() {return 1}}));
|
|
|
|
assertEquals(42, Reflect.get(foo, "yo"));
|
|
|
|
assertEquals(43, (ja++, foo.yo));
|
|
|
|
|
|
|
|
// Its "foo_again" property.
|
|
|
|
assertSame(foo, foo.foo_again);
|
|
|
|
|
|
|
|
// Its @@toStringTag property.
|
|
|
|
assertTrue(Reflect.has(foo, Symbol.toStringTag));
|
|
|
|
assertEquals("string", typeof Reflect.get(foo, Symbol.toStringTag));
|
|
|
|
assertEquals(
|
2017-01-04 06:33:10 +00:00
|
|
|
{value: "Module", configurable: false, writable: false, enumerable: false},
|
2016-10-07 19:37:04 +00:00
|
|
|
Reflect.getOwnPropertyDescriptor(foo, Symbol.toStringTag));
|
2017-01-04 06:33:10 +00:00
|
|
|
assertFalse(Reflect.deleteProperty(foo, Symbol.toStringTag));
|
2017-01-30 09:41:15 +00:00
|
|
|
assertEquals(
|
|
|
|
{value: "Module", configurable: false, writable: false, enumerable: false},
|
|
|
|
Reflect.getOwnPropertyDescriptor(foo, Symbol.toStringTag));
|
2016-10-07 19:37:04 +00:00
|
|
|
|
2018-12-24 09:35:20 +00:00
|
|
|
// Nonexistent properties.
|
|
|
|
let nonexistent = ["gaga", 123, Symbol('')];
|
|
|
|
for (let key of nonexistent) {
|
2016-10-07 19:37:04 +00:00
|
|
|
assertSame(undefined, Reflect.getOwnPropertyDescriptor(foo, key));
|
|
|
|
assertTrue(Reflect.deleteProperty(foo, key));
|
|
|
|
assertFalse(Reflect.set(foo, key, true));
|
|
|
|
assertSame(undefined, Reflect.get(foo, key));
|
|
|
|
assertFalse(Reflect.defineProperty(foo, key, {get() {return 1}}));
|
|
|
|
assertFalse(Reflect.has(foo, key));
|
|
|
|
}
|
|
|
|
|
|
|
|
// The actual star import that we are testing. Namespace imports are
|
2016-10-13 13:34:50 +00:00
|
|
|
// initialized before evaluation.
|
2019-06-27 10:49:03 +00:00
|
|
|
import * as foo from "modules-namespace1.mjs";
|
2016-10-07 19:37:04 +00:00
|
|
|
|
|
|
|
// There can be only one namespace object.
|
2019-06-27 10:49:03 +00:00
|
|
|
import * as bar from "modules-namespace1.mjs";
|
2016-10-07 19:37:04 +00:00
|
|
|
assertSame(foo, bar);
|