(value: unknown)
| 38 | const shownRunnableCodeLensErrors = new Set<string>(); |
| 39 | |
| 40 | function asObject(value: unknown): Record<string, unknown> | undefined { |
| 41 | return value != null && typeof value === 'object' ? (value as Record<string, unknown>) : undefined; |
| 42 | } |
| 43 | |
| 44 | function parsePosition(value: unknown): CodeLensPosition | undefined { |
| 45 | const position = asObject(value); |
no outgoing calls
no test coverage detected