github.com/jujuyuki/gospal@v1.0.1-0.20210215170718-af79fae13b20/prog/analyser.go (about)

     1  // Package prog provides the Analyser interface for programs.
     2  package prog
     3  
     4  // Analyser is an interface for Program analysis.
     5  type Analyser interface {
     6  	// Analyse is the entry point to the static analyser.
     7  	Analyse()
     8  }