(type, target)
| 199 | } |
| 200 | var currentRecord, recordWithOldValue; |
| 201 | function getRecord(type, target) { |
| 202 | return currentRecord = new MutationRecord(type, target); |
| 203 | } |
| 204 | function getRecordWithOldValue(oldValue) { |
| 205 | if (recordWithOldValue) return recordWithOldValue; |
| 206 | recordWithOldValue = copyMutationRecord(currentRecord); |
no outgoing calls
no test coverage detected
searching dependent graphs…