Skip to content

Unable to rename re-exported identifiers #7708

@falsandtru

Description

@falsandtru

VS2015

TypeScript Version:

1.8.6

Code

Rename var a to var c in a.ts.

// a.ts
export var a;
// b.ts
import {a} from './a';
export {a}

Expected behavior:

import {c} from './a';
export {c}

Actual behavior:

import {c} from './a';
export {a}

Metadata

Metadata

Assignees

Labels

BugA bug in TypeScriptDuplicateAn existing issue was already createdFixedA PR has been merged for this issue

Type

No type
No fields configured for issues without a type.

Projects

No projects

Relationships

None yet

Development

No branches or pull requests

Issue actions