Will add the `name` from arg if name is true.
| 503 | |
| 504 | // Will add the `name` from arg if name is true. |
| 505 | void AddName(string* s, bool name, const OpDef::ArgDef& arg) { |
| 506 | if (name) { |
| 507 | strings::StrAppend(s, arg.name(), ":"); |
| 508 | } |
| 509 | } |
| 510 | |
| 511 | // Compute a signature for either inputs or outputs that will be the |
| 512 | // same for both the old and new OpDef if they are compatible. We |
no test coverage detected