Felipe Barriga Richards created THRIFT-3223:
-----------------------------------------------
Summary: TypeScript: Add initial support for Enum Maps
Key: THRIFT-3223
URL: https://issues.apache.org/jira/browse/THRIFT-3223
Project: Thrift
Issue Type: Improvement
Components: JavaScript - Compiler
Reporter: Felipe Barriga Richards
Attachments: 0001-TypeScript-Added-support-for-maps-of-enums.patch
This patch improve the generation of maps with enums. More improvements can be
done but we need to have this issue solved first:
https://github.com/Microsoft/TypeScript/pull/2652
Old Code:
{code}
enum BarTypes {
A = 0,
B = 1
}
class Bar {
}
class Foo {
bars: any;
}
{code}
New Code:
{code}
enum BarTypes {
A = 0,
B = 1
}
class Bar {
}
class Foo {
bars: { [k: number /*BarTypes*/]: Bar;
}
{code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)