go/ast.IfStmt.Init (field)

8 uses

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

	go/parser
		parser.go#L2168: 	return &ast.IfStmt{If: pos, Init: init, Cond: cond, Body: body, Else: else_}
		resolver.go#L335: 		if n.Init != nil {
		resolver.go#L336: 			ast.Walk(r, n.Init)

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

	go/types
		stmt.go#L619: 		check.simpleStmt(s.Init)