(msg: string)
| 31 | } |
| 32 | |
| 33 | export function warnAboutProxyRequirement(msg: string) { |
| 34 | if (__DEV__ && globalState.verifyProxies) { |
| 35 | die( |
| 36 | "MobX is currently configured to be able to run in ES5 mode, but in ES5 MobX won't be able to " + |
| 37 | msg |
| 38 | ) |
| 39 | } |
| 40 | } |
| 41 | |
| 42 | export function getNextId() { |
| 43 | return ++globalState.mobxGuid |
no test coverage detected
searching dependent graphs…