TypeScript/tests/baselines/reference/renameExportSpecifier.baseline
Andrew Branch 950b36192a
Fix renaming an ExportSpecifier name when propertyName is present (#36790)
* Fix renaming exportSpecifier name when propertyName is present

* Add baseline test for name without propertyName too
2020-02-13 16:55:52 -08:00

10 lines
202 B
Plaintext

/*====== /tests/cases/fourslash/a.ts ======*/
const name = {};
export { name as [|RENAME|] };
/*====== /tests/cases/fourslash/b.ts ======*/
import { RENAME } from './a';
const x = RENAME.toString();