ember-source 4.9.0-alpha.3 → 4.9.0-alpha.4

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.
package/docs/data.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "name": "The Ember API",
4
4
  "description": "The Ember API: a framework for building ambitious web applications",
5
5
  "url": "https://emberjs.com/",
6
- "version": "4.9.0-alpha.3"
6
+ "version": "4.9.0-alpha.4"
7
7
  },
8
8
  "files": {
9
9
  "node_modules/rsvp/lib/rsvp/promise/all.js": {
@@ -2025,7 +2025,7 @@
2025
2025
  "namespaces": {},
2026
2026
  "tag": "module",
2027
2027
  "file": "packages/@ember/array/index.ts",
2028
- "line": 1461
2028
+ "line": 1457
2029
2029
  },
2030
2030
  "@ember/application/namespace": {
2031
2031
  "name": "@ember/application/namespace",
@@ -2104,7 +2104,7 @@
2104
2104
  },
2105
2105
  "tag": "module",
2106
2106
  "file": "packages/@ember/controller/index.ts",
2107
- "line": 334
2107
+ "line": 335
2108
2108
  },
2109
2109
  "@ember/debug/container-debug-adapter": {
2110
2110
  "name": "@ember/debug/container-debug-adapter",
@@ -2130,7 +2130,7 @@
2130
2130
  "namespaces": {},
2131
2131
  "tag": "module",
2132
2132
  "file": "packages/@ember/debug/data-adapter.ts",
2133
- "line": 158
2133
+ "line": 173
2134
2134
  },
2135
2135
  "@ember/destroyable": {
2136
2136
  "name": "@ember/destroyable",
@@ -3264,7 +3264,7 @@
3264
3264
  "module": "@ember/array",
3265
3265
  "namespace": "",
3266
3266
  "file": "packages/@ember/array/index.ts",
3267
- "line": 1461,
3267
+ "line": 1457,
3268
3268
  "description": "This mixin defines the API for modifying array-like objects. These methods\ncan be applied only to a collection that keeps its items in an ordered set.\nIt builds upon the Array mixin and adds methods to modify the array.\nOne concrete implementations of this class include ArrayProxy.\n\nIt is important to use the methods in this class to modify arrays so that\nchanges are observable. This allows the binding system in Ember to function\ncorrectly.\n\n\nNote that an Array can change even if it does not implement this mixin.\nFor example, one might implement a SparseArray that cannot be directly\nmodified, but if its underlying enumerable changes, it will change also.",
3269
3269
  "uses": [
3270
3270
  "EmberArray",
@@ -3284,7 +3284,7 @@
3284
3284
  "module": "ember",
3285
3285
  "namespace": "",
3286
3286
  "file": "packages/@ember/array/index.ts",
3287
- "line": 1900,
3287
+ "line": 1895,
3288
3288
  "description": "The NativeArray mixin contains the properties needed to make the native\nArray support MutableArray and all of its dependent APIs. Unless you\nhave `EmberENV.EXTEND_PROTOTYPES` or `EmberENV.EXTEND_PROTOTYPES.Array` set to\nfalse, this will be applied automatically. Otherwise you can apply the mixin\nat anytime by calling `Ember.NativeArray.apply(Array.prototype)`.",
3289
3289
  "uses": [
3290
3290
  "MutableArray",
@@ -3373,7 +3373,7 @@
3373
3373
  "module": "ember/controller",
3374
3374
  "namespace": "Ember",
3375
3375
  "file": "packages/@ember/controller/index.ts",
3376
- "line": 334,
3376
+ "line": 335,
3377
3377
  "extends": "EmberObject",
3378
3378
  "uses": [
3379
3379
  "Ember.ControllerMixin"
@@ -3421,7 +3421,7 @@
3421
3421
  "module": "@ember/debug/data-adapter",
3422
3422
  "namespace": "",
3423
3423
  "file": "packages/@ember/debug/data-adapter.ts",
3424
- "line": 158,
3424
+ "line": 173,
3425
3425
  "description": "The `DataAdapter` helps a data persistence library\ninterface with tools that debug Ember such\nas the [Ember Inspector](https://github.com/emberjs/ember-inspector)\nfor Chrome and Firefox.\n\nThis class will be extended by a persistence library\nwhich will override some of the methods with\nlibrary-specific code.\n\nThe methods likely to be overridden are:\n\n* `getFilters`\n* `detect`\n* `columnsForType`\n* `getRecords`\n* `getRecordColumnValues`\n* `getRecordKeywords`\n* `getRecordFilterValues`\n* `getRecordColor`\n\nThe adapter will need to be registered\nin the application's container as `dataAdapter:main`.\n\nExample:\n\n```javascript\nApplication.initializer({\n name: \"data-adapter\",\n\n initialize: function(application) {\n application.register('data-adapter:main', DS.DataAdapter);\n }\n});\n```",
3426
3426
  "extends": "EmberObject",
3427
3427
  "access": "public",
@@ -6250,7 +6250,7 @@
6250
6250
  },
6251
6251
  {
6252
6252
  "file": "packages/@ember/-internals/glimmer/lib/helper.ts",
6253
- "line": 117,
6253
+ "line": 120,
6254
6254
  "description": "On a class-based helper, it may be useful to force a recomputation of that\nhelpers value. This is akin to `rerender` on a component.\n\nFor example, this component will rerender when the `currentUser` on a\nsession service changes:\n\n```app/helpers/current-user-email.js\nimport Helper from '@ember/component/helper'\nimport { service } from '@ember/service'\nimport { observer } from '@ember/object'\n\nexport default Helper.extend({\n session: service(),\n\n onNewUser: observer('session.currentUser', function() {\n this.recompute();\n }),\n\n compute() {\n return this.get('session.currentUser.email');\n }\n});\n```",
6255
6255
  "itemtype": "method",
6256
6256
  "name": "recompute",
@@ -6262,7 +6262,7 @@
6262
6262
  },
6263
6263
  {
6264
6264
  "file": "packages/@ember/-internals/glimmer/lib/helper.ts",
6265
- "line": 269,
6265
+ "line": 272,
6266
6266
  "description": "In many cases it is not necessary to use the full `Helper` class.\nThe `helper` method create pure-function helpers without instances.\nFor example:\n\n```app/helpers/format-currency.js\nimport { helper } from '@ember/component/helper';\n\nexport default helper(function([cents], {currency}) {\n return `${currency}${cents * 0.01}`;\n});\n```",
6267
6267
  "static": 1,
6268
6268
  "params": [
@@ -9377,7 +9377,7 @@
9377
9377
  },
9378
9378
  {
9379
9379
  "file": "packages/@ember/array/index.ts",
9380
- "line": 323,
9380
+ "line": 253,
9381
9381
  "description": "__Required.__ You must implement this method to apply this mixin.\n\nYour array must support the `length` property. Your replace methods should\nset this property whenever it changes.",
9382
9382
  "itemtype": "property",
9383
9383
  "name": "length",
@@ -9389,7 +9389,7 @@
9389
9389
  },
9390
9390
  {
9391
9391
  "file": "packages/@ember/array/index.ts",
9392
- "line": 333,
9392
+ "line": 263,
9393
9393
  "description": "Returns the object at the given `index`. If the given `index` is negative\nor is greater or equal than the array length, returns `undefined`.\n\nThis is one of the primitives you must implement to support `EmberArray`.\nIf your object supports retrieving the value of an array item using `get()`\n(i.e. `myArray.get(0)`), then you do not need to implement this method\nyourself.\n\n```javascript\nlet arr = ['a', 'b', 'c', 'd'];\n\narr.objectAt(0); // 'a'\narr.objectAt(3); // 'd'\narr.objectAt(-1); // undefined\narr.objectAt(4); // undefined\narr.objectAt(5); // undefined\n```",
9394
9394
  "itemtype": "method",
9395
9395
  "name": "objectAt",
@@ -9411,7 +9411,7 @@
9411
9411
  },
9412
9412
  {
9413
9413
  "file": "packages/@ember/array/index.ts",
9414
- "line": 358,
9414
+ "line": 288,
9415
9415
  "description": "This returns the objects at the specified indexes, using `objectAt`.\n\n```javascript\nlet arr = ['a', 'b', 'c', 'd'];\n\narr.objectsAt([0, 1, 2]); // ['a', 'b', 'c']\narr.objectsAt([2, 3, 4]); // ['c', 'd', undefined]\n```",
9416
9416
  "itemtype": "method",
9417
9417
  "name": "objectsAt",
@@ -9433,7 +9433,7 @@
9433
9433
  },
9434
9434
  {
9435
9435
  "file": "packages/@ember/array/index.ts",
9436
- "line": 377,
9436
+ "line": 304,
9437
9437
  "description": "This is the handler for the special array content property. If you get\nthis property, it will return this. If you set this property to a new\narray, it will replace the current content.\n\n```javascript\nlet peopleToMoon = ['Armstrong', 'Aldrin'];\n\npeopleToMoon.get('[]'); // ['Armstrong', 'Aldrin']\n\npeopleToMoon.set('[]', ['Collins']); // ['Collins']\npeopleToMoon.get('[]'); // ['Collins']\n```",
9438
9438
  "itemtype": "property",
9439
9439
  "name": "[]",
@@ -9447,7 +9447,7 @@
9447
9447
  },
9448
9448
  {
9449
9449
  "file": "packages/@ember/array/index.ts",
9450
- "line": 405,
9450
+ "line": 323,
9451
9451
  "description": "The first object in the array, or `undefined` if the array is empty.\n\n```javascript\nlet vowels = ['a', 'e', 'i', 'o', 'u'];\nvowels.firstObject; // 'a'\n\nvowels.shiftObject();\nvowels.firstObject; // 'e'\n\nvowels.reverseObjects();\nvowels.firstObject; // 'u'\n\nvowels.clear();\nvowels.firstObject; // undefined\n```",
9452
9452
  "itemtype": "property",
9453
9453
  "name": "firstObject",
@@ -9462,7 +9462,7 @@
9462
9462
  },
9463
9463
  {
9464
9464
  "file": "packages/@ember/array/index.ts",
9465
- "line": 430,
9465
+ "line": 345,
9466
9466
  "description": "The last object in the array, or `undefined` if the array is empty.",
9467
9467
  "itemtype": "property",
9468
9468
  "name": "lastObject",
@@ -9477,7 +9477,7 @@
9477
9477
  },
9478
9478
  {
9479
9479
  "file": "packages/@ember/array/index.ts",
9480
- "line": 442,
9480
+ "line": 353,
9481
9481
  "description": "Returns a new array that is a slice of the receiver. This implementation\nuses the observable array methods to retrieve the objects for the new\nslice.\n\n```javascript\nlet arr = ['red', 'green', 'blue'];\n\narr.slice(0); // ['red', 'green', 'blue']\narr.slice(0, 2); // ['red', 'green']\narr.slice(1, 100); // ['green', 'blue']\n```",
9482
9482
  "itemtype": "method",
9483
9483
  "name": "slice",
@@ -9504,7 +9504,7 @@
9504
9504
  },
9505
9505
  {
9506
9506
  "file": "packages/@ember/array/index.ts",
9507
- "line": 485,
9507
+ "line": 373,
9508
9508
  "description": "Used to determine the passed object's first occurrence in the array.\nReturns the index if found, -1 if no match is found.\n\nThe optional `startAt` argument can be used to pass a starting\nindex to search from, effectively slicing the searchable portion\nof the array. If it's negative it will add the array length to\nthe startAt value passed in as the index to search from. If less\nthan or equal to `-1 * array.length` the entire array is searched.\n\n```javascript\nlet arr = ['a', 'b', 'c', 'd', 'a'];\n\narr.indexOf('a'); // 0\narr.indexOf('z'); // -1\narr.indexOf('a', 2); // 4\narr.indexOf('a', -1); // 4, equivalent to indexOf('a', 4)\narr.indexOf('a', -100); // 0, searches entire array\narr.indexOf('b', 3); // -1\narr.indexOf('a', 100); // -1\n\nlet people = [{ name: 'Zoey' }, { name: 'Bob' }]\nlet newPerson = { name: 'Tom' };\npeople = [newPerson, ...people, newPerson];\n\npeople.indexOf(newPerson); // 0\npeople.indexOf(newPerson, 1); // 3\npeople.indexOf(newPerson, -4); // 0\npeople.indexOf(newPerson, 10); // -1\n```",
9509
9509
  "itemtype": "method",
9510
9510
  "name": "indexOf",
@@ -9531,7 +9531,7 @@
9531
9531
  },
9532
9532
  {
9533
9533
  "file": "packages/@ember/array/index.ts",
9534
- "line": 527,
9534
+ "line": 411,
9535
9535
  "description": "Returns the index of the given `object`'s last occurrence.\n\n- If no `startAt` argument is given, the search starts from\nthe last position.\n- If it's greater than or equal to the length of the array,\nthe search starts from the last position.\n- If it's negative, it is taken as the offset from the end\nof the array i.e. `startAt + array.length`.\n- If it's any other positive number, will search backwards\nfrom that index of the array.\n\nReturns -1 if no match is found.\n\n```javascript\nlet arr = ['a', 'b', 'c', 'd', 'a'];\n\narr.lastIndexOf('a'); // 4\narr.lastIndexOf('z'); // -1\narr.lastIndexOf('a', 2); // 0\narr.lastIndexOf('a', -1); // 4\narr.lastIndexOf('a', -3); // 0\narr.lastIndexOf('b', 3); // 1\narr.lastIndexOf('a', 100); // 4\n```",
9536
9536
  "itemtype": "method",
9537
9537
  "name": "lastIndexOf",
@@ -9558,7 +9558,7 @@
9558
9558
  },
9559
9559
  {
9560
9560
  "file": "packages/@ember/array/index.ts",
9561
- "line": 581,
9561
+ "line": 446,
9562
9562
  "description": "Iterates through the array, calling the passed function on each\nitem. This method corresponds to the `forEach()` method defined in\nJavaScript 1.6.\n\nThe callback method you provide should have the following signature (all\nparameters are optional):\n\n```javascript\nfunction(item, index, array);\n```\n\n- `item` is the current item in the iteration.\n- `index` is the current index in the iteration.\n- `array` is the array itself.\n\nNote that in addition to a callback, you can also pass an optional target\nobject that will be set as `this` on the context. This is a good way\nto give your iterator function access to the current object.\n\nExample Usage:\n\n```javascript\nlet foods = [\n { name: 'apple', eaten: false },\n { name: 'banana', eaten: false },\n { name: 'carrot', eaten: false }\n];\n\nfoods.forEach((food) => food.eaten = true);\n\nlet output = '';\nfoods.forEach((item, index, array) =>\n output += `${index + 1}/${array.length} ${item.name}\\n`;\n);\nconsole.log(output);\n// 1/3 apple\n// 2/3 banana\n// 3/3 carrot\n```",
9563
9563
  "itemtype": "method",
9564
9564
  "name": "forEach",
@@ -9586,7 +9586,7 @@
9586
9586
  },
9587
9587
  {
9588
9588
  "file": "packages/@ember/array/index.ts",
9589
- "line": 641,
9589
+ "line": 497,
9590
9590
  "description": "Alias for `mapBy`.\n\nReturns the value of the named\nproperty on all items in the enumeration.\n\n```javascript\nlet people = [{name: 'Joe'}, {name: 'Matt'}];\n\npeople.getEach('name');\n// ['Joe', 'Matt'];\n\npeople.getEach('nonexistentProperty');\n// [undefined, undefined];\n```",
9591
9591
  "itemtype": "method",
9592
9592
  "name": "getEach",
@@ -9608,7 +9608,7 @@
9608
9608
  },
9609
9609
  {
9610
9610
  "file": "packages/@ember/array/index.ts",
9611
- "line": 664,
9611
+ "line": 519,
9612
9612
  "description": "Sets the value on the named property for each member. This is more\nergonomic than using other methods defined on this helper. If the object\nimplements Observable, the value will be changed to `set(),` otherwise\nit will be set directly. `null` objects are skipped.\n\n```javascript\nlet people = [{name: 'Joe'}, {name: 'Matt'}];\n\npeople.setEach('zipCode', '10011');\n// [{name: 'Joe', zipCode: '10011'}, {name: 'Matt', zipCode: '10011'}];\n```",
9613
9613
  "itemtype": "method",
9614
9614
  "name": "setEach",
@@ -9635,7 +9635,7 @@
9635
9635
  },
9636
9636
  {
9637
9637
  "file": "packages/@ember/array/index.ts",
9638
- "line": 687,
9638
+ "line": 539,
9639
9639
  "description": "Maps all of the items in the enumeration to another value, returning\na new array. This method corresponds to `map()` defined in JavaScript 1.6.\n\nThe callback method you provide should have the following signature (all\nparameters are optional):\n\n```javascript\nfunction(item, index, array);\nlet arr = [1, 2, 3, 4, 5, 6];\n\narr.map(element => element * element);\n// [1, 4, 9, 16, 25, 36];\n\narr.map((element, index) => element + index);\n// [1, 3, 5, 7, 9, 11];\n```\n\n- `item` is the current item in the iteration.\n- `index` is the current index in the iteration.\n- `array` is the array itself.\n\nIt should return the mapped value.\n\nNote that in addition to a callback, you can also pass an optional target\nobject that will be set as `this` on the context. This is a good way\nto give your iterator function access to the current object.",
9640
9640
  "itemtype": "method",
9641
9641
  "name": "map",
@@ -9663,7 +9663,7 @@
9663
9663
  },
9664
9664
  {
9665
9665
  "file": "packages/@ember/array/index.ts",
9666
- "line": 735,
9666
+ "line": 577,
9667
9667
  "description": "Similar to map, this specialized function returns the value of the named\nproperty on all items in the enumeration.\n\n```javascript\nlet people = [{name: 'Joe'}, {name: 'Matt'}];\n\npeople.mapBy('name');\n// ['Joe', 'Matt'];\n\npeople.mapBy('unknownProperty');\n// [undefined, undefined];\n```",
9668
9668
  "itemtype": "method",
9669
9669
  "name": "mapBy",
@@ -9685,7 +9685,7 @@
9685
9685
  },
9686
9686
  {
9687
9687
  "file": "packages/@ember/array/index.ts",
9688
- "line": 756,
9688
+ "line": 597,
9689
9689
  "description": "Returns a new array with all of the items in the enumeration that the provided\ncallback function returns true for. This method corresponds to [Array.prototype.filter()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/filter).\n\nThe callback method should have the following signature:\n\n```javascript\nfunction(item, index, array);\n```\n\n- `item` is the current item in the iteration.\n- `index` is the current index in the iteration.\n- `array` is the array itself.\n\nAll parameters are optional. The function should return `true` to include the item\nin the results, and `false` otherwise.\n\nExample:\n\n```javascript\nfunction isAdult(person) {\n return person.age > 18;\n};\n\nlet people = Ember.A([{ name: 'John', age: 14 }, { name: 'Joan', age: 45 }]);\n\npeople.filter(isAdult); // returns [{ name: 'Joan', age: 45 }];\n```\n\nNote that in addition to a callback, you can pass an optional target object\nthat will be set as `this` on the context. This is a good way to give your\niterator function access to the current object. For example:\n\n```javascript\nfunction isAdultAndEngineer(person) {\n return person.age > 18 && this.engineering;\n}\n\nclass AdultsCollection {\n engineering = false;\n\n constructor(opts = {}) {\n super(...arguments);\n\n this.engineering = opts.engineering;\n this.people = Ember.A([{ name: 'John', age: 14 }, { name: 'Joan', age: 45 }]);\n }\n}\n\nlet collection = new AdultsCollection({ engineering: true });\ncollection.people.filter(isAdultAndEngineer, { target: collection });\n```",
9690
9690
  "itemtype": "method",
9691
9691
  "name": "filter",
@@ -9713,7 +9713,7 @@
9713
9713
  },
9714
9714
  {
9715
9715
  "file": "packages/@ember/array/index.ts",
9716
- "line": 833,
9716
+ "line": 660,
9717
9717
  "description": "Returns an array with all of the items in the enumeration where the passed\nfunction returns false. This method is the inverse of filter().\n\nThe callback method you provide should have the following signature (all\nparameters are optional):\n\n```javascript\nfunction(item, index, array);\n```\n\n- *item* is the current item in the iteration.\n- *index* is the current index in the iteration\n- *array* is the array itself.\n\nIt should return a falsey value to include the item in the results.\n\nNote that in addition to a callback, you can also pass an optional target\nobject that will be set as \"this\" on the context. This is a good way\nto give your iterator function access to the current object.\n\nExample Usage:\n\n```javascript\nconst food = [\n { food: 'apple', isFruit: true },\n { food: 'bread', isFruit: false },\n { food: 'banana', isFruit: true }\n];\nconst nonFruits = food.reject(function(thing) {\n return thing.isFruit;\n}); // [{food: 'bread', isFruit: false}]\n```",
9718
9718
  "itemtype": "method",
9719
9719
  "name": "reject",
@@ -9741,7 +9741,7 @@
9741
9741
  },
9742
9742
  {
9743
9743
  "file": "packages/@ember/array/index.ts",
9744
- "line": 885,
9744
+ "line": 704,
9745
9745
  "description": "Filters the array by the property and an optional value. If a value is given, it returns\nthe items that have said value for the property. If not, it returns all the items that\nhave a truthy value for the property.\n\nExample Usage:\n\n```javascript\nlet things = Ember.A([{ food: 'apple', isFruit: true }, { food: 'beans', isFruit: false }]);\n\nthings.filterBy('food', 'beans'); // [{ food: 'beans', isFruit: false }]\nthings.filterBy('isFruit'); // [{ food: 'apple', isFruit: true }]\n```",
9746
9746
  "itemtype": "method",
9747
9747
  "name": "filterBy",
@@ -9769,7 +9769,7 @@
9769
9769
  },
9770
9770
  {
9771
9771
  "file": "packages/@ember/array/index.ts",
9772
- "line": 910,
9772
+ "line": 725,
9773
9773
  "description": "Returns an array with the items that do not have truthy values for the provided key.\nYou can pass an optional second argument with a target value to reject for the key.\nOtherwise this will reject objects where the provided property evaluates to false.\n\nExample Usage:\n\n```javascript\n let food = [\n { name: \"apple\", isFruit: true },\n { name: \"carrot\", isFruit: false },\n { name: \"bread\", isFruit: false },\n ];\n food.rejectBy('isFruit'); // [{ name: \"carrot\", isFruit: false }, { name: \"bread\", isFruit: false }]\n food.rejectBy('name', 'carrot'); // [{ name: \"apple\", isFruit: true }}, { name: \"bread\", isFruit: false }]\n```",
9774
9774
  "itemtype": "method",
9775
9775
  "name": "rejectBy",
@@ -9797,7 +9797,7 @@
9797
9797
  },
9798
9798
  {
9799
9799
  "file": "packages/@ember/array/index.ts",
9800
- "line": 938,
9800
+ "line": 753,
9801
9801
  "description": "Returns the first item in the array for which the callback returns true.\nThis method is similar to the `find()` method defined in ECMAScript 2015.\n\nThe callback method you provide should have the following signature (all\nparameters are optional):\n\n```javascript\nfunction(item, index, array);\n```\n\n- `item` is the current item in the iteration.\n- `index` is the current index in the iteration.\n- `array` is the array itself.\n\nIt should return the `true` to include the item in the results, `false`\notherwise.\n\nNote that in addition to a callback, you can also pass an optional target\nobject that will be set as `this` on the context. This is a good way\nto give your iterator function access to the current object.\n\nExample Usage:\n\n```javascript\nlet users = [\n { id: 1, name: 'Yehuda' },\n { id: 2, name: 'Tom' },\n { id: 3, name: 'Melanie' },\n { id: 4, name: 'Leah' }\n];\n\nusers.find((user) => user.name == 'Tom'); // [{ id: 2, name: 'Tom' }]\nusers.find(({ id }) => id == 3); // [{ id: 3, name: 'Melanie' }]\n```",
9802
9802
  "itemtype": "method",
9803
9803
  "name": "find",
@@ -9825,7 +9825,7 @@
9825
9825
  },
9826
9826
  {
9827
9827
  "file": "packages/@ember/array/index.ts",
9828
- "line": 985,
9828
+ "line": 799,
9829
9829
  "description": "Returns the first item with a property matching the passed value. You\ncan pass an optional second argument with the target value. Otherwise\nthis will match any property that evaluates to `true`.\n\nThis method works much like the more generic `find()` method.\n\nUsage Example:\n\n```javascript\nlet users = [\n { id: 1, name: 'Yehuda', isTom: false },\n { id: 2, name: 'Tom', isTom: true },\n { id: 3, name: 'Melanie', isTom: false },\n { id: 4, name: 'Leah', isTom: false }\n];\n\nusers.findBy('id', 4); // { id: 4, name: 'Leah', isTom: false }\nusers.findBy('name', 'Melanie'); // { id: 3, name: 'Melanie', isTom: false }\nusers.findBy('isTom'); // { id: 2, name: 'Tom', isTom: true }\n```",
9830
9830
  "itemtype": "method",
9831
9831
  "name": "findBy",
@@ -9853,7 +9853,7 @@
9853
9853
  },
9854
9854
  {
9855
9855
  "file": "packages/@ember/array/index.ts",
9856
- "line": 1019,
9856
+ "line": 828,
9857
9857
  "description": "Returns `true` if the passed function returns true for every item in the\nenumeration. This corresponds with the `Array.prototype.every()` method defined in ES5.\n\nThe callback method should have the following signature:\n\n```javascript\nfunction(item, index, array);\n```\n\n- `item` is the current item in the iteration.\n- `index` is the current index in the iteration.\n- `array` is the array itself.\n\nAll params are optional. The method should return `true` or `false`.\n\nNote that in addition to a callback, you can also pass an optional target\nobject that will be set as `this` on the context. This is a good way\nto give your iterator function access to the current object.\n\nUsage example:\n\n```javascript\nfunction isAdult(person) {\n return person.age > 18;\n};\n\nconst people = Ember.A([{ name: 'John', age: 24 }, { name: 'Joan', age: 45 }]);\nconst areAllAdults = people.every(isAdult);\n```",
9858
9858
  "itemtype": "method",
9859
9859
  "name": "every",
@@ -9881,7 +9881,7 @@
9881
9881
  },
9882
9882
  {
9883
9883
  "file": "packages/@ember/array/index.ts",
9884
- "line": 1061,
9884
+ "line": 869,
9885
9885
  "description": "Returns `true` if the passed property resolves to the value of the second\nargument for all items in the array. This method is often simpler/faster\nthan using a callback.\n\nNote that like the native `Array.every`, `isEvery` will return true when called\non any empty array.\n```javascript\nclass Language {\n constructor(name, isProgrammingLanguage) {\n this.name = name;\n this.programmingLanguage = isProgrammingLanguage;\n }\n}\n\nconst compiledLanguages = [\n new Language('Java', true),\n new Language('Go', true),\n new Language('Rust', true)\n]\n\nconst languagesKnownByMe = [\n new Language('Javascript', true),\n new Language('English', false),\n new Language('Ruby', true)\n]\n\ncompiledLanguages.isEvery('programmingLanguage'); // true\nlanguagesKnownByMe.isEvery('programmingLanguage'); // false\n```",
9886
9886
  "itemtype": "method",
9887
9887
  "name": "isEvery",
@@ -9910,7 +9910,7 @@
9910
9910
  },
9911
9911
  {
9912
9912
  "file": "packages/@ember/array/index.ts",
9913
- "line": 1105,
9913
+ "line": 908,
9914
9914
  "description": "The any() method executes the callback function once for each element\npresent in the array until it finds the one where callback returns a truthy\nvalue (i.e. `true`). If such an element is found, any() immediately returns\ntrue. Otherwise, any() returns false.\n\n```javascript\nfunction(item, index, array);\n```\n\n- `item` is the current item in the iteration.\n- `index` is the current index in the iteration.\n- `array` is the array object itself.\n\nNote that in addition to a callback, you can also pass an optional target\nobject that will be set as `this` on the context. It can be a good way\nto give your iterator function access to an object in cases where an ES6\narrow function would not be appropriate.\n\nUsage Example:\n\n```javascript\nlet includesManager = people.any(this.findPersonInManagersList, this);\n\nlet includesStockHolder = people.any(person => {\n return this.findPersonInStockHoldersList(person)\n});\n\nif (includesManager || includesStockHolder) {\n Paychecks.addBiggerBonus();\n}\n```",
9915
9915
  "itemtype": "method",
9916
9916
  "name": "any",
@@ -9938,7 +9938,7 @@
9938
9938
  },
9939
9939
  {
9940
9940
  "file": "packages/@ember/array/index.ts",
9941
- "line": 1149,
9941
+ "line": 951,
9942
9942
  "description": "Returns `true` if the passed property resolves to the value of the second\nargument for any item in the array. This method is often simpler/faster\nthan using a callback.\n\nExample usage:\n\n```javascript\nconst food = [\n { food: 'apple', isFruit: true },\n { food: 'bread', isFruit: false },\n { food: 'banana', isFruit: true }\n];\n\nfood.isAny('isFruit'); // true\n```",
9943
9943
  "itemtype": "method",
9944
9944
  "name": "isAny",
@@ -9967,7 +9967,7 @@
9967
9967
  },
9968
9968
  {
9969
9969
  "file": "packages/@ember/array/index.ts",
9970
- "line": 1179,
9970
+ "line": 976,
9971
9971
  "description": "This will combine the values of the array into a single value. It\nis a useful way to collect a summary value from an array. This\ncorresponds to the `reduce()` method defined in JavaScript 1.8.\n\nThe callback method you provide should have the following signature (all\nparameters are optional):\n\n```javascript\nfunction(previousValue, item, index, array);\n```\n\n- `previousValue` is the value returned by the last call to the iterator.\n- `item` is the current item in the iteration.\n- `index` is the current index in the iteration.\n- `array` is the array itself.\n\nReturn the new cumulative value.\n\nIn addition to the callback you can also pass an `initialValue`. An error\nwill be raised if you do not pass an initial value and the enumerator is\nempty.\n\nNote that unlike the other methods, this method does not allow you to\npass a target object to set as this for the callback. It's part of the\nspec. Sorry.\n\nExample Usage:\n\n```javascript\n let numbers = [1, 2, 3, 4, 5];\n\n numbers.reduce(function(summation, current) {\n return summation + current;\n }); // 15 (1 + 2 + 3 + 4 + 5)\n\n numbers.reduce(function(summation, current) {\n return summation + current;\n }, -15); // 0 (-15 + 1 + 2 + 3 + 4 + 5)\n\n\n let binaryValues = [true, false, false];\n\n binaryValues.reduce(function(truthValue, current) {\n return truthValue && current;\n }); // false (true && false && false)\n```",
9972
9972
  "itemtype": "method",
9973
9973
  "name": "reduce",
@@ -9994,7 +9994,7 @@
9994
9994
  },
9995
9995
  {
9996
9996
  "file": "packages/@ember/array/index.ts",
9997
- "line": 1250,
9997
+ "line": 1034,
9998
9998
  "description": "Invokes the named method on every object in the receiver that\nimplements it. This method corresponds to the implementation in\nPrototype 1.6.\n\n```javascript\nclass Person {\n name = null;\n\n constructor(name) {\n this.name = name;\n }\n\n greet(prefix='Hello') {\n return `${prefix} ${this.name}`;\n }\n}\n\nlet people = [new Person('Joe'), new Person('Matt')];\n\npeople.invoke('greet'); // ['Hello Joe', 'Hello Matt']\npeople.invoke('greet', 'Bonjour'); // ['Bonjour Joe', 'Bonjour Matt']\n```",
9999
9999
  "itemtype": "method",
10000
10000
  "name": "invoke",
@@ -10021,7 +10021,7 @@
10021
10021
  },
10022
10022
  {
10023
10023
  "file": "packages/@ember/array/index.ts",
10024
- "line": 1289,
10024
+ "line": 1068,
10025
10025
  "description": "Simply converts the object into a genuine array. The order is not\nguaranteed. Corresponds to the method implemented by Prototype.",
10026
10026
  "itemtype": "method",
10027
10027
  "name": "toArray",
@@ -10036,7 +10036,7 @@
10036
10036
  },
10037
10037
  {
10038
10038
  "file": "packages/@ember/array/index.ts",
10039
- "line": 1301,
10039
+ "line": 1077,
10040
10040
  "description": "Returns a copy of the array with all `null` and `undefined` elements removed.\n\n```javascript\nlet arr = ['a', null, 'c', undefined];\narr.compact(); // ['a', 'c']\n```",
10041
10041
  "itemtype": "method",
10042
10042
  "name": "compact",
@@ -10051,7 +10051,7 @@
10051
10051
  },
10052
10052
  {
10053
10053
  "file": "packages/@ember/array/index.ts",
10054
- "line": 1317,
10054
+ "line": 1090,
10055
10055
  "description": "Used to determine if the array contains the passed object.\nReturns `true` if found, `false` otherwise.\n\nThe optional `startAt` argument can be used to pass a starting\nindex to search from, effectively slicing the searchable portion\nof the array. If it's negative it will add the array length to\nthe startAt value passed in as the index to search from. If less\nthan or equal to `-1 * array.length` the entire array is searched.\n\nThis method has the same behavior of JavaScript's [Array.includes](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/includes).\n\n```javascript\n[1, 2, 3].includes(2); // true\n[1, 2, 3].includes(4); // false\n[1, 2, 3].includes(3, 2); // true\n[1, 2, 3].includes(3, 3); // false\n[1, 2, 3].includes(3, -1); // true\n[1, 2, 3].includes(1, -1); // false\n[1, 2, 3].includes(1, -4); // true\n[1, 2, NaN].includes(NaN); // true\n```",
10056
10056
  "itemtype": "method",
10057
10057
  "name": "includes",
@@ -10078,7 +10078,7 @@
10078
10078
  },
10079
10079
  {
10080
10080
  "file": "packages/@ember/array/index.ts",
10081
- "line": 1350,
10081
+ "line": 1120,
10082
10082
  "description": "Sorts the array by the keys specified in the argument.\n\nYou may provide multiple arguments to sort by multiple properties.\n\n```javascript\n let colors = [\n { name: 'red', weight: 500 },\n { name: 'green', weight: 600 },\n { name: 'blue', weight: 500 }\n];\n\n colors.sortBy('name');\n // [{name: 'blue', weight: 500}, {name: 'green', weight: 600}, {name: 'red', weight: 500}]\n\n colors.sortBy('weight', 'name');\n // [{name: 'blue', weight: 500}, {name: 'red', weight: 500}, {name: 'green', weight: 600}]\n ```",
10083
10083
  "itemtype": "method",
10084
10084
  "name": "sortBy",
@@ -10101,7 +10101,7 @@
10101
10101
  },
10102
10102
  {
10103
10103
  "file": "packages/@ember/array/index.ts",
10104
- "line": 1394,
10104
+ "line": 1145,
10105
10105
  "description": "Returns a new array that contains only unique values. The default\nimplementation returns an array regardless of the receiver type.\n\n```javascript\nlet arr = ['a', 'a', 'b', 'b'];\narr.uniq(); // ['a', 'b']\n```\n\nThis only works on primitive data types, e.g. Strings, Numbers, etc.",
10106
10106
  "itemtype": "method",
10107
10107
  "name": "uniq",
@@ -10116,7 +10116,7 @@
10116
10116
  },
10117
10117
  {
10118
10118
  "file": "packages/@ember/array/index.ts",
10119
- "line": 1413,
10119
+ "line": 1161,
10120
10120
  "description": "Returns a new array that contains only items containing a unique property value.\nThe default implementation returns an array regardless of the receiver type.\n\n```javascript\nlet arr = [{ value: 'a' }, { value: 'a' }, { value: 'b' }, { value: 'b' }];\narr.uniqBy('value'); // [{ value: 'a' }, { value: 'b' }]\n\nlet arr = [2.2, 2.1, 3.2, 3.3];\narr.uniqBy(Math.floor); // [2.2, 3.2];\n```",
10121
10121
  "itemtype": "method",
10122
10122
  "name": "uniqBy",
@@ -10138,7 +10138,7 @@
10138
10138
  },
10139
10139
  {
10140
10140
  "file": "packages/@ember/array/index.ts",
10141
- "line": 1435,
10141
+ "line": 1179,
10142
10142
  "description": "Returns a new array that excludes the passed value. The default\nimplementation returns an array regardless of the receiver type.\nIf the receiver does not contain the value it returns the original array.\n\n```javascript\nlet arr = ['a', 'b', 'a', 'c'];\narr.without('a'); // ['b', 'c']\n```",
10143
10143
  "itemtype": "method",
10144
10144
  "name": "without",
@@ -10160,7 +10160,7 @@
10160
10160
  },
10161
10161
  {
10162
10162
  "file": "packages/@ember/array/index.ts",
10163
- "line": 1500,
10163
+ "line": 1478,
10164
10164
  "description": "__Required.__ You must implement this method to apply this mixin.\n\nThis is one of the primitives you must implement to support `Array`.\nYou should replace amt objects started at idx with the objects in the\npassed array.\n\nNote that this method is expected to validate the type(s) of objects that it expects.",
10165
10165
  "itemtype": "method",
10166
10166
  "name": "replace",
@@ -10189,7 +10189,7 @@
10189
10189
  },
10190
10190
  {
10191
10191
  "file": "packages/@ember/array/index.ts",
10192
- "line": 1519,
10192
+ "line": 1497,
10193
10193
  "description": "Remove all elements from the array. This is useful if you\nwant to reuse an existing array without having to recreate it.\n\n```javascript\nlet colors = ['red', 'green', 'blue'];\n\ncolors.length; // 3\ncolors.clear(); // []\ncolors.length; // 0\n```",
10194
10194
  "itemtype": "method",
10195
10195
  "name": "clear",
@@ -10204,7 +10204,7 @@
10204
10204
  },
10205
10205
  {
10206
10206
  "file": "packages/@ember/array/index.ts",
10207
- "line": 1545,
10207
+ "line": 1514,
10208
10208
  "description": "This will use the primitive `replace()` method to insert an object at the\nspecified index.\n\n```javascript\nlet colors = ['red', 'green', 'blue'];\n\ncolors.insertAt(2, 'yellow'); // ['red', 'green', 'yellow', 'blue']\ncolors.insertAt(5, 'orange'); // Error: Index out of range\n```",
10209
10209
  "itemtype": "method",
10210
10210
  "name": "insertAt",
@@ -10231,7 +10231,7 @@
10231
10231
  },
10232
10232
  {
10233
10233
  "file": "packages/@ember/array/index.ts",
10234
- "line": 1567,
10234
+ "line": 1532,
10235
10235
  "description": "Remove an object at the specified index using the `replace()` primitive\nmethod. You can pass either a single index, or a start and a length.\n\nIf you pass a start and length that is beyond the\nlength this method will throw an assertion.\n\n```javascript\nlet colors = ['red', 'green', 'blue', 'yellow', 'orange'];\n\ncolors.removeAt(0); // ['green', 'blue', 'yellow', 'orange']\ncolors.removeAt(2, 2); // ['green', 'blue']\ncolors.removeAt(4, 2); // Error: Index out of range\n```",
10236
10236
  "itemtype": "method",
10237
10237
  "name": "removeAt",
@@ -10258,7 +10258,7 @@
10258
10258
  },
10259
10259
  {
10260
10260
  "file": "packages/@ember/array/index.ts",
10261
- "line": 1592,
10261
+ "line": 1554,
10262
10262
  "description": "Push the object onto the end of the array. Works just like `push()` but it\nis KVO-compliant.\n\n```javascript\nlet colors = ['red', 'green'];\n\ncolors.pushObject('black'); // ['red', 'green', 'black']\ncolors.pushObject(['yellow']); // ['red', 'green', ['yellow']]\n```",
10263
10263
  "itemtype": "method",
10264
10264
  "name": "pushObject",
@@ -10279,7 +10279,7 @@
10279
10279
  },
10280
10280
  {
10281
10281
  "file": "packages/@ember/array/index.ts",
10282
- "line": 1612,
10282
+ "line": 1571,
10283
10283
  "description": "Add the objects in the passed array to the end of the array. Defers\nnotifying observers of the change until all objects are added.\n\n```javascript\nlet colors = ['red'];\n\ncolors.pushObjects(['yellow', 'orange']); // ['red', 'yellow', 'orange']\n```",
10284
10284
  "itemtype": "method",
10285
10285
  "name": "pushObjects",
@@ -10301,7 +10301,7 @@
10301
10301
  },
10302
10302
  {
10303
10303
  "file": "packages/@ember/array/index.ts",
10304
- "line": 1632,
10304
+ "line": 1587,
10305
10305
  "description": "Pop object from array or nil if none are left. Works just like `pop()` but\nit is KVO-compliant.\n\n```javascript\nlet colors = ['red', 'green', 'blue'];\n\ncolors.popObject(); // 'blue'\nconsole.log(colors); // ['red', 'green']\n```",
10306
10306
  "itemtype": "method",
10307
10307
  "name": "popObject",
@@ -10315,7 +10315,7 @@
10315
10315
  },
10316
10316
  {
10317
10317
  "file": "packages/@ember/array/index.ts",
10318
- "line": 1658,
10318
+ "line": 1603,
10319
10319
  "description": "Shift an object from start of array or nil if none are left. Works just\nlike `shift()` but it is KVO-compliant.\n\n```javascript\nlet colors = ['red', 'green', 'blue'];\n\ncolors.shiftObject(); // 'red'\nconsole.log(colors); // ['green', 'blue']\n```",
10320
10320
  "itemtype": "method",
10321
10321
  "name": "shiftObject",
@@ -10329,7 +10329,7 @@
10329
10329
  },
10330
10330
  {
10331
10331
  "file": "packages/@ember/array/index.ts",
10332
- "line": 1683,
10332
+ "line": 1619,
10333
10333
  "description": "Unshift an object to start of array. Works just like `unshift()` but it is\nKVO-compliant.\n\n```javascript\nlet colors = ['red'];\n\ncolors.unshiftObject('yellow'); // ['yellow', 'red']\ncolors.unshiftObject(['black']); // [['black'], 'yellow', 'red']\n```",
10334
10334
  "itemtype": "method",
10335
10335
  "name": "unshiftObject",
@@ -10350,7 +10350,7 @@
10350
10350
  },
10351
10351
  {
10352
10352
  "file": "packages/@ember/array/index.ts",
10353
- "line": 1703,
10353
+ "line": 1636,
10354
10354
  "description": "Adds the named objects to the beginning of the array. Defers notifying\nobservers until all objects have been added.\n\n```javascript\nlet colors = ['red'];\n\ncolors.unshiftObjects(['black', 'white']); // ['black', 'white', 'red']\ncolors.unshiftObjects('yellow'); // Type Error: 'undefined' is not a function\n```",
10355
10355
  "itemtype": "method",
10356
10356
  "name": "unshiftObjects",
@@ -10372,7 +10372,7 @@
10372
10372
  },
10373
10373
  {
10374
10374
  "file": "packages/@ember/array/index.ts",
10375
- "line": 1724,
10375
+ "line": 1653,
10376
10376
  "description": "Reverse objects in the array. Works just like `reverse()` but it is\nKVO-compliant.",
10377
10377
  "itemtype": "method",
10378
10378
  "name": "reverseObjects",
@@ -10387,7 +10387,7 @@
10387
10387
  },
10388
10388
  {
10389
10389
  "file": "packages/@ember/array/index.ts",
10390
- "line": 1743,
10390
+ "line": 1662,
10391
10391
  "description": "Replace all the receiver's content with content of the argument.\nIf argument is an empty array receiver will be cleared.\n\n```javascript\nlet colors = ['red', 'green', 'blue'];\n\ncolors.setObjects(['black', 'white']); // ['black', 'white']\ncolors.setObjects([]); // []\n```",
10392
10392
  "itemtype": "method",
10393
10393
  "name": "setObjects",
@@ -10409,7 +10409,7 @@
10409
10409
  },
10410
10410
  {
10411
10411
  "file": "packages/@ember/array/index.ts",
10412
- "line": 1770,
10412
+ "line": 1680,
10413
10413
  "description": "Remove all occurrences of an object in the array.\n\n```javascript\nlet cities = ['Chicago', 'Berlin', 'Lima', 'Chicago'];\n\ncities.removeObject('Chicago'); // ['Berlin', 'Lima']\ncities.removeObject('Lima'); // ['Berlin']\ncities.removeObject('Tokyo') // ['Berlin']\n```",
10414
10414
  "itemtype": "method",
10415
10415
  "name": "removeObject",
@@ -10431,7 +10431,7 @@
10431
10431
  },
10432
10432
  {
10433
10433
  "file": "packages/@ember/array/index.ts",
10434
- "line": 1798,
10434
+ "line": 1697,
10435
10435
  "description": "Removes each object in the passed array from the receiver.",
10436
10436
  "itemtype": "method",
10437
10437
  "name": "removeObjects",
@@ -10453,7 +10453,7 @@
10453
10453
  },
10454
10454
  {
10455
10455
  "file": "packages/@ember/array/index.ts",
10456
- "line": 1816,
10456
+ "line": 1706,
10457
10457
  "description": "Push the object onto the end of the array if it is not already\npresent in the array.\n\n```javascript\nlet cities = ['Chicago', 'Berlin'];\n\ncities.addObject('Lima'); // ['Chicago', 'Berlin', 'Lima']\ncities.addObject('Berlin'); // ['Chicago', 'Berlin', 'Lima']\n```",
10458
10458
  "itemtype": "method",
10459
10459
  "name": "addObject",
@@ -10475,7 +10475,7 @@
10475
10475
  },
10476
10476
  {
10477
10477
  "file": "packages/@ember/array/index.ts",
10478
- "line": 1842,
10478
+ "line": 1723,
10479
10479
  "description": "Adds each object in the passed array to the receiver.",
10480
10480
  "itemtype": "method",
10481
10481
  "name": "addObjects",
@@ -10497,7 +10497,7 @@
10497
10497
  },
10498
10498
  {
10499
10499
  "file": "packages/@ember/array/index.ts",
10500
- "line": 1858,
10500
+ "line": 1853,
10501
10501
  "description": "Creates an `Ember.NativeArray` from an Array-like object.\nDoes not modify the original object's contents. `A()` is not needed if\n`EmberENV.EXTEND_PROTOTYPES` is `true` (the default value). However,\nit is recommended that you use `A()` when creating addons for\nember or when you can not guarantee that `EmberENV.EXTEND_PROTOTYPES`\nwill be `true`.\n\nExample\n\n```app/components/my-component.js\nimport Component from '@ember/component';\nimport { A } from '@ember/array';\n\nexport default Component.extend({\n tagName: 'ul',\n classNames: ['pagination'],\n\n init() {\n this._super(...arguments);\n\n if (!this.get('content')) {\n this.set('content', A());\n this.set('otherContent', A([1,2,3]));\n }\n }\n});\n```",
10502
10502
  "itemtype": "method",
10503
10503
  "name": "A",
@@ -10513,71 +10513,22 @@
10513
10513
  },
10514
10514
  {
10515
10515
  "file": "packages/@ember/array/proxy.ts",
10516
- "line": 135,
10517
- "class": "ArrayProxy",
10518
- "module": "@ember/array/proxy"
10519
- },
10520
- {
10521
- "file": "packages/@ember/array/proxy.ts",
10522
- "line": 137,
10523
- "class": "ArrayProxy",
10524
- "module": "@ember/array/proxy"
10525
- },
10526
- {
10527
- "file": "packages/@ember/array/proxy.ts",
10528
- "line": 140,
10529
- "class": "ArrayProxy",
10530
- "module": "@ember/array/proxy"
10531
- },
10532
- {
10533
- "file": "packages/@ember/array/proxy.ts",
10534
- "line": 142,
10535
- "class": "ArrayProxy",
10536
- "module": "@ember/array/proxy"
10537
- },
10538
- {
10539
- "file": "packages/@ember/array/proxy.ts",
10540
- "line": 145,
10541
- "class": "ArrayProxy",
10542
- "module": "@ember/array/proxy"
10543
- },
10544
- {
10545
- "file": "packages/@ember/array/proxy.ts",
10546
- "line": 147,
10547
- "class": "ArrayProxy",
10548
- "module": "@ember/array/proxy"
10549
- },
10550
- {
10551
- "file": "packages/@ember/array/proxy.ts",
10552
- "line": 149,
10553
- "class": "ArrayProxy",
10554
- "module": "@ember/array/proxy"
10555
- },
10556
- {
10557
- "file": "packages/@ember/array/proxy.ts",
10558
- "line": 151,
10559
- "class": "ArrayProxy",
10560
- "module": "@ember/array/proxy"
10561
- },
10562
- {
10563
- "file": "packages/@ember/array/proxy.ts",
10564
- "line": 153,
10565
- "class": "ArrayProxy",
10566
- "module": "@ember/array/proxy"
10567
- },
10568
- {
10569
- "file": "packages/@ember/array/proxy.ts",
10570
- "line": 155,
10516
+ "line": 120,
10517
+ "description": "The content array. Must be an object that implements `Array` and/or\n`MutableArray.`",
10518
+ "itemtype": "property",
10519
+ "name": "content",
10520
+ "type": "EmberArray",
10521
+ "access": "public",
10522
+ "tagname": "",
10571
10523
  "class": "ArrayProxy",
10572
10524
  "module": "@ember/array/proxy"
10573
10525
  },
10574
10526
  {
10575
10527
  "file": "packages/@ember/array/proxy.ts",
10576
- "line": 172,
10577
- "description": "The content array. Must be an object that implements `Array` and/or\n`MutableArray.`",
10528
+ "line": 129,
10529
+ "description": "The array that the proxy pretends to be. In the default `ArrayProxy`\nimplementation, this and `content` are the same. Subclasses of `ArrayProxy`\ncan override this property to provide things like sorting and filtering.",
10578
10530
  "itemtype": "property",
10579
- "name": "content",
10580
- "type": "EmberArray",
10531
+ "name": "arrangedContent",
10581
10532
  "access": "public",
10582
10533
  "tagname": "",
10583
10534
  "class": "ArrayProxy",
@@ -10585,7 +10536,7 @@
10585
10536
  },
10586
10537
  {
10587
10538
  "file": "packages/@ember/array/proxy.ts",
10588
- "line": 184,
10539
+ "line": 138,
10589
10540
  "description": "Should actually retrieve the object at the specified index from the\ncontent. You can override this method in subclasses to transform the\ncontent item to something new.\n\nThis method will only be called if content is non-`null`.",
10590
10541
  "itemtype": "method",
10591
10542
  "name": "objectAtContent",
@@ -10607,7 +10558,7 @@
10607
10558
  },
10608
10559
  {
10609
10560
  "file": "packages/@ember/array/proxy.ts",
10610
- "line": 212,
10561
+ "line": 151,
10611
10562
  "description": "Should actually replace the specified objects on the content array.\nYou can override this method in subclasses to transform the content item\ninto something new.\n\nThis method will only be called if content is non-`null`.",
10612
10563
  "itemtype": "method",
10613
10564
  "name": "replaceContent",
@@ -10639,12 +10590,61 @@
10639
10590
  },
10640
10591
  {
10641
10592
  "file": "packages/@ember/array/proxy.ts",
10642
- "line": 401,
10643
- "description": "The array that the proxy pretends to be. In the default `ArrayProxy`\nimplementation, this and `content` are the same. Subclasses of `ArrayProxy`\ncan override this property to provide things like sorting and filtering.",
10644
- "itemtype": "property",
10645
- "name": "arrangedContent",
10646
- "access": "public",
10647
- "tagname": "",
10593
+ "line": 181,
10594
+ "class": "ArrayProxy",
10595
+ "module": "@ember/array/proxy"
10596
+ },
10597
+ {
10598
+ "file": "packages/@ember/array/proxy.ts",
10599
+ "line": 183,
10600
+ "class": "ArrayProxy",
10601
+ "module": "@ember/array/proxy"
10602
+ },
10603
+ {
10604
+ "file": "packages/@ember/array/proxy.ts",
10605
+ "line": 186,
10606
+ "class": "ArrayProxy",
10607
+ "module": "@ember/array/proxy"
10608
+ },
10609
+ {
10610
+ "file": "packages/@ember/array/proxy.ts",
10611
+ "line": 188,
10612
+ "class": "ArrayProxy",
10613
+ "module": "@ember/array/proxy"
10614
+ },
10615
+ {
10616
+ "file": "packages/@ember/array/proxy.ts",
10617
+ "line": 191,
10618
+ "class": "ArrayProxy",
10619
+ "module": "@ember/array/proxy"
10620
+ },
10621
+ {
10622
+ "file": "packages/@ember/array/proxy.ts",
10623
+ "line": 193,
10624
+ "class": "ArrayProxy",
10625
+ "module": "@ember/array/proxy"
10626
+ },
10627
+ {
10628
+ "file": "packages/@ember/array/proxy.ts",
10629
+ "line": 195,
10630
+ "class": "ArrayProxy",
10631
+ "module": "@ember/array/proxy"
10632
+ },
10633
+ {
10634
+ "file": "packages/@ember/array/proxy.ts",
10635
+ "line": 197,
10636
+ "class": "ArrayProxy",
10637
+ "module": "@ember/array/proxy"
10638
+ },
10639
+ {
10640
+ "file": "packages/@ember/array/proxy.ts",
10641
+ "line": 199,
10642
+ "class": "ArrayProxy",
10643
+ "module": "@ember/array/proxy"
10644
+ },
10645
+ {
10646
+ "file": "packages/@ember/array/proxy.ts",
10647
+ "line": 201,
10648
10648
  "class": "ArrayProxy",
10649
10649
  "module": "@ember/array/proxy"
10650
10650
  },
@@ -10705,7 +10705,7 @@
10705
10705
  },
10706
10706
  {
10707
10707
  "file": "packages/@ember/controller/index.ts",
10708
- "line": 50,
10708
+ "line": 36,
10709
10709
  "description": "The object to which actions from the view should be sent.\n\nFor example, when a Handlebars template uses the `{{action}}` helper,\nit will attempt to send the action to the view's controller's `target`.\n\nBy default, the value of the target property is set to the router, and\nis injected when a controller is instantiated. This injection is applied\nas part of the application's initialization process. In most cases the\n`target` property will automatically be set to the logical consumer of\nactions for the controller.",
10710
10710
  "itemtype": "property",
10711
10711
  "name": "target",
@@ -10718,7 +10718,7 @@
10718
10718
  },
10719
10719
  {
10720
10720
  "file": "packages/@ember/controller/index.ts",
10721
- "line": 79,
10721
+ "line": 54,
10722
10722
  "description": "The controller's current model. When retrieving or modifying a controller's\nmodel, this property should be used instead of the `content` property.",
10723
10723
  "itemtype": "property",
10724
10724
  "name": "model",
@@ -10730,7 +10730,7 @@
10730
10730
  },
10731
10731
  {
10732
10732
  "file": "packages/@ember/controller/index.ts",
10733
- "line": 96,
10733
+ "line": 63,
10734
10734
  "description": "Defines which query parameters the controller accepts.\nIf you give the names `['category','page']` it will bind\nthe values of these query parameters to the variables\n`this.category` and `this.page`.\n\nBy default, query parameters are parsed as strings. This\nmay cause unexpected behavior if a query parameter is used with `toggleProperty`,\nbecause the initial value set for `param=false` will be the string `\"false\"`, which is truthy.\n\nTo avoid this, you may specify that the query parameter should be parsed as a boolean\nby using the following verbose form with a `type` property:\n```javascript\n queryParams: [{\n category: {\n type: 'boolean'\n }\n }]\n```\nAvailable values for the `type` parameter are `'boolean'`, `'number'`, `'array'`, and `'string'`.\nIf query param type is not specified, it will default to `'string'`.",
10735
10735
  "itemtype": "property",
10736
10736
  "name": "queryParams",
@@ -10742,31 +10742,7 @@
10742
10742
  },
10743
10743
  {
10744
10744
  "file": "packages/@ember/controller/index.ts",
10745
- "line": 124,
10746
- "description": "This property is updated to various different callback functions depending on\nthe current \"state\" of the backing route. It is used by\n`Controller.prototype._qpChanged`.\n\nThe methods backing each state can be found in the `Route.prototype._qp` computed\nproperty return value (the `.states` property). The current values are listed here for\nthe sanity of future travelers:\n\n* `inactive` - This state is used when this controller instance is not part of the active\n route hierarchy. Set in `Route.prototype._reset` (a `router.js` microlib hook) and\n `Route.prototype.actions.finalizeQueryParamChange`.\n* `active` - This state is used when this controller instance is part of the active\n route hierarchy. Set in `Route.prototype.actions.finalizeQueryParamChange`.\n* `allowOverrides` - This state is used in `Route.prototype.setup` (`route.js` microlib hook).",
10747
- "itemtype": "method",
10748
- "name": "_qpDelegate",
10749
- "access": "private",
10750
- "tagname": "",
10751
- "class": "Ember.ControllerMixin",
10752
- "module": "ember/controller",
10753
- "namespace": "Ember"
10754
- },
10755
- {
10756
- "file": "packages/@ember/controller/index.ts",
10757
- "line": 145,
10758
- "description": "During `Route#setup` observers are created to invoke this method\nwhen any of the query params declared in `Controller#queryParams` property\nare changed.\n\nWhen invoked this method uses the currently active query param update delegate\n(see `Controller.prototype._qpDelegate` for details) and invokes it with\nthe QP key/value being changed.",
10759
- "itemtype": "method",
10760
- "name": "_qpChanged",
10761
- "access": "private",
10762
- "tagname": "",
10763
- "class": "Ember.ControllerMixin",
10764
- "module": "ember/controller",
10765
- "namespace": "Ember"
10766
- },
10767
- {
10768
- "file": "packages/@ember/controller/index.ts",
10769
- "line": 166,
10745
+ "line": 91,
10770
10746
  "description": "Transition the application into another route. The route may\nbe either a single route or route path:\n\n```javascript\naController.transitionToRoute('blogPosts');\naController.transitionToRoute('blogPosts.recentEntries');\n```\n\nOptionally supply a model for the route in question. The model\nwill be serialized into the URL using the `serialize` hook of\nthe route:\n\n```javascript\naController.transitionToRoute('blogPost', aPost);\n```\n\nIf a literal is passed (such as a number or a string), it will\nbe treated as an identifier instead. In this case, the `model`\nhook of the route will be triggered:\n\n```javascript\naController.transitionToRoute('blogPost', 1);\n```\n\nMultiple models will be applied last to first recursively up the\nroute tree.\n\n```app/router.js\nRouter.map(function() {\n this.route('blogPost', { path: ':blogPostId' }, function() {\n this.route('blogComment', { path: ':blogCommentId', resetNamespace: true });\n });\n});\n```\n\n```javascript\naController.transitionToRoute('blogComment', aPost, aComment);\naController.transitionToRoute('blogComment', 1, 13);\n```\n\nIt is also possible to pass a URL (a string that starts with a\n`/`).\n\n```javascript\naController.transitionToRoute('/');\naController.transitionToRoute('/blog/post/1/comment/13');\naController.transitionToRoute('/blog/posts?sort=title');\n```\n\nAn options hash with a `queryParams` property may be provided as\nthe final argument to add query parameters to the destination URL.\n\n```javascript\naController.transitionToRoute('blogPost', 1, {\n queryParams: { showComments: 'true' }\n});\n\n// if you just want to transition the query parameters without changing the route\naController.transitionToRoute({ queryParams: { sort: 'date' } });\n```\n\nSee also [replaceRoute](/ember/release/classes/Ember.ControllerMixin/methods/replaceRoute?anchor=replaceRoute).",
10771
10747
  "itemtype": "method",
10772
10748
  "name": "transitionToRoute",
@@ -10803,7 +10779,7 @@
10803
10779
  },
10804
10780
  {
10805
10781
  "file": "packages/@ember/controller/index.ts",
10806
- "line": 256,
10782
+ "line": 169,
10807
10783
  "description": "Transition into another route while replacing the current URL, if possible.\nThis will replace the current history entry instead of adding a new one.\nBeside that, it is identical to `transitionToRoute` in all other respects.\n\n```javascript\naController.replaceRoute('blogPosts');\naController.replaceRoute('blogPosts.recentEntries');\n```\n\nOptionally supply a model for the route in question. The model\nwill be serialized into the URL using the `serialize` hook of\nthe route:\n\n```javascript\naController.replaceRoute('blogPost', aPost);\n```\n\nIf a literal is passed (such as a number or a string), it will\nbe treated as an identifier instead. In this case, the `model`\nhook of the route will be triggered:\n\n```javascript\naController.replaceRoute('blogPost', 1);\n```\n\nMultiple models will be applied last to first recursively up the\nroute tree.\n\n```app/router.js\nRouter.map(function() {\n this.route('blogPost', { path: ':blogPostId' }, function() {\n this.route('blogComment', { path: ':blogCommentId', resetNamespace: true });\n });\n});\n```\n\n```\naController.replaceRoute('blogComment', aPost, aComment);\naController.replaceRoute('blogComment', 1, 13);\n```\n\nIt is also possible to pass a URL (a string that starts with a\n`/`).\n\n```javascript\naController.replaceRoute('/');\naController.replaceRoute('/blog/post/1/comment/13');\n```",
10808
10784
  "itemtype": "method",
10809
10785
  "name": "replaceRoute",
@@ -10840,7 +10816,31 @@
10840
10816
  },
10841
10817
  {
10842
10818
  "file": "packages/@ember/controller/index.ts",
10843
- "line": 343,
10819
+ "line": 264,
10820
+ "description": "This property is updated to various different callback functions depending on\nthe current \"state\" of the backing route. It is used by\n`Controller.prototype._qpChanged`.\n\nThe methods backing each state can be found in the `Route.prototype._qp` computed\nproperty return value (the `.states` property). The current values are listed here for\nthe sanity of future travelers:\n\n* `inactive` - This state is used when this controller instance is not part of the active\n route hierarchy. Set in `Route.prototype._reset` (a `router.js` microlib hook) and\n `Route.prototype.actions.finalizeQueryParamChange`.\n* `active` - This state is used when this controller instance is part of the active\n route hierarchy. Set in `Route.prototype.actions.finalizeQueryParamChange`.\n* `allowOverrides` - This state is used in `Route.prototype.setup` (`route.js` microlib hook).",
10821
+ "itemtype": "method",
10822
+ "name": "_qpDelegate",
10823
+ "access": "private",
10824
+ "tagname": "",
10825
+ "class": "Ember.ControllerMixin",
10826
+ "module": "ember/controller",
10827
+ "namespace": "Ember"
10828
+ },
10829
+ {
10830
+ "file": "packages/@ember/controller/index.ts",
10831
+ "line": 285,
10832
+ "description": "During `Route#setup` observers are created to invoke this method\nwhen any of the query params declared in `Controller#queryParams` property\nare changed.\n\nWhen invoked this method uses the currently active query param update delegate\n(see `Controller.prototype._qpDelegate` for details) and invokes it with\nthe QP key/value being changed.",
10833
+ "itemtype": "method",
10834
+ "name": "_qpChanged",
10835
+ "access": "private",
10836
+ "tagname": "",
10837
+ "class": "Ember.ControllerMixin",
10838
+ "module": "ember/controller",
10839
+ "namespace": "Ember"
10840
+ },
10841
+ {
10842
+ "file": "packages/@ember/controller/index.ts",
10843
+ "line": 344,
10844
10844
  "description": "Creates a property that lazily looks up another controller in the container.\nCan only be used when defining another controller.\n\nExample:\n\n```app/controllers/post.js\nimport Controller, {\n inject as controller\n} from '@ember/controller';\n\nexport default class PostController extends Controller {\n @controller posts;\n}\n```\n\nClassic Class Example:\n\n```app/controllers/post.js\nimport Controller, {\n inject as controller\n} from '@ember/controller';\n\nexport default Controller.extend({\n posts: controller()\n});\n```\n\nThis example will create a `posts` property on the `post` controller that\nlooks up the `posts` controller in the container, making it easy to reference\nother controllers.",
10845
10845
  "itemtype": "method",
10846
10846
  "name": "inject",
@@ -11067,7 +11067,7 @@
11067
11067
  },
11068
11068
  {
11069
11069
  "file": "packages/@ember/debug/data-adapter.ts",
11070
- "line": 214,
11070
+ "line": 229,
11071
11071
  "description": "The container-debug-adapter which is used\nto list all models.",
11072
11072
  "itemtype": "property",
11073
11073
  "name": "containerDebugAdapter",
@@ -11080,7 +11080,7 @@
11080
11080
  },
11081
11081
  {
11082
11082
  "file": "packages/@ember/debug/data-adapter.ts",
11083
- "line": 224,
11083
+ "line": 239,
11084
11084
  "description": "The number of attributes to send\nas columns. (Enough to make the record\nidentifiable).",
11085
11085
  "access": "private",
11086
11086
  "tagname": "",
@@ -11093,7 +11093,7 @@
11093
11093
  },
11094
11094
  {
11095
11095
  "file": "packages/@ember/debug/data-adapter.ts",
11096
- "line": 236,
11096
+ "line": 251,
11097
11097
  "description": "Ember Data > v1.0.0-beta.18\nrequires string model names to be passed\naround instead of the actual factories.\n\nThis is a stamp for the Ember Inspector\nto differentiate between the versions\nto be able to support older versions too.",
11098
11098
  "access": "public",
11099
11099
  "tagname": "",
@@ -11104,7 +11104,7 @@
11104
11104
  },
11105
11105
  {
11106
11106
  "file": "packages/@ember/debug/data-adapter.ts",
11107
- "line": 250,
11107
+ "line": 265,
11108
11108
  "description": "Map from records arrays to RecordsWatcher instances",
11109
11109
  "access": "private",
11110
11110
  "tagname": "",
@@ -11116,7 +11116,7 @@
11116
11116
  },
11117
11117
  {
11118
11118
  "file": "packages/@ember/debug/data-adapter.ts",
11119
- "line": 258,
11119
+ "line": 273,
11120
11120
  "description": "Map from records arrays to TypeWatcher instances",
11121
11121
  "access": "private",
11122
11122
  "tagname": "",
@@ -11128,7 +11128,7 @@
11128
11128
  },
11129
11129
  {
11130
11130
  "file": "packages/@ember/debug/data-adapter.ts",
11131
- "line": 266,
11131
+ "line": 281,
11132
11132
  "description": "Callback that is currently scheduled on backburner end to flush and check\nall active watchers.",
11133
11133
  "access": "private",
11134
11134
  "tagname": "",
@@ -11140,7 +11140,7 @@
11140
11140
  },
11141
11141
  {
11142
11142
  "file": "packages/@ember/debug/data-adapter.ts",
11143
- "line": 276,
11143
+ "line": 291,
11144
11144
  "description": "Stores all methods that clear observers.\nThese methods will be called on destruction.",
11145
11145
  "access": "private",
11146
11146
  "tagname": "",
@@ -11152,7 +11152,7 @@
11152
11152
  },
11153
11153
  {
11154
11154
  "file": "packages/@ember/debug/data-adapter.ts",
11155
- "line": 285,
11155
+ "line": 300,
11156
11156
  "description": "Specifies how records can be filtered.\nRecords returned will need to have a `filterValues`\nproperty with a key for every name in the returned array.",
11157
11157
  "access": "public",
11158
11158
  "tagname": "",
@@ -11167,7 +11167,7 @@
11167
11167
  },
11168
11168
  {
11169
11169
  "file": "packages/@ember/debug/data-adapter.ts",
11170
- "line": 299,
11170
+ "line": 314,
11171
11171
  "description": "Fetch the model types and observe them for changes.",
11172
11172
  "access": "public",
11173
11173
  "tagname": "",
@@ -11194,7 +11194,7 @@
11194
11194
  },
11195
11195
  {
11196
11196
  "file": "packages/@ember/debug/data-adapter.ts",
11197
- "line": 347,
11197
+ "line": 362,
11198
11198
  "description": "Fetch the records of a given type and observe them for changes.",
11199
11199
  "access": "public",
11200
11200
  "tagname": "",
@@ -11231,7 +11231,7 @@
11231
11231
  },
11232
11232
  {
11233
11233
  "file": "packages/@ember/debug/data-adapter.ts",
11234
- "line": 419,
11234
+ "line": 434,
11235
11235
  "description": "Clear all observers before destruction",
11236
11236
  "access": "private",
11237
11237
  "tagname": "",
@@ -11242,7 +11242,7 @@
11242
11242
  },
11243
11243
  {
11244
11244
  "file": "packages/@ember/debug/data-adapter.ts",
11245
- "line": 437,
11245
+ "line": 452,
11246
11246
  "description": "Detect whether a class is a model.\n\nTest that against the model class\nof your persistence library.",
11247
11247
  "access": "public",
11248
11248
  "tagname": "",
@@ -11256,7 +11256,7 @@
11256
11256
  },
11257
11257
  {
11258
11258
  "file": "packages/@ember/debug/data-adapter.ts",
11259
- "line": 451,
11259
+ "line": 466,
11260
11260
  "description": "Get the columns for a given model type.",
11261
11261
  "access": "public",
11262
11262
  "tagname": "",
@@ -11271,7 +11271,7 @@
11271
11271
  },
11272
11272
  {
11273
11273
  "file": "packages/@ember/debug/data-adapter.ts",
11274
- "line": 464,
11274
+ "line": 479,
11275
11275
  "description": "Adds observers to a model type class.",
11276
11276
  "access": "private",
11277
11277
  "tagname": "",
@@ -11298,7 +11298,7 @@
11298
11298
  },
11299
11299
  {
11300
11300
  "file": "packages/@ember/debug/data-adapter.ts",
11301
- "line": 501,
11301
+ "line": 516,
11302
11302
  "description": "Wraps a given model type and observes changes to it.",
11303
11303
  "access": "private",
11304
11304
  "tagname": "",
@@ -11325,7 +11325,7 @@
11325
11325
  },
11326
11326
  {
11327
11327
  "file": "packages/@ember/debug/data-adapter.ts",
11328
- "line": 525,
11328
+ "line": 540,
11329
11329
  "description": "Fetches all models defined in the application.",
11330
11330
  "access": "private",
11331
11331
  "tagname": "",
@@ -11340,7 +11340,7 @@
11340
11340
  },
11341
11341
  {
11342
11342
  "file": "packages/@ember/debug/data-adapter.ts",
11343
- "line": 550,
11343
+ "line": 565,
11344
11344
  "description": "Loops over all namespaces and all objects\nattached to them.",
11345
11345
  "access": "private",
11346
11346
  "tagname": "",
@@ -11355,7 +11355,7 @@
11355
11355
  },
11356
11356
  {
11357
11357
  "file": "packages/@ember/debug/data-adapter.ts",
11358
- "line": 579,
11358
+ "line": 594,
11359
11359
  "description": "Fetches all loaded records for a given type.",
11360
11360
  "access": "public",
11361
11361
  "tagname": "",
@@ -11370,7 +11370,7 @@
11370
11370
  },
11371
11371
  {
11372
11372
  "file": "packages/@ember/debug/data-adapter.ts",
11373
- "line": 592,
11373
+ "line": 607,
11374
11374
  "description": "Wraps a record and observers changes to it.",
11375
11375
  "access": "private",
11376
11376
  "tagname": "",
@@ -11392,7 +11392,7 @@
11392
11392
  },
11393
11393
  {
11394
11394
  "file": "packages/@ember/debug/data-adapter.ts",
11395
- "line": 612,
11395
+ "line": 627,
11396
11396
  "description": "Gets the values for each column.",
11397
11397
  "access": "public",
11398
11398
  "tagname": "",
@@ -11407,7 +11407,7 @@
11407
11407
  },
11408
11408
  {
11409
11409
  "file": "packages/@ember/debug/data-adapter.ts",
11410
- "line": 624,
11410
+ "line": 639,
11411
11411
  "description": "Returns keywords to match when searching records.",
11412
11412
  "access": "public",
11413
11413
  "tagname": "",
@@ -11422,7 +11422,7 @@
11422
11422
  },
11423
11423
  {
11424
11424
  "file": "packages/@ember/debug/data-adapter.ts",
11425
- "line": 635,
11425
+ "line": 650,
11426
11426
  "description": "Returns the values of filters defined by `getFilters`.",
11427
11427
  "access": "public",
11428
11428
  "tagname": "",
@@ -11444,7 +11444,7 @@
11444
11444
  },
11445
11445
  {
11446
11446
  "file": "packages/@ember/debug/data-adapter.ts",
11447
- "line": 647,
11447
+ "line": 662,
11448
11448
  "description": "Each record can have a color that represents its state.",
11449
11449
  "access": "public",
11450
11450
  "tagname": "",
@@ -13817,83 +13817,6 @@
13817
13817
  {
13818
13818
  "file": "packages/@ember/object/observable.ts",
13819
13819
  "line": 93,
13820
- "description": "Retrieves the value of a property from the object.",
13821
- "class": "Observable",
13822
- "module": "@ember/object/observable"
13823
- },
13824
- {
13825
- "file": "packages/@ember/object/observable.ts",
13826
- "line": 98,
13827
- "description": "To get the values of multiple properties at once, call `getProperties`\nwith a list of strings or an array:",
13828
- "class": "Observable",
13829
- "module": "@ember/object/observable"
13830
- },
13831
- {
13832
- "file": "packages/@ember/object/observable.ts",
13833
- "line": 106,
13834
- "description": "Sets the provided key or path to the value.",
13835
- "class": "Observable",
13836
- "module": "@ember/object/observable"
13837
- },
13838
- {
13839
- "file": "packages/@ember/object/observable.ts",
13840
- "line": 112,
13841
- "description": "Sets a list of properties at once. These properties are set inside\na single `beginPropertyChanges` and `endPropertyChanges` batch, so\nobservers will be buffered.",
13842
- "class": "Observable",
13843
- "module": "@ember/object/observable"
13844
- },
13845
- {
13846
- "file": "packages/@ember/object/observable.ts",
13847
- "line": 119,
13848
- "description": "Convenience method to call `propertyWillChange` and `propertyDidChange` in\nsuccession.",
13849
- "class": "Observable",
13850
- "module": "@ember/object/observable"
13851
- },
13852
- {
13853
- "file": "packages/@ember/object/observable.ts",
13854
- "line": 125,
13855
- "description": "Adds an observer on a property.",
13856
- "class": "Observable",
13857
- "module": "@ember/object/observable"
13858
- },
13859
- {
13860
- "file": "packages/@ember/object/observable.ts",
13861
- "line": 131,
13862
- "description": "Remove an observer you have previously registered on this object. Pass\nthe same key, target, and method you passed to `addObserver()` and your\ntarget will no longer receive notifications.",
13863
- "class": "Observable",
13864
- "module": "@ember/object/observable"
13865
- },
13866
- {
13867
- "file": "packages/@ember/object/observable.ts",
13868
- "line": 144,
13869
- "description": "Set the value of a property to the current value plus some amount.",
13870
- "class": "Observable",
13871
- "module": "@ember/object/observable"
13872
- },
13873
- {
13874
- "file": "packages/@ember/object/observable.ts",
13875
- "line": 150,
13876
- "description": "Set the value of a property to the current value minus some amount.",
13877
- "class": "Observable",
13878
- "module": "@ember/object/observable"
13879
- },
13880
- {
13881
- "file": "packages/@ember/object/observable.ts",
13882
- "line": 156,
13883
- "description": "Set the value of a boolean property to the opposite of its\ncurrent value.",
13884
- "class": "Observable",
13885
- "module": "@ember/object/observable"
13886
- },
13887
- {
13888
- "file": "packages/@ember/object/observable.ts",
13889
- "line": 162,
13890
- "description": "Returns the cached value of a computed property, if it exists.\nThis allows you to inspect the value of a computed property\nwithout accidentally invoking it if it is intended to be\ngenerated lazily.",
13891
- "class": "Observable",
13892
- "module": "@ember/object/observable"
13893
- },
13894
- {
13895
- "file": "packages/@ember/object/observable.ts",
13896
- "line": 171,
13897
13820
  "description": "Retrieves the value of a property from the object.\n\nThis method is usually similar to using `object[keyName]` or `object.keyName`,\nhowever it supports both computed properties and the unknownProperty\nhandler.\n\nBecause `get` unifies the syntax for accessing all these kinds\nof properties, it can make many refactorings easier, such as replacing a\nsimple property with a computed property, or vice versa.\n\n### Computed Properties\n\nComputed properties are methods defined with the `property` modifier\ndeclared at the end, such as:\n\n```javascript\nimport { computed } from '@ember/object';\n\nfullName: computed('firstName', 'lastName', function() {\n return this.get('firstName') + ' ' + this.get('lastName');\n})\n```\n\nWhen you call `get` on a computed property, the function will be\ncalled and the return value will be returned instead of the function\nitself.\n\n### Unknown Properties\n\nLikewise, if you try to call `get` on a property whose value is\n`undefined`, the `unknownProperty()` method will be called on the object.\nIf this method returns any value other than `undefined`, it will be returned\ninstead. This allows you to implement \"virtual\" properties that are\nnot defined upfront.",
13898
13821
  "itemtype": "method",
13899
13822
  "name": "get",
@@ -13915,7 +13838,7 @@
13915
13838
  },
13916
13839
  {
13917
13840
  "file": "packages/@ember/object/observable.ts",
13918
- "line": 216,
13841
+ "line": 136,
13919
13842
  "description": "To get the values of multiple properties at once, call `getProperties`\nwith a list of strings or an array:\n\n```javascript\nrecord.getProperties('firstName', 'lastName', 'zipCode');\n// { firstName: 'John', lastName: 'Doe', zipCode: '10011' }\n```\n\nis equivalent to:\n\n```javascript\nrecord.getProperties(['firstName', 'lastName', 'zipCode']);\n// { firstName: 'John', lastName: 'Doe', zipCode: '10011' }\n```",
13920
13843
  "itemtype": "method",
13921
13844
  "name": "getProperties",
@@ -13937,7 +13860,7 @@
13937
13860
  },
13938
13861
  {
13939
13862
  "file": "packages/@ember/object/observable.ts",
13940
- "line": 241,
13863
+ "line": 161,
13941
13864
  "description": "Sets the provided key or path to the value.\n\n```javascript\nrecord.set(\"key\", value);\n```\n\nThis method is generally very similar to calling `object[\"key\"] = value` or\n`object.key = value`, except that it provides support for computed\nproperties, the `setUnknownProperty()` method and property observers.\n\n### Computed Properties\n\nIf you try to set a value on a key that has a computed property handler\ndefined (see the `get()` method for an example), then `set()` will call\nthat method, passing both the value and key instead of simply changing\nthe value itself. This is useful for those times when you need to\nimplement a property that is composed of one or more member\nproperties.\n\n### Unknown Properties\n\nIf you try to set a value on a key that is undefined in the target\nobject, then the `setUnknownProperty()` handler will be called instead. This\ngives you an opportunity to implement complex \"virtual\" properties that\nare not predefined on the object. If `setUnknownProperty()` returns\nundefined, then `set()` will simply set the value on the object.\n\n### Property Observers\n\nIn addition to changing the property, `set()` will also register a property\nchange with the object. Unless you have placed this call inside of a\n`beginPropertyChanges()` and `endPropertyChanges(),` any \"local\" observers\n(i.e. observer methods declared on the same object), will be called\nimmediately. Any \"remote\" observers (i.e. observer methods declared on\nanother object) will be placed in a queue and called at a later time in a\ncoalesced manner.",
13942
13865
  "itemtype": "method",
13943
13866
  "name": "set",
@@ -13964,7 +13887,7 @@
13964
13887
  },
13965
13888
  {
13966
13889
  "file": "packages/@ember/object/observable.ts",
13967
- "line": 289,
13890
+ "line": 208,
13968
13891
  "description": "Sets a list of properties at once. These properties are set inside\na single `beginPropertyChanges` and `endPropertyChanges` batch, so\nobservers will be buffered.\n\n```javascript\nrecord.setProperties({ firstName: 'Charles', lastName: 'Jolley' });\n```",
13969
13892
  "itemtype": "method",
13970
13893
  "name": "setProperties",
@@ -13986,38 +13909,8 @@
13986
13909
  },
13987
13910
  {
13988
13911
  "file": "packages/@ember/object/observable.ts",
13989
- "line": 307,
13990
- "description": "Begins a grouping of property changes.\n\nYou can use this method to group property changes so that notifications\nwill not be sent until the changes are finished. If you plan to make a\nlarge number of changes to an object at one time, you should call this\nmethod at the beginning of the changes to begin deferring change\nnotifications. When you are done making changes, call\n`endPropertyChanges()` to deliver the deferred change notifications and end\ndeferring.",
13991
- "itemtype": "method",
13992
- "name": "beginPropertyChanges",
13993
- "return": {
13994
- "description": "",
13995
- "type": "Observable"
13996
- },
13997
- "access": "private",
13998
- "tagname": "",
13999
- "class": "Observable",
14000
- "module": "@ember/object/observable"
14001
- },
14002
- {
14003
- "file": "packages/@ember/object/observable.ts",
14004
- "line": 327,
14005
- "description": "Ends a grouping of property changes.\n\nYou can use this method to group property changes so that notifications\nwill not be sent until the changes are finished. If you plan to make a\nlarge number of changes to an object at one time, you should call\n`beginPropertyChanges()` at the beginning of the changes to defer change\nnotifications. When you are done making changes, call this method to\ndeliver the deferred change notifications and end deferring.",
14006
- "itemtype": "method",
14007
- "name": "endPropertyChanges",
14008
- "return": {
14009
- "description": "",
14010
- "type": "Observable"
14011
- },
14012
- "access": "private",
14013
- "tagname": "",
14014
- "class": "Observable",
14015
- "module": "@ember/object/observable"
14016
- },
14017
- {
14018
- "file": "packages/@ember/object/observable.ts",
14019
- "line": 346,
14020
- "description": "Notify the observer system that a property has just changed.\n\nSometimes you need to change a value directly or indirectly without\nactually calling `get()` or `set()` on it. In this case, you can use this\nmethod instead. Calling this method will notify all observers that the\nproperty has potentially changed value.",
13912
+ "line": 224,
13913
+ "description": "Convenience method to call `propertyWillChange` and `propertyDidChange` in\nsuccession.\n\nNotify the observer system that a property has just changed.\n\nSometimes you need to change a value directly or indirectly without\nactually calling `get()` or `set()` on it. In this case, you can use this\nmethod instead. Calling this method will notify all observers that the\nproperty has potentially changed value.",
14021
13914
  "itemtype": "method",
14022
13915
  "name": "notifyPropertyChange",
14023
13916
  "params": [
@@ -14038,7 +13931,7 @@
14038
13931
  },
14039
13932
  {
14040
13933
  "file": "packages/@ember/object/observable.ts",
14041
- "line": 364,
13934
+ "line": 242,
14042
13935
  "description": "Adds an observer on a property.\n\nThis is the core method used to register an observer for a property.\n\nOnce you call this method, any time the key's value is set, your observer\nwill be notified. Note that the observers are triggered any time the\nvalue is set, regardless of whether it has actually changed. Your\nobserver should be prepared to handle that.\n\nThere are two common invocation patterns for `.addObserver()`:\n\n- Passing two arguments:\n - the name of the property to observe (as a string)\n - the function to invoke (an actual function)\n- Passing three arguments:\n - the name of the property to observe (as a string)\n - the target object (will be used to look up and invoke a\n function on)\n - the name of the function to invoke on the target object\n (as a string).\n\n```app/components/my-component.js\nimport Component from '@ember/component';\n\nexport default Component.extend({\n init() {\n this._super(...arguments);\n\n // the following are equivalent:\n\n // using three arguments\n this.addObserver('foo', this, 'fooDidChange');\n\n // using two arguments\n this.addObserver('foo', (...args) => {\n this.fooDidChange(...args);\n });\n },\n\n fooDidChange() {\n // your custom logic code\n }\n});\n```\n\n### Observer Methods\n\nObserver methods have the following signature:\n\n```app/components/my-component.js\nimport Component from '@ember/component';\n\nexport default Component.extend({\n init() {\n this._super(...arguments);\n this.addObserver('foo', this, 'fooDidChange');\n },\n\n fooDidChange(sender, key, value, rev) {\n // your code\n }\n});\n```\n\nThe `sender` is the object that changed. The `key` is the property that\nchanges. The `value` property is currently reserved and unused. The `rev`\nis the last property revision of the object when it changed, which you can\nuse to detect if the key value has really changed or not.\n\nUsually you will not need the value or revision parameters at\nthe end. In this case, it is common to write observer methods that take\nonly a sender and key value as parameters or, if you aren't interested in\nany of these values, to write an observer that has no parameters at all.",
14043
13936
  "itemtype": "method",
14044
13937
  "name": "addObserver",
@@ -14075,7 +13968,7 @@
14075
13968
  },
14076
13969
  {
14077
13970
  "file": "packages/@ember/object/observable.ts",
14078
- "line": 457,
13971
+ "line": 328,
14079
13972
  "description": "Remove an observer you have previously registered on this object. Pass\nthe same key, target, and method you passed to `addObserver()` and your\ntarget will no longer receive notifications.",
14080
13973
  "itemtype": "method",
14081
13974
  "name": "removeObserver",
@@ -14112,29 +14005,7 @@
14112
14005
  },
14113
14006
  {
14114
14007
  "file": "packages/@ember/object/observable.ts",
14115
- "line": 480,
14116
- "description": "Returns `true` if the object currently has observers registered for a\nparticular key. You can use this method to potentially defer performing\nan expensive action until someone begins observing a particular property\non the object.",
14117
- "itemtype": "method",
14118
- "name": "hasObserverFor",
14119
- "params": [
14120
- {
14121
- "name": "key",
14122
- "description": "Key to check",
14123
- "type": "String"
14124
- }
14125
- ],
14126
- "return": {
14127
- "description": "",
14128
- "type": "Boolean"
14129
- },
14130
- "access": "private",
14131
- "tagname": "",
14132
- "class": "Observable",
14133
- "module": "@ember/object/observable"
14134
- },
14135
- {
14136
- "file": "packages/@ember/object/observable.ts",
14137
- "line": 495,
14008
+ "line": 349,
14138
14009
  "description": "Set the value of a property to the current value plus some amount.\n\n```javascript\nperson.incrementProperty('age');\nteam.incrementProperty('score', 2);\n```",
14139
14010
  "itemtype": "method",
14140
14011
  "name": "incrementProperty",
@@ -14161,7 +14032,7 @@
14161
14032
  },
14162
14033
  {
14163
14034
  "file": "packages/@ember/object/observable.ts",
14164
- "line": 517,
14035
+ "line": 366,
14165
14036
  "description": "Set the value of a property to the current value minus some amount.\n\n```javascript\nplayer.decrementProperty('lives');\norc.decrementProperty('health', 5);\n```",
14166
14037
  "itemtype": "method",
14167
14038
  "name": "decrementProperty",
@@ -14188,7 +14059,7 @@
14188
14059
  },
14189
14060
  {
14190
14061
  "file": "packages/@ember/object/observable.ts",
14191
- "line": 539,
14062
+ "line": 383,
14192
14063
  "description": "Set the value of a boolean property to the opposite of its\ncurrent value.\n\n```javascript\nstarship.toggleProperty('warpDriveEngaged');\n```",
14193
14064
  "itemtype": "method",
14194
14065
  "name": "toggleProperty",
@@ -14210,7 +14081,7 @@
14210
14081
  },
14211
14082
  {
14212
14083
  "file": "packages/@ember/object/observable.ts",
14213
- "line": 556,
14084
+ "line": 398,
14214
14085
  "description": "Returns the cached value of a computed property, if it exists.\nThis allows you to inspect the value of a computed property\nwithout accidentally invoking it if it is intended to be\ngenerated lazily.",
14215
14086
  "itemtype": "method",
14216
14087
  "name": "cacheFor",
@@ -14230,9 +14101,61 @@
14230
14101
  "class": "Observable",
14231
14102
  "module": "@ember/object/observable"
14232
14103
  },
14104
+ {
14105
+ "file": "packages/@ember/object/observable.ts",
14106
+ "line": 428,
14107
+ "description": "Begins a grouping of property changes.\n\nYou can use this method to group property changes so that notifications\nwill not be sent until the changes are finished. If you plan to make a\nlarge number of changes to an object at one time, you should call this\nmethod at the beginning of the changes to begin deferring change\nnotifications. When you are done making changes, call\n`endPropertyChanges()` to deliver the deferred change notifications and end\ndeferring.",
14108
+ "itemtype": "method",
14109
+ "name": "beginPropertyChanges",
14110
+ "return": {
14111
+ "description": "",
14112
+ "type": "Observable"
14113
+ },
14114
+ "access": "private",
14115
+ "tagname": "",
14116
+ "class": "Observable",
14117
+ "module": "@ember/object/observable"
14118
+ },
14119
+ {
14120
+ "file": "packages/@ember/object/observable.ts",
14121
+ "line": 448,
14122
+ "description": "Ends a grouping of property changes.\n\nYou can use this method to group property changes so that notifications\nwill not be sent until the changes are finished. If you plan to make a\nlarge number of changes to an object at one time, you should call\n`beginPropertyChanges()` at the beginning of the changes to defer change\nnotifications. When you are done making changes, call this method to\ndeliver the deferred change notifications and end deferring.",
14123
+ "itemtype": "method",
14124
+ "name": "endPropertyChanges",
14125
+ "return": {
14126
+ "description": "",
14127
+ "type": "Observable"
14128
+ },
14129
+ "access": "private",
14130
+ "tagname": "",
14131
+ "class": "Observable",
14132
+ "module": "@ember/object/observable"
14133
+ },
14134
+ {
14135
+ "file": "packages/@ember/object/observable.ts",
14136
+ "line": 492,
14137
+ "description": "Returns `true` if the object currently has observers registered for a\nparticular key. You can use this method to potentially defer performing\nan expensive action until someone begins observing a particular property\non the object.",
14138
+ "itemtype": "method",
14139
+ "name": "hasObserverFor",
14140
+ "params": [
14141
+ {
14142
+ "name": "key",
14143
+ "description": "Key to check",
14144
+ "type": "String"
14145
+ }
14146
+ ],
14147
+ "return": {
14148
+ "description": "",
14149
+ "type": "Boolean"
14150
+ },
14151
+ "access": "private",
14152
+ "tagname": "",
14153
+ "class": "Observable",
14154
+ "module": "@ember/object/observable"
14155
+ },
14233
14156
  {
14234
14157
  "file": "packages/@ember/object/promise-proxy-mixin.ts",
14235
- "line": 126,
14158
+ "line": 111,
14236
14159
  "description": "If the proxied promise is rejected this will contain the reason\nprovided.",
14237
14160
  "itemtype": "property",
14238
14161
  "name": "reason",
@@ -14244,7 +14167,7 @@
14244
14167
  },
14245
14168
  {
14246
14169
  "file": "packages/@ember/object/promise-proxy-mixin.ts",
14247
- "line": 136,
14170
+ "line": 121,
14248
14171
  "description": "Once the proxied promise has settled this will become `false`.",
14249
14172
  "itemtype": "property",
14250
14173
  "name": "isPending",
@@ -14256,7 +14179,7 @@
14256
14179
  },
14257
14180
  {
14258
14181
  "file": "packages/@ember/object/promise-proxy-mixin.ts",
14259
- "line": 147,
14182
+ "line": 129,
14260
14183
  "description": "Once the proxied promise has settled this will become `true`.",
14261
14184
  "itemtype": "property",
14262
14185
  "name": "isSettled",
@@ -14268,7 +14191,7 @@
14268
14191
  },
14269
14192
  {
14270
14193
  "file": "packages/@ember/object/promise-proxy-mixin.ts",
14271
- "line": 158,
14194
+ "line": 138,
14272
14195
  "description": "Will become `true` if the proxied promise is rejected.",
14273
14196
  "itemtype": "property",
14274
14197
  "name": "isRejected",
@@ -14280,7 +14203,7 @@
14280
14203
  },
14281
14204
  {
14282
14205
  "file": "packages/@ember/object/promise-proxy-mixin.ts",
14283
- "line": 167,
14206
+ "line": 146,
14284
14207
  "description": "Will become `true` if the proxied promise is fulfilled.",
14285
14208
  "itemtype": "property",
14286
14209
  "name": "isFulfilled",
@@ -14292,7 +14215,7 @@
14292
14215
  },
14293
14216
  {
14294
14217
  "file": "packages/@ember/object/promise-proxy-mixin.ts",
14295
- "line": 176,
14218
+ "line": 155,
14296
14219
  "description": "The promise whose fulfillment value is being proxied by this object.\n\nThis property must be specified upon creation, and should not be\nchanged once created.\n\nExample:\n\n```javascript\nimport ObjectProxy from '@ember/object/proxy';\nimport PromiseProxyMixin from '@ember/object/promise-proxy-mixin';\n\nObjectProxy.extend(PromiseProxyMixin).create({\n promise: <thenable>\n});\n```",
14297
14220
  "itemtype": "property",
14298
14221
  "name": "promise",
@@ -14303,7 +14226,7 @@
14303
14226
  },
14304
14227
  {
14305
14228
  "file": "packages/@ember/object/promise-proxy-mixin.ts",
14306
- "line": 205,
14229
+ "line": 177,
14307
14230
  "description": "An alias to the proxied promise's `then`.\n\nSee RSVP.Promise.then.",
14308
14231
  "itemtype": "method",
14309
14232
  "name": "then",
@@ -14325,7 +14248,7 @@
14325
14248
  },
14326
14249
  {
14327
14250
  "file": "packages/@ember/object/promise-proxy-mixin.ts",
14328
- "line": 217,
14251
+ "line": 188,
14329
14252
  "description": "An alias to the proxied promise's `catch`.\n\nSee RSVP.Promise.catch.",
14330
14253
  "itemtype": "method",
14331
14254
  "name": "catch",
@@ -14348,7 +14271,7 @@
14348
14271
  },
14349
14272
  {
14350
14273
  "file": "packages/@ember/object/promise-proxy-mixin.ts",
14351
- "line": 230,
14274
+ "line": 200,
14352
14275
  "description": "An alias to the proxied promise's `finally`.\n\nSee RSVP.Promise.finally.",
14353
14276
  "itemtype": "method",
14354
14277
  "name": "finally",
@@ -19155,43 +19078,43 @@
19155
19078
  },
19156
19079
  {
19157
19080
  "message": "Missing item type",
19158
- "line": " packages/@ember/array/proxy.ts:135"
19081
+ "line": " packages/@ember/array/proxy.ts:181"
19159
19082
  },
19160
19083
  {
19161
19084
  "message": "Missing item type",
19162
- "line": " packages/@ember/array/proxy.ts:137"
19085
+ "line": " packages/@ember/array/proxy.ts:183"
19163
19086
  },
19164
19087
  {
19165
19088
  "message": "Missing item type",
19166
- "line": " packages/@ember/array/proxy.ts:140"
19089
+ "line": " packages/@ember/array/proxy.ts:186"
19167
19090
  },
19168
19091
  {
19169
19092
  "message": "Missing item type",
19170
- "line": " packages/@ember/array/proxy.ts:142"
19093
+ "line": " packages/@ember/array/proxy.ts:188"
19171
19094
  },
19172
19095
  {
19173
19096
  "message": "Missing item type",
19174
- "line": " packages/@ember/array/proxy.ts:145"
19097
+ "line": " packages/@ember/array/proxy.ts:191"
19175
19098
  },
19176
19099
  {
19177
19100
  "message": "Missing item type",
19178
- "line": " packages/@ember/array/proxy.ts:147"
19101
+ "line": " packages/@ember/array/proxy.ts:193"
19179
19102
  },
19180
19103
  {
19181
19104
  "message": "Missing item type",
19182
- "line": " packages/@ember/array/proxy.ts:149"
19105
+ "line": " packages/@ember/array/proxy.ts:195"
19183
19106
  },
19184
19107
  {
19185
19108
  "message": "Missing item type",
19186
- "line": " packages/@ember/array/proxy.ts:151"
19109
+ "line": " packages/@ember/array/proxy.ts:197"
19187
19110
  },
19188
19111
  {
19189
19112
  "message": "Missing item type",
19190
- "line": " packages/@ember/array/proxy.ts:153"
19113
+ "line": " packages/@ember/array/proxy.ts:199"
19191
19114
  },
19192
19115
  {
19193
19116
  "message": "Missing item type",
19194
- "line": " packages/@ember/array/proxy.ts:155"
19117
+ "line": " packages/@ember/array/proxy.ts:201"
19195
19118
  },
19196
19119
  {
19197
19120
  "message": "Missing item type",
@@ -19293,50 +19216,6 @@
19293
19216
  "message": "Missing item type",
19294
19217
  "line": " packages/@ember/object/mixin.ts:677"
19295
19218
  },
19296
- {
19297
- "message": "Missing item type\nRetrieves the value of a property from the object.",
19298
- "line": " packages/@ember/object/observable.ts:93"
19299
- },
19300
- {
19301
- "message": "Missing item type\nTo get the values of multiple properties at once, call `getProperties`\nwith a list of strings or an array:",
19302
- "line": " packages/@ember/object/observable.ts:98"
19303
- },
19304
- {
19305
- "message": "Missing item type\nSets the provided key or path to the value.",
19306
- "line": " packages/@ember/object/observable.ts:106"
19307
- },
19308
- {
19309
- "message": "Missing item type\nSets a list of properties at once. These properties are set inside\na single `beginPropertyChanges` and `endPropertyChanges` batch, so\nobservers will be buffered.",
19310
- "line": " packages/@ember/object/observable.ts:112"
19311
- },
19312
- {
19313
- "message": "Missing item type\nConvenience method to call `propertyWillChange` and `propertyDidChange` in\nsuccession.",
19314
- "line": " packages/@ember/object/observable.ts:119"
19315
- },
19316
- {
19317
- "message": "Missing item type\nAdds an observer on a property.",
19318
- "line": " packages/@ember/object/observable.ts:125"
19319
- },
19320
- {
19321
- "message": "Missing item type\nRemove an observer you have previously registered on this object. Pass\nthe same key, target, and method you passed to `addObserver()` and your\ntarget will no longer receive notifications.",
19322
- "line": " packages/@ember/object/observable.ts:131"
19323
- },
19324
- {
19325
- "message": "Missing item type\nSet the value of a property to the current value plus some amount.",
19326
- "line": " packages/@ember/object/observable.ts:144"
19327
- },
19328
- {
19329
- "message": "Missing item type\nSet the value of a property to the current value minus some amount.",
19330
- "line": " packages/@ember/object/observable.ts:150"
19331
- },
19332
- {
19333
- "message": "Missing item type\nSet the value of a boolean property to the opposite of its\ncurrent value.",
19334
- "line": " packages/@ember/object/observable.ts:156"
19335
- },
19336
- {
19337
- "message": "Missing item type\nReturns the cached value of a computed property, if it exists.\nThis allows you to inspect the value of a computed property\nwithout accidentally invoking it if it is intended to be\ngenerated lazily.",
19338
- "line": " packages/@ember/object/observable.ts:162"
19339
- },
19340
19219
  {
19341
19220
  "message": "Missing item type",
19342
19221
  "line": " packages/@ember/routing/lib/location-utils.ts:1"