Closed
Description
@unmanaged
decorator produce ASC crash in specific cases
Expected
AS207 Error like:
Source:
//@unmanaged
@unmanaged
export class Base {}
export class Boo {}
export class Foo extends Base {
constructor(public base: Boo) { super() }
}
Compiler: 0.19.12
Config:
{
"entries": [
"./src/main.ts"
],
"options": {
"binaryFile": "build/cart.wasm",
"runtime": "incremental",
"importMemory": true,
"initialMemory": 1,
"maximumMemory": 1,
"noExportMemory": true,
"zeroFilledMemory": true,
"memoryBase": 6560,
"asc_rtrace": true
},
"targets": {
"release": {
"optimizeLevel": 3,
"shrinkLevel": 0,
"noAssert": true
},
"debug": {
"sourceMap": "./cart.wasm.map",
"debug": true
}
}
}