From c93e9009daf7f047876c6a33923395751025a824 Mon Sep 17 00:00:00 2001 From: Camden Dixie O'Brien Date: Sun, 15 Mar 2026 13:45:03 +0000 Subject: [PATCH] LEB128-encode index in action_symbol --- asm.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/asm.js b/asm.js index 1f85c5f..4417384 100644 --- a/asm.js +++ b/asm.js @@ -971,7 +971,7 @@ export class Assembler { } func.body.push(...this.leb128(def_value)); } else { - func.body.push(value); + func.body.push(...this.leb128(value)); } }