Export assignment expression must not track variables (#4660)

Only export the result of the assignment expression. This value cannot be changed later.

JerryScript-DCO-1.0-Signed-off-by: Zoltan Herczeg zherczeg.u-szeged@partner.samsung.com
This commit is contained in:
Zoltan Herczeg
2021-04-21 08:56:50 +02:00
committed by GitHub
parent dead11cdd0
commit b4bea25f13
7 changed files with 38 additions and 13 deletions
@@ -0,0 +1,16 @@
// 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 default function f() { return 1.5 }
export function g(v) { f = v; return "X" }
@@ -21,6 +21,7 @@ import foo6 from "./module-export-default-6.mjs"
import foo7 from "./module-export-default-7.mjs"
import foo8, { counter as bar8 } from "./module-export-default-8.mjs"
import foo9, { counter as bar9 } from "./module-export-default-9.mjs"
import foo10, { g as bar10 } from "./module-export-default-10.mjs"
let async_queue_expected = ["foo2", "foo3", "foo6", "foo7"];
let async_queue = [];
@@ -66,6 +67,13 @@ let async_queue = [];
assert(bar9 === 9.1);
})();
(function() {
var o = {}
assert(foo10() === 1.5);
assert(bar10(o) === "X");
assert(foo10 === o);
})();
Array.prototype.assertArrayEqual = function(expected) {
assert(this.length === expected.length);
print(this);
+3 -2
View File
@@ -26,5 +26,6 @@ assert(o.b === undefined);
assert(o.c(val) === "c")
assert(o.d === "d")
assert(o.default === val)
assert(def === val)
assert(o.a === val);
assert(o.default === 8.5)
assert(def === 8.5)
@@ -14,6 +14,7 @@
*/
import def, {a} from "./module-namespace-03.mjs"
/* Nothing is tracked, only the result value is exported. */
export default def
export {a}
+7 -1
View File
@@ -15,7 +15,13 @@
export var a = 2.5
export var b = 4
export var c = function(v) { def = v; return "c" }
export var c = function(v) {
assert(def === 0);
a = v;
return "c"
}
var def = 8.5
/* Nothing is tracked, only the result value is exported. */
export default def
def = 0