(value: any)
| 33 | } |
| 34 | |
| 35 | export function isCodeScope(value: any): value is CodeScope { |
| 36 | return value?.fragments !== undefined; |
| 37 | } |
| 38 | |
| 39 | export function parseCodeScope(value: PossibleCodeScope): CodeScope { |
| 40 | if (typeof value === 'string') { |
no outgoing calls
no test coverage detected