Fix: add missing BuildAnnotationSet to ast v0 (#7349)

Fixes #7347

Signed-off-by: Anders Eknert <anders@styra.com>
This commit is contained in:
Anders Eknert
2025-02-09 20:35:03 +01:00
committed by GitHub
parent d00b575079
commit bdb11d4c7e
+4
View File
@@ -31,3 +31,7 @@ type (
func NewAnnotationsRef(a *Annotations) *AnnotationsRef {
return v1.NewAnnotationsRef(a)
}
func BuildAnnotationSet(modules []*Module) (*AnnotationSet, Errors) {
return v1.BuildAnnotationSet(modules)
}