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
@@ -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}