(op string, attr CoreAttribute)
| 21 | } |
| 22 | |
| 23 | func isImmutable(op string, attr CoreAttribute) bool { |
| 24 | return attr.mutability == attributeMutabilityImmutable && (op == "replace" || op == "remove") |
| 25 | } |
| 26 | |
| 27 | func isReadOnly(attr CoreAttribute) bool { |
| 28 | return attr.mutability == attributeMutabilityReadOnly |
no outgoing calls
no test coverage detected
searching dependent graphs…