go/ast.IfStmt.Init (field)

8 uses

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

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

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

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