blob: 6744467a80616c42ec52b51addcdccc4a54d1ac8 (
plain)
1
2
3
4
5
6
7
8
9
10
|
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
// Package transform is a helper package for writing extensions that work
// by applying transforms to bodies.
//
// It defines a type for body transformers, and then provides utilities in
// terms of that type for working with transformers, including recursively
// applying such transforms as heirarchical block structures are extracted.
package transform
|