(path: string | Array<string>)
| 18 | |
| 19 | // Helper functions to build expressions more easily |
| 20 | function ref(path: string | Array<string>): PropRef { |
| 21 | return new PropRef(typeof path === `string` ? [path] : path) |
| 22 | } |
| 23 | |
| 24 | function val(value: any): Value { |
| 25 | return new Value(value) |
no outgoing calls
no test coverage detected