ember-source 4.9.0-beta.3 → 4.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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-beta.3"
6
+ "version": "4.9.0"
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": 1457
2028
+ "line": 1463
2029
2029
  },
2030
2030
  "@ember/application/namespace": {
2031
2031
  "name": "@ember/application/namespace",
@@ -3264,7 +3264,7 @@
3264
3264
  "module": "@ember/array",
3265
3265
  "namespace": "",
3266
3266
  "file": "packages/@ember/array/index.ts",
3267
- "line": 1457,
3267
+ "line": 1463,
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": 1895,
3287
+ "line": 2062,
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",
@@ -9447,7 +9447,7 @@
9447
9447
  },
9448
9448
  {
9449
9449
  "file": "packages/@ember/array/index.ts",
9450
- "line": 323,
9450
+ "line": 324,
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": 345,
9465
+ "line": 346,
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": 353,
9480
+ "line": 354,
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": 373,
9507
+ "line": 374,
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": 411,
9534
+ "line": 412,
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": 446,
9561
+ "line": 447,
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": 497,
9589
+ "line": 498,
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": 519,
9611
+ "line": 520,
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": 539,
9638
+ "line": 540,
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": 577,
9666
+ "line": 578,
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": 597,
9688
+ "line": 599,
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": 660,
9716
+ "line": 662,
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": 704,
9744
+ "line": 706,
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": 725,
9772
+ "line": 727,
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": 753,
9800
+ "line": 751,
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": 799,
9828
+ "line": 801,
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": 828,
9856
+ "line": 831,
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": 869,
9884
+ "line": 872,
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": 908,
9913
+ "line": 912,
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": 951,
9941
+ "line": 955,
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": 976,
9970
+ "line": 981,
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": 1034,
9997
+ "line": 1039,
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": 1068,
10024
+ "line": 1073,
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": 1077,
10039
+ "line": 1082,
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": 1090,
10054
+ "line": 1095,
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": 1120,
10081
+ "line": 1125,
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": 1145,
10104
+ "line": 1150,
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": 1161,
10119
+ "line": 1166,
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": 1179,
10141
+ "line": 1185,
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": 1478,
10163
+ "line": 1484,
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": 1497,
10192
+ "line": 1503,
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": 1514,
10207
+ "line": 1520,
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": 1532,
10234
+ "line": 1538,
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": 1554,
10261
+ "line": 1560,
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": 1571,
10282
+ "line": 1577,
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": 1587,
10304
+ "line": 1593,
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": 1603,
10318
+ "line": 1609,
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": 1619,
10332
+ "line": 1625,
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": 1636,
10353
+ "line": 1642,
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": 1653,
10375
+ "line": 1659,
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": 1662,
10390
+ "line": 1668,
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": 1680,
10412
+ "line": 1686,
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": 1697,
10434
+ "line": 1703,
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": 1706,
10456
+ "line": 1712,
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": 1723,
10478
+ "line": 1729,
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": 1853,
10500
+ "line": 1859,
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",
@@ -10511,6 +10511,168 @@
10511
10511
  "class": "@ember/array",
10512
10512
  "module": "@ember/array"
10513
10513
  },
10514
+ {
10515
+ "file": "packages/@ember/array/index.ts",
10516
+ "line": 1904,
10517
+ "description": "The final definition of NativeArray removes all native methods. This is the list of removed methods\nwhen run in Chrome 106.",
10518
+ "class": "@ember/array",
10519
+ "module": "ember"
10520
+ },
10521
+ {
10522
+ "file": "packages/@ember/array/index.ts",
10523
+ "line": 1921,
10524
+ "description": "These additional items must be redefined since `Omit` causes methods that return `this` to return the\ntype at the time of the Omit.",
10525
+ "class": "@ember/array",
10526
+ "module": "ember"
10527
+ },
10528
+ {
10529
+ "file": "packages/@ember/array/index.ts",
10530
+ "line": 1943,
10531
+ "description": "Remove all elements from the array. This is useful if you\nwant to reuse an existing array without having to recreate it.",
10532
+ "class": "@ember/array",
10533
+ "module": "ember"
10534
+ },
10535
+ {
10536
+ "file": "packages/@ember/array/index.ts",
10537
+ "line": 1948,
10538
+ "description": "This will use the primitive `replace()` method to insert an object at the\nspecified index.",
10539
+ "class": "@ember/array",
10540
+ "module": "ember"
10541
+ },
10542
+ {
10543
+ "file": "packages/@ember/array/index.ts",
10544
+ "line": 1953,
10545
+ "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.",
10546
+ "class": "@ember/array",
10547
+ "module": "ember"
10548
+ },
10549
+ {
10550
+ "file": "packages/@ember/array/index.ts",
10551
+ "line": 1958,
10552
+ "description": "Add the objects in the passed numerable to the end of the array. Defers\nnotifying observers of the change until all objects are added.",
10553
+ "class": "@ember/array",
10554
+ "module": "ember"
10555
+ },
10556
+ {
10557
+ "file": "packages/@ember/array/index.ts",
10558
+ "line": 1963,
10559
+ "description": "Adds the named objects to the beginning of the array. Defers notifying\nobservers until all objects have been added.",
10560
+ "class": "@ember/array",
10561
+ "module": "ember"
10562
+ },
10563
+ {
10564
+ "file": "packages/@ember/array/index.ts",
10565
+ "line": 1968,
10566
+ "description": "Reverse objects in the array. Works just like `reverse()` but it is\nKVO-compliant.",
10567
+ "class": "@ember/array",
10568
+ "module": "ember"
10569
+ },
10570
+ {
10571
+ "file": "packages/@ember/array/index.ts",
10572
+ "line": 1973,
10573
+ "description": "Replace all the receiver's content with content of the argument.\nIf argument is an empty array receiver will be cleared.",
10574
+ "class": "@ember/array",
10575
+ "module": "ember"
10576
+ },
10577
+ {
10578
+ "file": "packages/@ember/array/index.ts",
10579
+ "line": 1978,
10580
+ "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```",
10581
+ "itemtype": "method",
10582
+ "name": "removeObject",
10583
+ "params": [
10584
+ {
10585
+ "name": "obj",
10586
+ "description": "object to remove",
10587
+ "type": "*"
10588
+ }
10589
+ ],
10590
+ "return": {
10591
+ "description": "receiver",
10592
+ "type": "EmberArray"
10593
+ },
10594
+ "access": "public",
10595
+ "tagname": "",
10596
+ "class": "@ember/array",
10597
+ "module": "ember"
10598
+ },
10599
+ {
10600
+ "file": "packages/@ember/array/index.ts",
10601
+ "line": 1995,
10602
+ "description": "Removes each object in the passed array from the receiver.",
10603
+ "class": "@ember/array",
10604
+ "module": "ember"
10605
+ },
10606
+ {
10607
+ "file": "packages/@ember/array/index.ts",
10608
+ "line": 1999,
10609
+ "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```",
10610
+ "itemtype": "method",
10611
+ "name": "addObject",
10612
+ "params": [
10613
+ {
10614
+ "name": "obj",
10615
+ "description": "object to add, if not already present",
10616
+ "type": "*"
10617
+ }
10618
+ ],
10619
+ "return": {
10620
+ "description": "receiver",
10621
+ "type": "EmberArray"
10622
+ },
10623
+ "access": "public",
10624
+ "tagname": "",
10625
+ "class": "@ember/array",
10626
+ "module": "ember"
10627
+ },
10628
+ {
10629
+ "file": "packages/@ember/array/index.ts",
10630
+ "line": 2016,
10631
+ "description": "Adds each object in the passed enumerable to the receiver.",
10632
+ "class": "@ember/array",
10633
+ "module": "ember"
10634
+ },
10635
+ {
10636
+ "file": "packages/@ember/array/index.ts",
10637
+ "line": 2020,
10638
+ "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```",
10639
+ "itemtype": "method",
10640
+ "name": "setEach",
10641
+ "params": [
10642
+ {
10643
+ "name": "key",
10644
+ "description": "The key to set",
10645
+ "type": "String"
10646
+ },
10647
+ {
10648
+ "name": "value",
10649
+ "description": "The object to set",
10650
+ "type": "Object"
10651
+ }
10652
+ ],
10653
+ "return": {
10654
+ "description": "receiver",
10655
+ "type": "Object"
10656
+ },
10657
+ "access": "public",
10658
+ "tagname": "",
10659
+ "class": "@ember/array",
10660
+ "module": "ember"
10661
+ },
10662
+ {
10663
+ "file": "packages/@ember/array/index.ts",
10664
+ "line": 2040,
10665
+ "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```",
10666
+ "itemtype": "property",
10667
+ "name": "[]",
10668
+ "return": {
10669
+ "description": "this"
10670
+ },
10671
+ "access": "public",
10672
+ "tagname": "",
10673
+ "class": "@ember/array",
10674
+ "module": "ember"
10675
+ },
10514
10676
  {
10515
10677
  "file": "packages/@ember/array/proxy.ts",
10516
10678
  "line": 120,
@@ -19041,6 +19203,50 @@
19041
19203
  "message": "Missing item type\nNavigate the instance to a particular URL. This is useful in tests, for\nexample, or to tell the app to start at a particular URL. This method\nreturns a promise that resolves with the app instance when the transition\nis complete, or rejects if the transition was aborted due to an error.",
19042
19204
  "line": " packages/@ember/application/instance.ts:237"
19043
19205
  },
19206
+ {
19207
+ "message": "Missing item type\nThe final definition of NativeArray removes all native methods. This is the list of removed methods\nwhen run in Chrome 106.",
19208
+ "line": " packages/@ember/array/index.ts:1904"
19209
+ },
19210
+ {
19211
+ "message": "Missing item type\nThese additional items must be redefined since `Omit` causes methods that return `this` to return the\ntype at the time of the Omit.",
19212
+ "line": " packages/@ember/array/index.ts:1921"
19213
+ },
19214
+ {
19215
+ "message": "Missing item type\nRemove all elements from the array. This is useful if you\nwant to reuse an existing array without having to recreate it.",
19216
+ "line": " packages/@ember/array/index.ts:1943"
19217
+ },
19218
+ {
19219
+ "message": "Missing item type\nThis will use the primitive `replace()` method to insert an object at the\nspecified index.",
19220
+ "line": " packages/@ember/array/index.ts:1948"
19221
+ },
19222
+ {
19223
+ "message": "Missing item type\nRemove an object at the specified index using the `replace()` primitive\nmethod. You can pass either a single index, or a start and a length.",
19224
+ "line": " packages/@ember/array/index.ts:1953"
19225
+ },
19226
+ {
19227
+ "message": "Missing item type\nAdd the objects in the passed numerable to the end of the array. Defers\nnotifying observers of the change until all objects are added.",
19228
+ "line": " packages/@ember/array/index.ts:1958"
19229
+ },
19230
+ {
19231
+ "message": "Missing item type\nAdds the named objects to the beginning of the array. Defers notifying\nobservers until all objects have been added.",
19232
+ "line": " packages/@ember/array/index.ts:1963"
19233
+ },
19234
+ {
19235
+ "message": "Missing item type\nReverse objects in the array. Works just like `reverse()` but it is\nKVO-compliant.",
19236
+ "line": " packages/@ember/array/index.ts:1968"
19237
+ },
19238
+ {
19239
+ "message": "Missing item type\nReplace all the receiver's content with content of the argument.\nIf argument is an empty array receiver will be cleared.",
19240
+ "line": " packages/@ember/array/index.ts:1973"
19241
+ },
19242
+ {
19243
+ "message": "Missing item type\nRemoves each object in the passed array from the receiver.",
19244
+ "line": " packages/@ember/array/index.ts:1995"
19245
+ },
19246
+ {
19247
+ "message": "Missing item type\nAdds each object in the passed enumerable to the receiver.",
19248
+ "line": " packages/@ember/array/index.ts:2016"
19249
+ },
19044
19250
  {
19045
19251
  "message": "Missing item type",
19046
19252
  "line": " packages/@ember/array/proxy.ts:181"