=== tests/cases/compiler/es6ExportClauseInEs5.ts === class c { >c : Symbol(c, Decl(es6ExportClauseInEs5.ts, 0, 0)) } interface i { >i : Symbol(i, Decl(es6ExportClauseInEs5.ts, 2, 1)) } module m { >m : Symbol(m, Decl(es6ExportClauseInEs5.ts, 4, 1)) export var x = 10; >x : Symbol(x, Decl(es6ExportClauseInEs5.ts, 6, 14)) } var x = 10; >x : Symbol(x, Decl(es6ExportClauseInEs5.ts, 8, 3)) module uninstantiated { >uninstantiated : Symbol(uninstantiated, Decl(es6ExportClauseInEs5.ts, 8, 11)) } export { c }; >c : Symbol(c, Decl(es6ExportClauseInEs5.ts, 11, 8)) export { c as c2 }; >c : Symbol(c2, Decl(es6ExportClauseInEs5.ts, 12, 8)) >c2 : Symbol(c2, Decl(es6ExportClauseInEs5.ts, 12, 8)) export { i, m as instantiatedModule }; >i : Symbol(i, Decl(es6ExportClauseInEs5.ts, 13, 8)) >m : Symbol(instantiatedModule, Decl(es6ExportClauseInEs5.ts, 13, 11)) >instantiatedModule : Symbol(instantiatedModule, Decl(es6ExportClauseInEs5.ts, 13, 11)) export { uninstantiated }; >uninstantiated : Symbol(uninstantiated, Decl(es6ExportClauseInEs5.ts, 14, 8)) export { x }; >x : Symbol(x, Decl(es6ExportClauseInEs5.ts, 15, 8))