ember-source 2.2.0.beta.1 → 2.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of ember-source might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: fecc524448ba8b31acc6d1548947334a45fce3e0
4
- data.tar.gz: 4f5981648b2ee5b398f6193774a6435526a17f69
3
+ metadata.gz: 6eede293d6c9d4396c1a16862918ad7486d711e5
4
+ data.tar.gz: 48b769f0a7a86c10c64c136f1e50b8072b753611
5
5
  SHA512:
6
- metadata.gz: b92913f8146d990a5ddedfa655fb2c37f7c17824d8d2008bae18db9152cb3abb463f62c0db29e34b6a8cbebf179a1555020bec6e0b165865fd52bf535db59d90
7
- data.tar.gz: 426a394c334cbefb2679458f9d2f52fd295e1a2a79c218964207f6bad79d41035d2c8047eecb6f659118289f833db67f918dc73b6ecf8fa459125552598a672c
6
+ metadata.gz: 763b6ca60c49529430b2005025743e47d9c024b8aa03bd38eea460ebc2756f9ee7d29d8afb80e308b752a705c33c3bcfb5492f7a2628739afacf5243cad0e035
7
+ data.tar.gz: c81a99e0203f1374f7d62466d383ad6543369c9420a402c5bd0a608657591edbe094bc2002680dfda93df1b15a2a7cef2fd428384d1e0579b4e109e50d46ae7f
data/VERSION CHANGED
@@ -1 +1 @@
1
- 2.2.0-beta.1
1
+ 2.2.0
@@ -6,7 +6,7 @@
6
6
  * Portions Copyright 2008-2011 Apple Inc. All rights reserved.
7
7
  * @license Licensed under MIT license
8
8
  * See https://raw.github.com/emberjs/ember.js/master/LICENSE
9
- * @version 2.2.0-beta.1
9
+ * @version 2.2.0
10
10
  */
11
11
 
12
12
  var enifed, requireModule, require, requirejs, Ember;
@@ -4118,7 +4118,7 @@ enifed('ember-metal/computed_macros', ['exports', 'ember-metal/core', 'ember-met
4118
4118
  /**
4119
4119
  A computed property which matches the original value for the
4120
4120
  dependent property against a given RegExp, returning `true`
4121
- if they values matches the RegExp and `false` if it does not.
4121
+ if the value matches the RegExp and `false` if it does not.
4122
4122
 
4123
4123
  Example
4124
4124
 
@@ -4619,7 +4619,7 @@ enifed('ember-metal/core', ['exports'], function (exports) {
4619
4619
 
4620
4620
  @class Ember
4621
4621
  @static
4622
- @version 2.2.0-beta.1
4622
+ @version 2.2.0
4623
4623
  @public
4624
4624
  */
4625
4625
 
@@ -4663,11 +4663,11 @@ enifed('ember-metal/core', ['exports'], function (exports) {
4663
4663
 
4664
4664
  @property VERSION
4665
4665
  @type String
4666
- @default '2.2.0-beta.1'
4666
+ @default '2.2.0'
4667
4667
  @static
4668
4668
  @public
4669
4669
  */
4670
- Ember.VERSION = '2.2.0-beta.1';
4670
+ Ember.VERSION = '2.2.0';
4671
4671
 
4672
4672
  /**
4673
4673
  The hash of environment variables used to control various configuration
@@ -5010,6 +5010,7 @@ enifed('ember-metal/environment', ['exports', 'ember-metal/core'], function (exp
5010
5010
  hasDOM: true,
5011
5011
  isChrome: !!window.chrome && !window.opera,
5012
5012
  isFirefox: typeof InstallTrigger !== 'undefined',
5013
+ isPhantom: !!window.callPhantom,
5013
5014
  location: window.location,
5014
5015
  history: window.history,
5015
5016
  userAgent: window.navigator.userAgent,
@@ -5020,6 +5021,7 @@ enifed('ember-metal/environment', ['exports', 'ember-metal/core'], function (exp
5020
5021
  hasDOM: false,
5021
5022
  isChrome: false,
5022
5023
  isFirefox: false,
5024
+ isPhantom: false,
5023
5025
  location: null,
5024
5026
  history: null,
5025
5027
  userAgent: 'Lynx (textmode)',
@@ -5981,7 +5983,7 @@ enifed("ember-metal/is_none", ["exports"], function (exports) {
5981
5983
  Ember.isNone(undefined); // true
5982
5984
  Ember.isNone(''); // false
5983
5985
  Ember.isNone([]); // false
5984
- Ember.isNone(function() {}); // false
5986
+ Ember.isNone(function() {}); // false
5985
5987
  ```
5986
5988
 
5987
5989
  @method isNone
@@ -6010,12 +6012,12 @@ enifed('ember-metal/is_present', ['exports', 'ember-metal/is_blank'], function (
6010
6012
  Ember.isPresent(); // false
6011
6013
  Ember.isPresent(null); // false
6012
6014
  Ember.isPresent(undefined); // false
6013
- Ember.isPresent(false); // false
6014
6015
  Ember.isPresent(''); // false
6015
6016
  Ember.isPresent([]); // false
6016
6017
  Ember.isPresent('\n\t'); // false
6017
6018
  Ember.isPresent(' '); // false
6018
6019
  Ember.isPresent({}); // true
6020
+ Ember.isPresent(false); // true
6019
6021
  Ember.isPresent('\n\t Hello'); // true
6020
6022
  Ember.isPresent('Hello world'); // true
6021
6023
  Ember.isPresent([1,2,3]); // true
@@ -6033,59 +6035,6 @@ enifed('ember-metal/is_present', ['exports', 'ember-metal/is_blank'], function (
6033
6035
  return !_emberMetalIs_blank.default(obj);
6034
6036
  }
6035
6037
  });
6036
- enifed('ember-metal/keys', ['exports'], function (exports) {
6037
- /**
6038
- Returns all of the keys defined on an object or hash. This is useful
6039
- when inspecting objects for debugging. On browsers that support it, this
6040
- uses the native `Object.keys` implementation.
6041
-
6042
- @method keys
6043
- @for Ember
6044
- @param {Object} obj
6045
- @return {Array} Array containing keys of obj
6046
- @private
6047
- */
6048
- 'use strict';
6049
-
6050
- var keys = Object.keys;
6051
-
6052
- if (!keys) {
6053
- // modified from
6054
- // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/keys
6055
- keys = (function () {
6056
- var hasOwnProperty = Object.prototype.hasOwnProperty;
6057
- var hasDontEnumBug = !({ toString: null }).propertyIsEnumerable('toString');
6058
- var dontEnums = ['toString', 'toLocaleString', 'valueOf', 'hasOwnProperty', 'isPrototypeOf', 'propertyIsEnumerable', 'constructor'];
6059
- var dontEnumsLength = dontEnums.length;
6060
-
6061
- return function keys(obj) {
6062
- if (typeof obj !== 'object' && (typeof obj !== 'function' || obj === null)) {
6063
- throw new TypeError('Object.keys called on non-object');
6064
- }
6065
-
6066
- var result = [];
6067
- var prop, i;
6068
-
6069
- for (prop in obj) {
6070
- if (prop !== '_super' && prop.lastIndexOf('__', 0) !== 0 && hasOwnProperty.call(obj, prop)) {
6071
- result.push(prop);
6072
- }
6073
- }
6074
-
6075
- if (hasDontEnumBug) {
6076
- for (i = 0; i < dontEnumsLength; i++) {
6077
- if (hasOwnProperty.call(obj, dontEnums[i])) {
6078
- result.push(dontEnums[i]);
6079
- }
6080
- }
6081
- }
6082
- return result;
6083
- };
6084
- })();
6085
- }
6086
-
6087
- exports.default = keys;
6088
- });
6089
6038
  enifed('ember-metal/libraries', ['exports', 'ember-metal/debug', 'ember-metal/features'], function (exports, _emberMetalDebug, _emberMetalFeatures) {
6090
6039
  'use strict';
6091
6040
 
@@ -11265,7 +11214,7 @@ enifed('ember-metal/utils', ['exports'], function (exports) {
11265
11214
  var checkHasSuper = (function () {
11266
11215
  var sourceAvailable = (function () {
11267
11216
  return this;
11268
- }).toString().indexOf('return this;') > -1;
11217
+ }).toString().indexOf('return this') > -1;
11269
11218
 
11270
11219
  if (sourceAvailable) {
11271
11220
  return function checkHasSuper(func) {
@@ -11278,6 +11227,7 @@ enifed('ember-metal/utils', ['exports'], function (exports) {
11278
11227
  };
11279
11228
  })();
11280
11229
 
11230
+ exports.checkHasSuper = checkHasSuper;
11281
11231
  function ROOT() {}
11282
11232
  ROOT.__hasSuper = false;
11283
11233
 
@@ -12081,7 +12031,7 @@ enifed('ember-runtime/compare', ['exports', 'ember-runtime/utils', 'ember-runtim
12081
12031
  @param {Object} v First value to compare
12082
12032
  @param {Object} w Second value to compare
12083
12033
  @return {Number} -1 if v < w, 0 if v = w and 1 if v > w.
12084
- @private
12034
+ @public
12085
12035
  */
12086
12036
 
12087
12037
  function compare(v, w) {
@@ -6,7 +6,7 @@
6
6
  * Portions Copyright 2008-2011 Apple Inc. All rights reserved.
7
7
  * @license Licensed under MIT license
8
8
  * See https://raw.github.com/emberjs/ember.js/master/LICENSE
9
- * @version 2.2.0-beta.1
9
+ * @version 2.2.0
10
10
  */
11
11
 
12
12
  var enifed, requireModule, require, requirejs, Ember;
@@ -1266,6 +1266,11 @@ enifed('ember-debug/deprecate', ['exports', 'ember-metal/core', 'ember-metal/err
1266
1266
  var missingOptionsUntilDeprecation = 'When calling `Ember.deprecate` you must provide `until` in options.';
1267
1267
 
1268
1268
  exports.missingOptionsUntilDeprecation = missingOptionsUntilDeprecation;
1269
+ /**
1270
+ @module ember
1271
+ @submodule ember-debug
1272
+ */
1273
+
1269
1274
  /**
1270
1275
  Display a deprecation warning with the provided message and a stack trace
1271
1276
  (Chrome and Firefox only). Ember build tools will remove any calls to
@@ -1280,6 +1285,7 @@ enifed('ember-debug/deprecate', ['exports', 'ember-metal/core', 'ember-metal/err
1280
1285
  `id` for this deprecation. The `id` can be used by Ember debugging tools
1281
1286
  to change the behavior (raise, log or silence) for that specific deprecation.
1282
1287
  The `id` should be namespaced by dots, e.g. "view.helper.select".
1288
+ @for Ember
1283
1289
  @public
1284
1290
  */
1285
1291
 
@@ -1391,6 +1397,11 @@ enifed('ember-debug/warn', ['exports', 'ember-metal/logger', 'ember-metal/debug'
1391
1397
  var missingOptionsIdDeprecation = 'When calling `Ember.warn` you must provide `id` in options.';
1392
1398
 
1393
1399
  exports.missingOptionsIdDeprecation = missingOptionsIdDeprecation;
1400
+ /**
1401
+ @module ember
1402
+ @submodule ember-debug
1403
+ */
1404
+
1394
1405
  /**
1395
1406
  Display a warning with the provided message. Ember build tools will
1396
1407
  remove any calls to `Ember.warn()` when doing a production build.
@@ -1399,6 +1410,11 @@ enifed('ember-debug/warn', ['exports', 'ember-metal/logger', 'ember-metal/debug'
1399
1410
  @param {String} message A warning to display.
1400
1411
  @param {Boolean} test An optional boolean. If falsy, the warning
1401
1412
  will be displayed.
1413
+ @param {Object} options An ojbect that can be used to pass a unique
1414
+ `id` for this warning. The `id` can be used by Ember debugging tools
1415
+ to change the behavior (raise, log, or silence) for that specific warning.
1416
+ The `id` should be namespaced by dots, e.g. "ember-debug.feature-flag-with-features-stripped"
1417
+ @for Ember
1402
1418
  @public
1403
1419
  */
1404
1420
 
@@ -1584,7 +1600,9 @@ enifed('ember-debug', ['exports', 'ember-metal/core', 'ember-metal/debug', 'embe
1584
1600
  });
1585
1601
 
1586
1602
  _emberMetalDebug.setDebugFunction('deprecate', _emberDebugDeprecate.default);
1603
+
1587
1604
  _emberMetalDebug.setDebugFunction('warn', _emberDebugWarn.default);
1605
+
1588
1606
  /**
1589
1607
  Will call `Ember.warn()` if ENABLE_ALL_FEATURES, ENABLE_OPTIONAL_FEATURES, or
1590
1608
  any specific FEATURES flag is truthy.
@@ -1672,6 +1690,7 @@ enifed('ember-debug', ['exports', 'ember-metal/core', 'ember-metal/debug', 'embe
1672
1690
  @static
1673
1691
  @method registerDeprecationHandler
1674
1692
  @param handler {Function} a function to handle deprecation calls
1693
+ @since 2.1.0
1675
1694
  */
1676
1695
  _emberMetalCore.default.Debug.registerDeprecationHandler = _emberDebugDeprecate.registerHandler;
1677
1696
  /**
@@ -1696,6 +1715,7 @@ enifed('ember-debug', ['exports', 'ember-metal/core', 'ember-metal/debug', 'embe
1696
1715
  @static
1697
1716
  @method registerWarnHandler
1698
1717
  @param handler {Function} a function to handle warnings
1718
+ @since 2.1.0
1699
1719
  */
1700
1720
  _emberMetalCore.default.Debug.registerWarnHandler = _emberDebugWarn.registerHandler;
1701
1721
 
@@ -3615,7 +3635,7 @@ enifed('ember-metal/computed_macros', ['exports', 'ember-metal/core', 'ember-met
3615
3635
  /**
3616
3636
  A computed property which matches the original value for the
3617
3637
  dependent property against a given RegExp, returning `true`
3618
- if they values matches the RegExp and `false` if it does not.
3638
+ if the value matches the RegExp and `false` if it does not.
3619
3639
 
3620
3640
  Example
3621
3641
 
@@ -4116,7 +4136,7 @@ enifed('ember-metal/core', ['exports'], function (exports) {
4116
4136
 
4117
4137
  @class Ember
4118
4138
  @static
4119
- @version 2.2.0-beta.1
4139
+ @version 2.2.0
4120
4140
  @public
4121
4141
  */
4122
4142
 
@@ -4160,11 +4180,11 @@ enifed('ember-metal/core', ['exports'], function (exports) {
4160
4180
 
4161
4181
  @property VERSION
4162
4182
  @type String
4163
- @default '2.2.0-beta.1'
4183
+ @default '2.2.0'
4164
4184
  @static
4165
4185
  @public
4166
4186
  */
4167
- Ember.VERSION = '2.2.0-beta.1';
4187
+ Ember.VERSION = '2.2.0';
4168
4188
 
4169
4189
  /**
4170
4190
  The hash of environment variables used to control various configuration
@@ -4507,6 +4527,7 @@ enifed('ember-metal/environment', ['exports', 'ember-metal/core'], function (exp
4507
4527
  hasDOM: true,
4508
4528
  isChrome: !!window.chrome && !window.opera,
4509
4529
  isFirefox: typeof InstallTrigger !== 'undefined',
4530
+ isPhantom: !!window.callPhantom,
4510
4531
  location: window.location,
4511
4532
  history: window.history,
4512
4533
  userAgent: window.navigator.userAgent,
@@ -4517,6 +4538,7 @@ enifed('ember-metal/environment', ['exports', 'ember-metal/core'], function (exp
4517
4538
  hasDOM: false,
4518
4539
  isChrome: false,
4519
4540
  isFirefox: false,
4541
+ isPhantom: false,
4520
4542
  location: null,
4521
4543
  history: null,
4522
4544
  userAgent: 'Lynx (textmode)',
@@ -5478,7 +5500,7 @@ enifed("ember-metal/is_none", ["exports"], function (exports) {
5478
5500
  Ember.isNone(undefined); // true
5479
5501
  Ember.isNone(''); // false
5480
5502
  Ember.isNone([]); // false
5481
- Ember.isNone(function() {}); // false
5503
+ Ember.isNone(function() {}); // false
5482
5504
  ```
5483
5505
 
5484
5506
  @method isNone
@@ -5507,12 +5529,12 @@ enifed('ember-metal/is_present', ['exports', 'ember-metal/is_blank'], function (
5507
5529
  Ember.isPresent(); // false
5508
5530
  Ember.isPresent(null); // false
5509
5531
  Ember.isPresent(undefined); // false
5510
- Ember.isPresent(false); // false
5511
5532
  Ember.isPresent(''); // false
5512
5533
  Ember.isPresent([]); // false
5513
5534
  Ember.isPresent('\n\t'); // false
5514
5535
  Ember.isPresent(' '); // false
5515
5536
  Ember.isPresent({}); // true
5537
+ Ember.isPresent(false); // true
5516
5538
  Ember.isPresent('\n\t Hello'); // true
5517
5539
  Ember.isPresent('Hello world'); // true
5518
5540
  Ember.isPresent([1,2,3]); // true
@@ -5530,59 +5552,6 @@ enifed('ember-metal/is_present', ['exports', 'ember-metal/is_blank'], function (
5530
5552
  return !_emberMetalIs_blank.default(obj);
5531
5553
  }
5532
5554
  });
5533
- enifed('ember-metal/keys', ['exports'], function (exports) {
5534
- /**
5535
- Returns all of the keys defined on an object or hash. This is useful
5536
- when inspecting objects for debugging. On browsers that support it, this
5537
- uses the native `Object.keys` implementation.
5538
-
5539
- @method keys
5540
- @for Ember
5541
- @param {Object} obj
5542
- @return {Array} Array containing keys of obj
5543
- @private
5544
- */
5545
- 'use strict';
5546
-
5547
- var keys = Object.keys;
5548
-
5549
- if (!keys) {
5550
- // modified from
5551
- // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/keys
5552
- keys = (function () {
5553
- var hasOwnProperty = Object.prototype.hasOwnProperty;
5554
- var hasDontEnumBug = !({ toString: null }).propertyIsEnumerable('toString');
5555
- var dontEnums = ['toString', 'toLocaleString', 'valueOf', 'hasOwnProperty', 'isPrototypeOf', 'propertyIsEnumerable', 'constructor'];
5556
- var dontEnumsLength = dontEnums.length;
5557
-
5558
- return function keys(obj) {
5559
- if (typeof obj !== 'object' && (typeof obj !== 'function' || obj === null)) {
5560
- throw new TypeError('Object.keys called on non-object');
5561
- }
5562
-
5563
- var result = [];
5564
- var prop, i;
5565
-
5566
- for (prop in obj) {
5567
- if (prop !== '_super' && prop.lastIndexOf('__', 0) !== 0 && hasOwnProperty.call(obj, prop)) {
5568
- result.push(prop);
5569
- }
5570
- }
5571
-
5572
- if (hasDontEnumBug) {
5573
- for (i = 0; i < dontEnumsLength; i++) {
5574
- if (hasOwnProperty.call(obj, dontEnums[i])) {
5575
- result.push(dontEnums[i]);
5576
- }
5577
- }
5578
- }
5579
- return result;
5580
- };
5581
- })();
5582
- }
5583
-
5584
- exports.default = keys;
5585
- });
5586
5555
  enifed('ember-metal/libraries', ['exports', 'ember-metal/debug', 'ember-metal/features'], function (exports, _emberMetalDebug, _emberMetalFeatures) {
5587
5556
  'use strict';
5588
5557
 
@@ -10737,7 +10706,7 @@ enifed('ember-metal/utils', ['exports'], function (exports) {
10737
10706
  var checkHasSuper = (function () {
10738
10707
  var sourceAvailable = (function () {
10739
10708
  return this;
10740
- }).toString().indexOf('return this;') > -1;
10709
+ }).toString().indexOf('return this') > -1;
10741
10710
 
10742
10711
  if (sourceAvailable) {
10743
10712
  return function checkHasSuper(func) {
@@ -10750,6 +10719,7 @@ enifed('ember-metal/utils', ['exports'], function (exports) {
10750
10719
  };
10751
10720
  })();
10752
10721
 
10722
+ exports.checkHasSuper = checkHasSuper;
10753
10723
  function ROOT() {}
10754
10724
  ROOT.__hasSuper = false;
10755
10725
 
@@ -12545,7 +12515,7 @@ enifed('ember-template-compiler/system/compile_options', ['exports', 'ember-meta
12545
12515
  options.buildMeta = function buildMeta(program) {
12546
12516
  return {
12547
12517
  fragmentReason: fragmentReason(program),
12548
- revision: 'Ember@2.2.0-beta.1',
12518
+ revision: 'Ember@2.2.0',
12549
12519
  loc: program.loc,
12550
12520
  moduleName: options.moduleName
12551
12521
  };
@@ -6,7 +6,7 @@
6
6
  * Portions Copyright 2008-2011 Apple Inc. All rights reserved.
7
7
  * @license Licensed under MIT license
8
8
  * See https://raw.github.com/emberjs/ember.js/master/LICENSE
9
- * @version 2.2.0-beta.1
9
+ * @version 2.2.0
10
10
  */
11
11
 
12
12
  var enifed, requireModule, require, requirejs, Ember;
@@ -177,6 +177,11 @@ enifed('ember-debug/deprecate', ['exports', 'ember-metal/core', 'ember-metal/err
177
177
  var missingOptionsUntilDeprecation = 'When calling `Ember.deprecate` you must provide `until` in options.';
178
178
 
179
179
  exports.missingOptionsUntilDeprecation = missingOptionsUntilDeprecation;
180
+ /**
181
+ @module ember
182
+ @submodule ember-debug
183
+ */
184
+
180
185
  /**
181
186
  Display a deprecation warning with the provided message and a stack trace
182
187
  (Chrome and Firefox only). Ember build tools will remove any calls to
@@ -191,6 +196,7 @@ enifed('ember-debug/deprecate', ['exports', 'ember-metal/core', 'ember-metal/err
191
196
  `id` for this deprecation. The `id` can be used by Ember debugging tools
192
197
  to change the behavior (raise, log or silence) for that specific deprecation.
193
198
  The `id` should be namespaced by dots, e.g. "view.helper.select".
199
+ @for Ember
194
200
  @public
195
201
  */
196
202
 
@@ -302,6 +308,11 @@ enifed('ember-debug/warn', ['exports', 'ember-metal/logger', 'ember-metal/debug'
302
308
  var missingOptionsIdDeprecation = 'When calling `Ember.warn` you must provide `id` in options.';
303
309
 
304
310
  exports.missingOptionsIdDeprecation = missingOptionsIdDeprecation;
311
+ /**
312
+ @module ember
313
+ @submodule ember-debug
314
+ */
315
+
305
316
  /**
306
317
  Display a warning with the provided message. Ember build tools will
307
318
  remove any calls to `Ember.warn()` when doing a production build.
@@ -310,6 +321,11 @@ enifed('ember-debug/warn', ['exports', 'ember-metal/logger', 'ember-metal/debug'
310
321
  @param {String} message A warning to display.
311
322
  @param {Boolean} test An optional boolean. If falsy, the warning
312
323
  will be displayed.
324
+ @param {Object} options An ojbect that can be used to pass a unique
325
+ `id` for this warning. The `id` can be used by Ember debugging tools
326
+ to change the behavior (raise, log, or silence) for that specific warning.
327
+ The `id` should be namespaced by dots, e.g. "ember-debug.feature-flag-with-features-stripped"
328
+ @for Ember
313
329
  @public
314
330
  */
315
331
 
@@ -495,7 +511,9 @@ enifed('ember-debug', ['exports', 'ember-metal/core', 'ember-metal/debug', 'embe
495
511
  });
496
512
 
497
513
  _emberMetalDebug.setDebugFunction('deprecate', _emberDebugDeprecate.default);
514
+
498
515
  _emberMetalDebug.setDebugFunction('warn', _emberDebugWarn.default);
516
+
499
517
  /**
500
518
  Will call `Ember.warn()` if ENABLE_ALL_FEATURES, ENABLE_OPTIONAL_FEATURES, or
501
519
  any specific FEATURES flag is truthy.
@@ -583,6 +601,7 @@ enifed('ember-debug', ['exports', 'ember-metal/core', 'ember-metal/debug', 'embe
583
601
  @static
584
602
  @method registerDeprecationHandler
585
603
  @param handler {Function} a function to handle deprecation calls
604
+ @since 2.1.0
586
605
  */
587
606
  _emberMetalCore.default.Debug.registerDeprecationHandler = _emberDebugDeprecate.registerHandler;
588
607
  /**
@@ -607,6 +626,7 @@ enifed('ember-debug', ['exports', 'ember-metal/core', 'ember-metal/debug', 'embe
607
626
  @static
608
627
  @method registerWarnHandler
609
628
  @param handler {Function} a function to handle warnings
629
+ @since 2.1.0
610
630
  */
611
631
  _emberMetalCore.default.Debug.registerWarnHandler = _emberDebugWarn.registerHandler;
612
632