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 22:58:04 UTC

[jira] [Created] (THRIFT-3222) TypeScript: Generated Enums are quoted

Felipe Barriga Richards created THRIFT-3222:
-----------------------------------------------

             Summary: TypeScript: Generated Enums are quoted
                 Key: THRIFT-3222
                 URL: https://issues.apache.org/jira/browse/THRIFT-3222
             Project: Thrift
          Issue Type: Bug
          Components: JavaScript - Compiler
            Reporter: Felipe Barriga Richards


Currently the generated enums looks like:
```
enum Foo {
   'A' = 0,
   'B'=1,
   'C'=2
}
```
And they should be:
```
enum Foo {
   A = 0,
   B = 1,
   C = 2
}
```

With this change WebStorm is able to autofill the values of the enum.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)