test(es/typescript): Add a test for #2670 (#3589)

This commit is contained in:
Donny/강동윤 2022-02-16 21:02:40 +09:00 committed by GitHub
parent cbe87db4df
commit f469e653f8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,4 @@
export namespace TEST {
export const VAL1 = 'value1';
export const VAL2 = `${VAL1}_value2`;
}

View File

@ -0,0 +1,5 @@
export var TEST;
(function(TEST1) {
var VAL1 = TEST1.VAL1 = "value1";
var VAL2 = TEST1.VAL2 = `${VAL1}_value2`;
})(TEST || (TEST = {}));