1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
|
// Copyright 2024 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// Package fillswitch identifies switches with missing cases.
//
// It reports a diagnostic for each type switch or 'enum' switch that
// has missing cases, and suggests a fix to fill them in.
//
// The possible cases are: for a type switch, each accessible named
// type T or pointer *T that is assignable to the interface type; and
// for an 'enum' switch, each accessible named constant of the same
// type as the switch value.
//
// For an 'enum' switch, it will suggest cases for all possible values of the
// type.
//
// type Suit int8
// const (
// Spades Suit = iota
// Hearts
// Diamonds
// Clubs
// )
//
// var s Suit
// switch s {
// case Spades:
// }
//
// It will report a diagnostic with a suggested fix to fill in the remaining
// cases:
//
// var s Suit
// switch s {
// case Spades:
// case Hearts:
// case Diamonds:
// case Clubs:
// default:
// panic(fmt.Sprintf("unexpected Suit: %v", s))
// }
//
// For a type switch, it will suggest cases for all types that implement the
// interface.
//
// var stmt ast.Stmt
// switch stmt.(type) {
// case *ast.IfStmt:
// }
//
// It will report a diagnostic with a suggested fix to fill in the remaining
// cases:
//
// var stmt ast.Stmt
// switch stmt.(type) {
// case *ast.IfStmt:
// case *ast.ForStmt:
// case *ast.RangeStmt:
// case *ast.AssignStmt:
// case *ast.GoStmt:
// ...
// default:
// panic(fmt.Sprintf("unexpected ast.Stmt: %T", stmt))
// }
package fillswitch
|