(name, msg)
| 2349 | var deprecations = {}; |
| 2350 | |
| 2351 | function deprecateSimple(name, msg) { |
| 2352 | if (!deprecations[name]) { |
| 2353 | warn(msg); |
| 2354 | deprecations[name] = true; |
| 2355 | } |
| 2356 | } |
| 2357 | |
| 2358 | utils_hooks__hooks.suppressDeprecationWarnings = false; |
| 2359 |