| 184 | } |
| 185 | |
| 186 | string OpRegistry::DebugString(bool include_internal) const { |
| 187 | OpList op_list; |
| 188 | Export(include_internal, &op_list); |
| 189 | string ret; |
| 190 | for (const auto& op : op_list.op()) { |
| 191 | strings::StrAppend(&ret, SummarizeOpDef(op), "\n"); |
| 192 | } |
| 193 | return ret; |
| 194 | } |
| 195 | |
| 196 | bool OpRegistry::MustCallDeferred() const { |
| 197 | if (initialized_) return false; |