fix missing string-conversions
This commit is contained in:
parent
ff11d7e0ed
commit
09ac16a42d
4 changed files with 17 additions and 3 deletions
|
|
@ -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"
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue