Versions in this module Expand all Collapse all v0 v0.0.6 Mar 22, 2026 v0.0.5 Mar 22, 2026 Changes in this version + type Resolver struct + Registry *TypeRegistry + Resolved map[string]bool + SearchPaths []string + SkipUnresolved bool + func New(searchPaths []string) *Resolver + func (r *Resolver) ResolveDocument(doc *parser.Document, filename string) (_err error) + func (r *Resolver) ResolveFile(filename string) (_err error) + func (r *Resolver) SetSkipUnresolved(skip bool) + type TypeRegistry struct + Defs map[string]parser.Definition + func NewTypeRegistry() *TypeRegistry + func (r *TypeRegistry) All() map[string]parser.Definition + func (r *TypeRegistry) Lookup(qualifiedName string) (parser.Definition, bool) + func (r *TypeRegistry) LookupAllByShortName(shortName string) []struct{ ... } + func (r *TypeRegistry) LookupByShortName(shortName string) (parser.Definition, bool) + func (r *TypeRegistry) LookupQualifiedByShortName(shortName string) (string, parser.Definition, bool) + func (r *TypeRegistry) Register(qualifiedName string, def parser.Definition)