Open
Description
Assembly script fails on parsing union string literals (https://www.typescriptlang.org/docs/handbook/2/everyday-types.html#literal-types). An example as simple as this fails:
export type BufferEncoding = 'utf8' | 'ascii';
ERROR TS1005: 'null' expected.
export type BufferEncoding = 'utf8' | 'ascii';