| 31 | ) |
| 32 | |
| 33 | type Regexp struct { |
| 34 | modName string |
| 35 | instName string |
| 36 | |
| 37 | re *regexp.Regexp |
| 38 | replacements []string |
| 39 | |
| 40 | expandPlaceholders bool |
| 41 | } |
| 42 | |
| 43 | func NewRegexp(_ *container.C, modName, instName string) (module.Module, error) { |
| 44 | return &Regexp{ |
nothing calls this directly
no outgoing calls
no test coverage detected