go/ast.DeclStmt.Decl (field)
9 uses
go/ast (current package)
ast.go#L634: Decl Decl // *GenDecl with CONST, TYPE, or VAR token
ast.go#L789: func (s *DeclStmt) Pos() token.Pos { return s.Decl.Pos() }
ast.go#L811: func (s *DeclStmt) End() token.Pos { return s.Decl.End() }
walk.go#L173: Walk(v, n.Decl)
go/parser
parser.go#L2452: s = &ast.DeclStmt{Decl: p.parseDecl(stmtStart)}
go/printer
nodes.go#L1355: p.decl(s.Decl)
go/types
labels.go#L126: if d, _ := s.Decl.(*ast.GenDecl); d != nil && d.Tok == token.VAR {
stmt.go#L434: check.declStmt(s.Decl)
golang.org/x/tools/go/ast/inspector
walk.go#L163: walk(v, edge.DeclStmt_Decl, -1, n.Decl)
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64)