aboutsummaryrefslogtreecommitdiff
path: root/lib/compilers/pascal.ts
diff options
context:
space:
mode:
Diffstat (limited to 'lib/compilers/pascal.ts')
-rw-r--r--lib/compilers/pascal.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/compilers/pascal.ts b/lib/compilers/pascal.ts
index 01b04b607..569821feb 100644
--- a/lib/compilers/pascal.ts
+++ b/lib/compilers/pascal.ts
@@ -62,7 +62,7 @@ export class FPCCompiler extends BaseCompiler {
return [];
}
- override processAsm(result, filters) {
+ override async processAsm(result, filters) {
// TODO: Pascal doesn't have a demangler exe, it's the only compiler that's weird like this
this.demangler = new (unwrap(this.demanglerClass))(null as any, this);
return this.asm.process(result.asm, filters);