| 80 | } |
| 81 | |
| 82 | string AttrSlice::SummarizeNode() const { |
| 83 | return ndef_ ? SummarizeNodeDef(*ndef_) |
| 84 | : strings::StrCat( |
| 85 | "[", SummarizeAttrsHelper(*this, StringPiece()), "]"); |
| 86 | } |
| 87 | |
| 88 | string AttrSlice::DebugString() const { |
| 89 | std::vector<string> attr_key_vals; |
no test coverage detected