package handlecmd

import "github.com/Diarkis/diarkis/analysis/passes/handlecmd"

Package handlecmd defines analyzer that detects usages of mesh.Handle_ which do not begin with the prefix "handle"

Analyzer handlecmd

handlecmd: check that there are no mesh.Handle_ usages for which the assigned functions are not prefixed with "handle"

We are checking to make suer that the following doens't happen with mesh.Handle_ usages:

Ex: We have bad function naming

mesh.HandleCommand(util.MeshCommand1, handleMeshCommand1) // good mesh.HandleCommand(util.MeshCommand1, meshCommand1) // bad

mesh.HandleRPC(util.MeshCommand1, handleMeshCommand1) // good mesh.HandleRPC(util.MeshCommand1, meshCommand1) // bad

Index

Variables

var Analyzer = &analysis.Analyzer{
	Name:     "handlecmd",
	Doc:      "Checks that mesh.Handle_ usages are prefixed with 'handle'",
	Requires: []*analysis.Analyzer{inspect.Analyzer},
	Run:      run,
}

Analyzer for handlecmd; checks that mesh.Handle_ usages are prefixed with 'handle'

Directories

cmd The handecmd command applies the github.com/Diarkis/diarkis/analysis/handlecmd analysis to the specified packages of Go source code.