( from: CollectionRefClass | QueryRefClass, )
| 875 | } |
| 876 | |
| 877 | function deepCopyJoinFrom( |
| 878 | from: CollectionRefClass | QueryRefClass, |
| 879 | ): CollectionRefClass | QueryRefClass { |
| 880 | return deepCopyFrom(from) as CollectionRefClass | QueryRefClass |
| 881 | } |
| 882 | |
| 883 | function optimizeNestedFrom(from: From): From { |
| 884 | if (from.type === `queryRef`) { |
no test coverage detected