(path: string | Array<string>)
| 9 | |
| 10 | // Helper functions to build expressions more easily |
| 11 | function ref(path: string | Array<string>): PropRef { |
| 12 | return new PropRef(typeof path === `string` ? [path] : path) |
| 13 | } |
| 14 | |
| 15 | function val<T>(value: T): Value<T> { |
| 16 | return new Value(value) |
no outgoing calls
no test coverage detected