| 264 | } |
| 265 | |
| 266 | string OpTypePattern::DebugString() const { |
| 267 | string result = "{" + op + ", {"; |
| 268 | for (const OpTypePattern& input : inputs) { |
| 269 | result += input.DebugString() + ","; |
| 270 | } |
| 271 | result += "}}"; |
| 272 | return result; |
| 273 | } |
| 274 | |
| 275 | string NodeMatch::DebugString() const { |
| 276 | string result = "{"; |
no outgoing calls