fix missing string-conversions
All checks were successful
/ test (push) Successful in 49s

This commit is contained in:
Neemek 2026-08-17 17:15:34 +02:00
parent 42fa039daf
commit 8d12c0bdf8
4 changed files with 17 additions and 3 deletions

View file

@ -268,6 +268,14 @@ func (b Bytecode) String() string {
return "INDEX_TUPLE"
case InstructionDestructureTuple:
return "DESTRUCTURE_TUPLE"
case InstructionModInt:
return "MOD_INT"
case InstructionNewRecord:
return "NEW_RECORD"
case InstructionSetRecordItem:
return "SET_PROPERTY"
case InstructionIndexString:
return "INDEX_STRING"
}
return "UNDEFINED"
}