func go/types.NewScope
7 uses
go/types (current package)
labels.go#L15: all := NewScope(nil, body.Pos(), body.End(), "label")
package.go#L26: scope := NewScope(Universe, token.NoPos, token.NoPos, fmt.Sprintf("package %q", path))
resolver.go#L243: fileScope := NewScope(check.pkg.scope, pos, end, check.filename(fileNo))
scope.go#L35: func NewScope(parent *Scope, pos, end token.Pos, comment string) *Scope {
signature.go#L179: scope := NewScope(check.scope, token.NoPos, token.NoPos, "function body (temp. scope)")
stmt.go#L156: scope := NewScope(check.scope, node.Pos(), node.End(), comment)
universe.go#L229: Universe = NewScope(nil, token.NoPos, token.NoPos, "universe")