()
| 300 | } |
| 301 | |
| 302 | func (undoState *UndoState) String() string { |
| 303 | return undoState.Serialized + fmt.Sprintf(" Deletion: %t", undoState.Deletion) |
| 304 | } |
| 305 | |
| 306 | func (undoState *UndoState) SameAs(other *UndoState) bool { |
| 307 | return undoState.Serialized == other.Serialized && other.Deletion == undoState.Deletion |
no outgoing calls
no test coverage detected