forked from mirror/go-json
35 lines
772 B
Go
35 lines
772 B
Go
package vm
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/goccy/go-json/internal/encoder"
|
|
)
|
|
|
|
func DebugRun(ctx *encoder.RuntimeContext, b []byte, codeSet *encoder.OpcodeSet) ([]byte, error) {
|
|
defer func() {
|
|
var code *encoder.Opcode
|
|
if (ctx.Option.Flag & encoder.HTMLEscapeOption) != 0 {
|
|
code = codeSet.EscapeKeyCode
|
|
} else {
|
|
code = codeSet.NoescapeKeyCode
|
|
}
|
|
|
|
if err := recover(); err != nil {
|
|
fmt.Println("=============[DEBUG]===============")
|
|
fmt.Println("* [TYPE]")
|
|
fmt.Println(codeSet.Type)
|
|
fmt.Printf("\n")
|
|
fmt.Println("* [ALL OPCODE]")
|
|
fmt.Println(code.Dump())
|
|
fmt.Printf("\n")
|
|
fmt.Println("* [CONTEXT]")
|
|
fmt.Printf("%+v\n", ctx)
|
|
fmt.Println("===================================")
|
|
panic(err)
|
|
}
|
|
}()
|
|
|
|
return Run(ctx, b, codeSet)
|
|
}
|