708abb8c97
This is a super-invasive update since the "zcl" package in particular is referenced all over. There are probably still a few zcl references hanging around in comments, etc but this takes care of most of it.
24 lines
444 B
Go
24 lines
444 B
Go
package hclwrite
|
|
|
|
import (
|
|
"github.com/hashicorp/hcl2/hcl/hclsyntax"
|
|
)
|
|
|
|
type nativeNodeSorter struct {
|
|
Nodes []hclsyntax.Node
|
|
}
|
|
|
|
func (s nativeNodeSorter) Len() int {
|
|
return len(s.Nodes)
|
|
}
|
|
|
|
func (s nativeNodeSorter) Less(i, j int) bool {
|
|
rangeI := s.Nodes[i].Range()
|
|
rangeJ := s.Nodes[j].Range()
|
|
return rangeI.Start.Byte < rangeJ.Start.Byte
|
|
}
|
|
|
|
func (s nativeNodeSorter) Swap(i, j int) {
|
|
s.Nodes[i], s.Nodes[j] = s.Nodes[j], s.Nodes[i]
|
|
}
|