go/ast.IfStmt.Init (field)

8 uses

	go/ast (current package)
		ast.go#L689: 		Init Stmt      // initialization statement; or nil
		walk.go#L227: 		if n.Init != nil {
		walk.go#L228: 			Walk(v, n.Init)

	go/parser
		parser.go#L1930: 	return &ast.IfStmt{If: pos, Init: init, Cond: cond, Body: body, Else: else_}

	go/printer
		nodes.go#L1327: 		p.controlClause(false, s.Init, s.Cond, nil)

	golang.org/x/pkgsite/internal/godoc
		encode_ast.gen.go#L1873: 	if x.Init != nil {
		encode_ast.gen.go#L1875: 		e.EncodeAny(x.Init)
		encode_ast.gen.go#L1912: 			x.Init = d.DecodeAny().(ast.Stmt)