WithExcludedImages provides a list of image paths for which the parsing is skipped.
(images []string)
| 82 | // WithExcludedImages provides a list of image paths for |
| 83 | // which the parsing is skipped. |
| 84 | func WithExcludedImages(images []string) Option { |
| 85 | return func(o *opts) { |
| 86 | o.excludedImages = images |
| 87 | } |
| 88 | } |
| 89 | |
| 90 | // WithSymbols indicates import directory is parsed for imported symbols. |
| 91 | func WithSymbols() Option { |
no outgoing calls
no test coverage detected