(&self)
| 947 | |
| 948 | impl SubscribeFrom { |
| 949 | pub fn depends_on(&self) -> BTreeSet<GlobalId> { |
| 950 | match self { |
| 951 | SubscribeFrom::Id(id) => BTreeSet::from([*id]), |
| 952 | SubscribeFrom::Query { expr, .. } => expr.depends_on(), |
| 953 | } |
| 954 | } |
| 955 | |
| 956 | pub fn contains_temporal(&self) -> bool { |
| 957 | match self { |
no outgoing calls
no test coverage detected