(listState, key, value)
| 1050 | } |
| 1051 | |
| 1052 | function setListStateEntry(listState, key, value) { |
| 1053 | if (listState instanceof Map) { |
| 1054 | listState.set(key, value); |
| 1055 | return; |
| 1056 | } |
| 1057 | |
| 1058 | listState[key] = value; |
| 1059 | } |
| 1060 | |
| 1061 | function deleteListStateEntry(listState, key) { |
| 1062 | if (listState instanceof Map) { |
no test coverage detected