mirror of
https://github.com/hashicorp/packer.git
synced 2026-05-27 20:27:18 -04:00
* Updating the license from MPL to Business Source License Going forward, this project will be licensed under the Business Source License v1.1. Please see our blog post for more details at https://hashi.co/bsl-blog, FAQ at https://hashi.co/license-faq, and details of the license at www.hashicorp.com/bsl. * Update copyright file headers to BUSL-1.1 --------- Co-authored-by: hashicorp-copywrite[bot] <110428419+hashicorp-copywrite[bot]@users.noreply.github.com>
31 lines
753 B
Go
31 lines
753 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
package hcl2template
|
|
|
|
import (
|
|
"github.com/hashicorp/hcl/v2"
|
|
)
|
|
|
|
// HCL2Ref references to the source definition in configuration text file. It
|
|
// is used to tell were something was wrong, - like a warning or an error -
|
|
// long after it was parsed; allowing to give pointers as to where change/fix
|
|
// things in a file.
|
|
type HCL2Ref struct {
|
|
// references
|
|
DefRange hcl.Range
|
|
TypeRange hcl.Range
|
|
LabelsRanges []hcl.Range
|
|
|
|
// remainder of unparsed body
|
|
Rest hcl.Body
|
|
}
|
|
|
|
func newHCL2Ref(block *hcl.Block, rest hcl.Body) HCL2Ref {
|
|
return HCL2Ref{
|
|
Rest: rest,
|
|
DefRange: block.DefRange,
|
|
TypeRange: block.TypeRange,
|
|
LabelsRanges: block.LabelRanges,
|
|
}
|
|
}
|