| 35 | } |
| 36 | |
| 37 | virtual int process() noexcept override { |
| 38 | auto depend = vertex().anonymous_dependency(0); |
| 39 | auto emit = vertex().anonymous_emit(0); |
| 40 | if (depend != nullptr && emit != nullptr) { |
| 41 | BABYLON_LOG(INFO) << "forward"; |
| 42 | emit->forward(*depend); |
| 43 | } else { |
| 44 | BABYLON_LOG(INFO) << "none"; |
| 45 | } |
| 46 | return 0; |
| 47 | } |
| 48 | }; |
| 49 | |
| 50 | struct ExpressionTest : public ::testing::Test { |
nothing calls this directly
no test coverage detected