go/ast.TypeSwitchStmt.Init (field)

9 uses

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

	go/parser
		parser.go#L2265: 		return &ast.TypeSwitchStmt{Switch: pos, Init: s1, Assign: s2, Body: body}
		resolver.go#L372: 		if n.Init != nil {
		resolver.go#L375: 			ast.Walk(r, n.Init)

	go/printer
		nodes.go#L1484: 		if s.Init != nil {
		nodes.go#L1486: 			p.stmt(s.Init, false)

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