MCPcopy Create free account
hub / github.com/nsf/gocode / scope

Struct scope

scope.go:7–12  ·  view source on GitHub ↗

------------------------------------------------------------------------- scope -------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

5//-------------------------------------------------------------------------
6
7type scope struct {
8 // the package name that this scope resides in
9 pkgname string
10 parent *scope // nil for universe scope
11 entities map[string]*decl
12}
13
14func new_named_scope(outer *scope, name string) *scope {
15 s := new_scope(outer)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected