| 5 | import type { Scope } from './scope.js'; |
| 6 | |
| 7 | export interface Reference { |
| 8 | type: 'reference'; |
| 9 | |
| 10 | get(): Value; |
| 11 | |
| 12 | set(value: Value): void; |
| 13 | } |
| 14 | |
| 15 | export const Reference = { |
| 16 | variable(name: string, scope: Scope): Reference { |
no outgoing calls
no test coverage detected