()
| 787 | var matchAll *Pattern |
| 788 | |
| 789 | func init() { |
| 790 | var err error |
| 791 | matchAll, err = NewPattern("*") |
| 792 | if err != nil { |
| 793 | panic(err) |
| 794 | } |
| 795 | } |
| 796 | |
| 797 | func newConfig() *Config { |
| 798 | return &Config{ |
nothing calls this directly
no test coverage detected