go/ast.TypeSwitchStmt.Init (field)

9 uses

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

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

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

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