You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
337 B
9 lines
337 B
package vm
|
|
|
|
import (
|
|
// HACK: compile order
|
|
// `vm`, `vm_indent`, `vm_color`, `vm_color_indent` packages uses a lot of memory to compile,
|
|
// so forcibly make dependencies and avoid compiling in concurrent.
|
|
// dependency order: vm => vm_indent => vm_color => vm_color_indent
|
|
_ "github.com/goccy/go-json/internal/encoder/vm_indent"
|
|
)
|
|
|