In v10, the following variant compiles to values that are all numbers: 1, 2, etc:
type t =
| @as(1) Audio
| @as(2) Cache
| Config
| Data
...
In v11rc2, the variants with explicit as decorators compile to numbers, but those without compile to strings. Is it possible to get the old behavior to bind to numeric enum w/o adding a decorator for every constructor?