We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f93d82d commit 12e4bdcCopy full SHA for 12e4bdc
internal/encoder/opcode.go
@@ -553,7 +553,7 @@ func (c *Opcode) dumpValue(code *Opcode) string {
553
554
func (c *Opcode) Dump() string {
555
codes := []string{}
556
- for code := c; code.Op != OpEnd; {
+ for code := c; code.Op != OpEnd && code.Op != OpInterfaceEnd; {
557
switch code.Op.CodeType() {
558
case CodeSliceHead:
559
codes = append(codes, c.dumpHead(code))
0 commit comments