(text: string)
| 160 | } |
| 161 | |
| 162 | function provider(text: string) { |
| 163 | const match = text.match(/^([A-Za-z]+)::(.*)$/) |
| 164 | if (match) { |
| 165 | if (match[1].toLowerCase() !== "filesystem") return |
| 166 | return match[2] |
| 167 | } |
| 168 | const prefix = text.match(/^([A-Za-z]+):(.*)$/) |
| 169 | if (!prefix) return text |
| 170 | if (prefix[1].length === 1) return text |
| 171 | return |
| 172 | } |
| 173 | |
| 174 | function dynamic(text: string, ps: boolean) { |
| 175 | if (text.startsWith("(") || text.startsWith("@(")) return true |
no outgoing calls
no test coverage detected