summaryrefslogtreecommitdiff
path: root/vendor/github.com/goccy/go-json/internal/encoder/vm_escaped/hack.go
blob: 3ac51dda31f65b367637c8e91e7c921921889c3b (plain)
1
2
3
4
5
6
7
8
9
package vm_escaped

import (
	// HACK: compile order
	// `vm`, `vm_escaped`, `vm_indent`, `vm_escaped_indent` packages uses a lot of memory to compile,
	// so forcibly make dependencies and avoid compiling in concurrent.
	// dependency order: vm => vm_escaped => vm_indent => vm_escaped_indent
	_ "github.com/goccy/go-json/internal/encoder/vm_indent"
)