(
public collection: CollectionImpl,
public alias: string,
)
| 85 | export class CollectionRef extends BaseExpression { |
| 86 | public type = `collectionRef` as const |
| 87 | constructor( |
| 88 | public collection: CollectionImpl, |
| 89 | public alias: string, |
| 90 | ) { |
| 91 | super() |
| 92 | } |
| 93 | } |
| 94 | |
| 95 | export class QueryRef extends BaseExpression { |
nothing calls this directly
no outgoing calls
no test coverage detected