```ts let x = false; export { x }; x = true; ``` Exported value should be `true`. Since ExportDeclaration's ~may appear only on the top level~ symbols do exist in the `scopeSymbol.exports` that would be easy to implement.
Exported value should be
true.Since ExportDeclaration's
may appear only on the top levelsymbols do exist in thescopeSymbol.exportsthat would be easy to implement.