go/ast.DeclStmt.Decl (field)

8 uses

	go/ast (current package)
		ast.go#L623: 		Decl Decl // *GenDecl with CONST, TYPE, or VAR token
		ast.go#L778: func (s *DeclStmt) Pos() token.Pos       { return s.Decl.Pos() }
		ast.go#L800: func (s *DeclStmt) End() token.Pos { return s.Decl.End() }
		walk.go#L173: 		Walk(v, n.Decl)

	go/parser
		parser.go#L2432: 		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#L432: 		check.declStmt(s.Decl)