You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Variables that are imported with import statement and used in switch statement with string parameter
are not imported correctly in emitted JavaScript (no import statement emitted for those variables).
Using other types than string in switch does not cause the problem oddly.
I experienced the following problem:
Problem
Variables that are imported with
import
statement and used inswitch
statement with string parameterare not imported correctly in emitted JavaScript (no import statement emitted for those variables).
Using other types than string in
switch
does not cause the problem oddly.Version
Version 1.8.0-dev.20151112
Code
mod.ts
test.ts
Command
Output
tsc does not generate
import
statement forfoo
andbar
.test.js
The text was updated successfully, but these errors were encountered: