You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@thrift.apache.org by "Felipe Barriga Richards (JIRA)" <ji...@apache.org> on 2015/07/06 23:24:04 UTC

[jira] [Created] (THRIFT-3223) TypeScript: Add initial support for Enum Maps

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)