| 59 | using OutputControlSrc = InlineFunctionBodyOptions::OutputControlSource; |
| 60 | |
| 61 | Status GetOpSig(const string& op, const OpDef** sig) { |
| 62 | return OpRegistry::Global()->LookUpOpDef(op, sig); |
| 63 | } |
| 64 | |
| 65 | void HasError(const Status& s, StringPiece substr) { |
| 66 | EXPECT_TRUE(absl::StrContains(s.ToString(), substr)) |
nothing calls this directly
no test coverage detected