1 // Copyright 2019 The Kubernetes Authors. 2 // SPDX-License-Identifier: Apache-2.0 3 4 package walk 5 6 import ( 7 "sigs.k8s.io/kustomize/kyaml/yaml" 8 ) 9 10 // walkNonAssociativeSequence returns the value of VisitList 11 func (l Walker) walkNonAssociativeSequence() (*yaml.RNode, error) { 12 return l.VisitList(l.Sources, l.Schema, NonAssociateList) 13 } 14