| 591 | QueryContext::QueryContext(Reference<DocTransaction> tr) : self(new QueryContextData(tr)) {} |
| 592 | |
| 593 | QueryContext* QueryContext::v_getSubContext(StringRef sub) { |
| 594 | return new QueryContext(*this, sub); |
| 595 | } |
| 596 | |
| 597 | QueryContext::QueryContext(QueryContext const& other, StringRef sub) : self(new QueryContextData(other.self, sub)) {} |
| 598 |
nothing calls this directly
no outgoing calls
no test coverage detected