(
public path: Array<string>, // path to the property in the collection, with the alias as the first element
)
| 133 | export class PropRef<T = any> extends BaseExpression<T> { |
| 134 | public type = `ref` as const |
| 135 | constructor( |
| 136 | public path: Array<string>, // path to the property in the collection, with the alias as the first element |
| 137 | ) { |
| 138 | super() |
| 139 | } |
| 140 | } |
| 141 | |
| 142 | export class Value<T = any> extends BaseExpression<T> { |
nothing calls this directly
no outgoing calls
no test coverage detected