const Doc …
var Analyzer …
func runBuildTag(pass *analysis.Pass) (interface{ … }
func checkGoFile(pass *analysis.Pass, f *ast.File) { … }
func checkOtherFile(pass *analysis.Pass, filename string) error { … }
type checker …
func (check *checker) init(pass *analysis.Pass) { … }
func (check *checker) file(pos token.Pos, text string) { … }
func (check *checker) comment(pos token.Pos, text string) { … }
func (check *checker) goBuildLine(pos token.Pos, line string) { … }
func (check *checker) plusBuildLine(pos token.Pos, line string) { … }
func (check *checker) finish() { … }
func (check *checker) tags(pos token.Pos, e constraint.Expr) { … }
func malformedGoTag(tag string) bool { … }
func validTag(tag string) (valid bool, ok bool) { … }