From 0056610238ab34979ade122cb6deaea209d856ad Mon Sep 17 00:00:00 2001 From: Camden Dixie O'Brien Date: Sun, 15 Mar 2026 13:44:45 +0000 Subject: [PATCH] Add missing semicolon --- asm.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/asm.js b/asm.js index bb03c0c..1f85c5f 100644 --- a/asm.js +++ b/asm.js @@ -961,7 +961,7 @@ export class Assembler { ?? this.lookup_global(action.symbol) ?? this.lookup_table(action.symbol) ?? this.lookup_type(action.symbol) - ?? this.lookup_func(action.symbol) + ?? this.lookup_func(action.symbol); if (value == null) { const def_value = this.lookup_def(action.symbol); if (def_value == null) {