MCPcopy Create free account
hub / github.com/cogentcore/core / DoGoRecursive

Function DoGoRecursive

parse/cmd/parse/parse.go:70–86  ·  view source on GitHub ↗
(path string)

Source from the content-addressed store, hash-verified

68}
69
70func DoGoRecursive(path string) {
71 DoGoPath(path)
72 drs := fsx.Dirs(path)
73outer:
74 for _, dr := range drs {
75 if dr == "testdata" {
76 continue
77 }
78 for _, ex := range Excludes {
79 if dr == ex {
80 continue outer
81 }
82 }
83 sp := filepath.Join(path, dr)
84 DoGoRecursive(sp)
85 }
86}

Callers 1

mainFunction · 0.85

Calls 2

DirsFunction · 0.92
DoGoPathFunction · 0.85

Tested by

no test coverage detected