LEB128-encode index in action_symbol

This commit is contained in:
2026-03-15 13:45:03 +00:00
parent 0056610238
commit c93e9009da

2
asm.js
View File

@@ -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));
}
}