Create namespace with references for modules (#4646)

JerryScript-DCO-1.0-Signed-off-by: Zoltan Herczeg zherczeg.u-szeged@partner.samsung.com
This commit is contained in:
Zoltan Herczeg
2021-04-12 15:58:56 +02:00
committed by GitHub
parent ef35c0329c
commit b3ec217b50
27 changed files with 1378 additions and 479 deletions
@@ -0,0 +1,38 @@
// Copyright JS Foundation and other contributors, http://js.foundation
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
export var a = 0
export let b = 1
function other() {
return 33.5
}
export function early() {
// This function is called before the module is executed
assert(other() === 33.5)
assert(a === undefined)
a = "X"
try {
b
assert(false)
} catch (e) {
assert(e instanceof ReferenceError)
}
}
early = "Loaded"
import * as o from "module-circular-02.mjs"
@@ -0,0 +1,85 @@
// Copyright JS Foundation and other contributors, http://js.foundation
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
import * as o from "module-circular-01.mjs"
if (o.early != "Loaded")
{
// The scope of module-circular-01.mjs is initialized and functions are usable
// However, the module script has not been executed
assert(o.a === undefined)
o.early()
assert(o.a === "X")
try {
o.b
assert(false)
} catch (e) {
assert(e instanceof ReferenceError)
}
try {
o.a = "X"
assert(false)
} catch (e) {
assert(e instanceof TypeError)
}
assert(o[Symbol.toStringTag] === "Module")
var result = Object.getOwnPropertyDescriptor(o, "a")
assert(result.value === "X")
assert(result.configurable === false)
assert(result.enumerable === true)
assert(result.writable === true)
try {
Object.getOwnPropertyDescriptor(o, "b")
assert(false)
} catch (e) {
assert(e instanceof ReferenceError)
}
result = Object.getOwnPropertyDescriptor(o, Symbol.toStringTag)
assert(result.value === "Module")
assert(result.configurable === false)
assert(result.enumerable === false)
assert(result.writable === false)
Object.defineProperty(o, "a", { value: "X" })
try {
Object.defineProperty(o, "a", { value: "Y" })
assert(false)
} catch (e) {
assert(e instanceof TypeError)
}
try {
Object.defineProperty(o, "b", { value:5 })
assert(false)
} catch (e) {
assert(e instanceof ReferenceError)
}
Object.defineProperty(o, Symbol.toStringTag, { value: "Module", writable:false })
try {
Object.defineProperty(o, Symbol.toStringTag, { writable:true })
assert(false)
} catch (e) {
assert(e instanceof TypeError)
}
}
@@ -0,0 +1,38 @@
// Copyright JS Foundation and other contributors, http://js.foundation
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
export var a = 0
export let b = 1
function other() {
return 33.5
}
export function early() {
// This function is called before the module is executed
assert(other() === 33.5)
assert(a === undefined)
a = "X"
try {
b
assert(false)
} catch (e) {
assert(e instanceof ReferenceError)
}
}
early = "Loaded"
import * as o from "module-circular-04.mjs"
@@ -0,0 +1,50 @@
// Copyright JS Foundation and other contributors, http://js.foundation
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
import {a as aa, b as bb, early} from "module-circular-03.mjs"
export var a = 5
if (early != "Loaded")
{
// The scope of module-circular-03.mjs is initialized and functions are usable
// However, the module script has not been executed
assert(aa === undefined)
early()
assert(aa === "X")
try {
bb
assert(false)
} catch (e) {
assert(e instanceof ReferenceError)
}
a = 7
try {
aa = "X"
assert(false)
} catch (e) {
assert(e instanceof TypeError)
}
try {
c = 4
assert(false)
} catch (e) {
assert(e instanceof ReferenceError)
}
}
+17 -1
View File
@@ -17,4 +17,20 @@ import * as f from "./module-export-08.mjs";
assert (f.c === 5)
assert (f.x === 41)
assert (!Object.hasOwnProperty(f, "default"));
assert (Object.getPrototypeOf(f) === null)
try {
Object.hasOwnProperty(f, "default")
assert (false);
} catch (e) {
assert (e instanceof TypeError)
}
Object.setPrototypeOf(f, null)
try {
Object.setPrototypeOf(f, {})
assert (false);
} catch (e) {
assert (e instanceof TypeError)
}