scala-js-ts-importer
scala-js-ts-importer copied to clipboard
Enum values are not parsed correctly
Enum members can have optional values. At the moment they are parsed by parsing a number or a string. The specification, however, allows full expressions, like
enum Test {
Member = (1 << 2)
}