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

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_escaped_indent"
)