const Doc …
var Analyzer …
func runDirective(pass *analysis.Pass) (interface{ … }
func checkGoFile(pass *analysis.Pass, f *ast.File) { … }
func checkOtherFile(pass *analysis.Pass, filename string) error { … }
type checker …
func newChecker(pass *analysis.Pass, filename string, file *ast.File) *checker { … }
func (check *checker) nonGoFile(pos token.Pos, fullText string) { … }
func (check *checker) comment(pos token.Pos, line string) { … }
func stringsCutPrefix(s, prefix string) (after string, found bool) { … }