package gogrep import ( "fmt" "go/ast" "go/token" "strings" ) type bitmap64 uint64 func (m bitmap64) IsSet(pos int) bool { return m&(1<