Searched defs:embedNode (Results 1 – 1 of 1) sorted by relevance
135 type embedNode struct { struct136 name string // base name137 path string // absolute file path138 children map[string]*embedNode // non-nil for directory139 childNames []string // sorted147 func (n *embedNode) add(rootDir, src string) error {205 func (n *embedNode) isDir() bool {211 func (n *embedNode) get(path string) *embedNode {227 func (n *embedNode) walk(fn func(rel string, n *embedNode) error) error {291 func resolveEmbed(embed fileEmbed, root *embedNode) (matchedPaths, matchedFiles []string, err error…