ember-source 5.11.0 → 5.11.1

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.
Files changed (147) hide show
  1. package/build-metadata.json +3 -3
  2. package/dist/ember-template-compiler.js +48 -42
  3. package/dist/ember-testing.js +1 -1
  4. package/dist/ember.debug.js +23102 -23100
  5. package/dist/ember.prod.js +31562 -31563
  6. package/dist/packages/@ember/-internals/container/index.js +1 -1
  7. package/dist/packages/@ember/-internals/deprecations/index.js +2 -1
  8. package/dist/packages/@ember/-internals/glimmer/index.js +2 -1
  9. package/dist/packages/@ember/-internals/meta/lib/meta.js +4 -3
  10. package/dist/packages/@ember/-internals/metal/index.js +9 -8
  11. package/dist/packages/@ember/-internals/routing/index.js +6 -5
  12. package/dist/packages/@ember/-internals/runtime/lib/ext/rsvp.js +3 -2
  13. package/dist/packages/@ember/-internals/runtime/lib/mixins/-proxy.js +6 -5
  14. package/dist/packages/@ember/-internals/runtime/lib/mixins/action_handler.js +4 -3
  15. package/dist/packages/@ember/-internals/runtime/lib/mixins/container_proxy.js +1 -1
  16. package/dist/packages/@ember/-internals/runtime/lib/mixins/registry_proxy.js +2 -1
  17. package/dist/packages/@ember/-internals/runtime/lib/mixins/target_action_support.js +4 -3
  18. package/dist/packages/@ember/-internals/string/index.js +1 -1
  19. package/dist/packages/@ember/-internals/utils/index.js +4 -4
  20. package/dist/packages/@ember/-internals/views/index.js +1 -1
  21. package/dist/packages/@ember/-internals/views/lib/compat/fallback-view-registry.js +1 -1
  22. package/dist/packages/@ember/-internals/views/lib/component_lookup.js +1 -1
  23. package/dist/packages/@ember/-internals/views/lib/mixins/action_support.js +5 -3
  24. package/dist/packages/@ember/-internals/views/lib/mixins/child_views_support.js +3 -3
  25. package/dist/packages/@ember/-internals/views/lib/mixins/class_names_support.js +4 -3
  26. package/dist/packages/@ember/-internals/views/lib/mixins/view_support.js +4 -3
  27. package/dist/packages/@ember/-internals/views/lib/system/event_dispatcher.js +6 -12
  28. package/dist/packages/@ember/-internals/views/lib/system/utils.js +3 -2
  29. package/dist/packages/@ember/-internals/views/lib/views/core_view.js +76 -8
  30. package/dist/packages/@ember/-internals/views/lib/views/states.js +4 -3
  31. package/dist/packages/@ember/application/index.js +16 -7
  32. package/dist/packages/@ember/application/instance.js +13 -9
  33. package/dist/packages/@ember/application/namespace.js +7 -6
  34. package/dist/packages/@ember/array/index.js +617 -11
  35. package/dist/packages/@ember/array/make.js +1 -0
  36. package/dist/packages/@ember/array/mutable.js +1 -1
  37. package/dist/packages/@ember/array/proxy.js +8 -5
  38. package/dist/packages/@ember/component/helper.js +4 -4
  39. package/dist/packages/@ember/component/index.js +4 -4
  40. package/dist/packages/@ember/controller/index.js +6 -6
  41. package/dist/packages/@ember/debug/container-debug-adapter.js +5 -4
  42. package/dist/packages/@ember/debug/data-adapter.js +7 -4
  43. package/dist/packages/@ember/debug/index.js +213 -4
  44. package/dist/packages/@ember/debug/lib/assert.js +47 -0
  45. package/dist/packages/@ember/debug/lib/deprecate.js +194 -4
  46. package/dist/packages/@ember/debug/lib/inspect.js +120 -2
  47. package/dist/packages/@ember/debug/lib/warn.js +94 -3
  48. package/dist/packages/@ember/engine/index.js +440 -17
  49. package/dist/packages/@ember/engine/instance.js +175 -11
  50. package/dist/packages/@ember/engine/parent.js +1 -0
  51. package/dist/packages/@ember/helper/index.js +4 -4
  52. package/dist/packages/@ember/instrumentation/index.js +2 -1
  53. package/dist/packages/@ember/modifier/index.js +13 -5
  54. package/dist/packages/@ember/modifier/on.js +15 -0
  55. package/dist/packages/@ember/object/-internals.js +6 -5
  56. package/dist/packages/@ember/object/compat.js +4 -3
  57. package/dist/packages/@ember/object/computed.js +4 -4
  58. package/dist/packages/@ember/object/core.js +861 -14
  59. package/dist/packages/@ember/object/evented.js +4 -4
  60. package/dist/packages/@ember/object/events.js +3 -3
  61. package/dist/packages/@ember/object/index.js +260 -9
  62. package/dist/packages/@ember/object/internals.js +1 -1
  63. package/dist/packages/@ember/object/lib/computed/computed_macros.js +8 -6
  64. package/dist/packages/@ember/object/lib/computed/reduce_computed_macros.js +8 -4
  65. package/dist/packages/@ember/object/mixin.js +6 -5
  66. package/dist/packages/@ember/object/observable.js +103 -9
  67. package/dist/packages/@ember/object/observers.js +3 -3
  68. package/dist/packages/@ember/object/promise-proxy-mixin.js +5 -5
  69. package/dist/packages/@ember/renderer/index.js +4 -4
  70. package/dist/packages/@ember/routing/-internals.js +3 -1
  71. package/dist/packages/@ember/routing/hash-location.js +2 -2
  72. package/dist/packages/@ember/routing/history-location.js +3 -2
  73. package/dist/packages/@ember/routing/index.js +4 -4
  74. package/dist/packages/@ember/routing/lib/dsl.js +2 -1
  75. package/dist/packages/@ember/routing/lib/generate_controller.js +4 -3
  76. package/dist/packages/@ember/routing/lib/router_state.js +26 -1
  77. package/dist/packages/@ember/routing/lib/routing-service.js +107 -9
  78. package/dist/packages/@ember/routing/lib/utils.js +238 -7
  79. package/dist/packages/@ember/routing/none-location.js +3 -2
  80. package/dist/packages/@ember/routing/route.js +1618 -22
  81. package/dist/packages/@ember/routing/router-service.js +638 -12
  82. package/dist/packages/@ember/routing/router.js +1449 -14
  83. package/dist/packages/@ember/runloop/index.js +760 -6
  84. package/dist/packages/@ember/service/index.js +3 -3
  85. package/dist/packages/@ember/template/index.js +4 -4
  86. package/dist/packages/@ember/utils/index.js +2 -1
  87. package/dist/packages/@ember/utils/lib/compare.js +159 -4
  88. package/dist/packages/@ember/utils/lib/is_empty.js +4 -4
  89. package/dist/packages/@ember/utils/lib/type-of.js +110 -1
  90. package/dist/packages/@glimmer/tracking/index.js +3 -3
  91. package/dist/packages/@glimmer/tracking/primitives/cache.js +3 -3
  92. package/dist/packages/ember/barrel.js +28 -13
  93. package/dist/packages/ember/version.js +1 -1
  94. package/dist/packages/ember-testing/lib/adapters/adapter.js +1 -1
  95. package/dist/packages/ember-testing/lib/adapters/qunit.js +2 -1
  96. package/dist/packages/ember-testing/lib/ext/application.js +2 -1
  97. package/dist/packages/ember-testing/lib/ext/rsvp.js +1 -1
  98. package/dist/packages/ember-testing/lib/helpers/and_then.js +2 -1
  99. package/dist/packages/ember-testing/lib/helpers/current_path.js +8 -6
  100. package/dist/packages/ember-testing/lib/helpers/current_route_name.js +8 -6
  101. package/dist/packages/ember-testing/lib/helpers/current_url.js +6 -5
  102. package/dist/packages/ember-testing/lib/helpers/pause_test.js +2 -1
  103. package/dist/packages/ember-testing/lib/helpers/visit.js +4 -3
  104. package/dist/packages/ember-testing/lib/helpers/wait.js +4 -3
  105. package/dist/packages/ember-testing/lib/initializers.js +15 -8
  106. package/dist/packages/ember-testing/lib/setup_for_testing.js +1 -1
  107. package/dist/packages/ember-testing/lib/test/run.js +1 -1
  108. package/dist/packages/router_js/index.js +2 -1
  109. package/dist/packages/shared-chunks/{alias-By_2yu5c.js → alias-Dri0koi2.js} +5 -3
  110. package/dist/packages/shared-chunks/array-3xbmc_4J.js +119 -0
  111. package/dist/packages/shared-chunks/{cache-gDE3bkXq.js → cache-BESCGvbE.js} +667 -1529
  112. package/dist/packages/shared-chunks/{core_view-Cxne2_wu.js → chunk-3SQBS3Y5-Cj4eryg1.js} +1 -88
  113. package/dist/packages/shared-chunks/{index-BXPoca1S.js → index-Llq6dmgX.js} +40 -4660
  114. package/dist/packages/shared-chunks/{is_proxy-Dmis-70B.js → is_proxy-DjvCKvd5.js} +1 -1
  115. package/dist/packages/shared-chunks/{mandatory-setter-1UQhiJOb.js → mandatory-setter-BiXq-dpN.js} +2 -1
  116. package/dist/packages/shared-chunks/{name-z9D9Yibn.js → name-Dx2bGFVv.js} +1 -1
  117. package/dist/packages/shared-chunks/{namespace_search-CBgHTkDh.js → namespace_search-btMaPM-_.js} +2 -2
  118. package/dist/packages/shared-chunks/{property_set-CW4q-uo4.js → property_set-BapAkp3X.js} +5 -4
  119. package/dist/packages/shared-chunks/{registry-DzfcDwii.js → registry-B8WARvkP.js} +3 -2
  120. package/dist/packages/shared-chunks/{router-B-Q1aYBn.js → router-DrLZsJeE.js} +2 -482
  121. package/dist/packages/shared-chunks/{set_properties-DvalyQdu.js → set_properties-BScfxzvI.js} +2 -2
  122. package/dist/packages/shared-chunks/setup-registry-du4pSGZi.js +48 -0
  123. package/dist/packages/shared-chunks/{to-string-D8i3mjEU.js → to-string-B1BmwUkt.js} +1 -1
  124. package/dist/packages/shared-chunks/unrecognized-url-error-zpz-JEoG.js +484 -0
  125. package/docs/data.json +152 -142
  126. package/package.json +2 -2
  127. package/types/stable/@ember/-internals/metal/lib/array.d.ts +1 -2
  128. package/types/stable/@ember/-internals/metal/lib/object-at.d.ts +4 -0
  129. package/types/stable/@ember/-internals/metal/lib/observer.d.ts +2 -1
  130. package/types/stable/@ember/array/index.d.ts +1 -1
  131. package/types/stable/@ember/array/make.d.ts +3 -0
  132. package/types/stable/@ember/debug/index.d.ts +3 -7
  133. package/types/stable/@ember/debug/lib/assert.d.ts +8 -0
  134. package/types/stable/@ember/engine/index.d.ts +1 -1
  135. package/types/stable/@ember/engine/instance.d.ts +2 -2
  136. package/types/stable/@ember/engine/parent.d.ts +3 -0
  137. package/types/stable/@ember/modifier/index.d.ts +1 -3
  138. package/types/stable/@ember/modifier/on.d.ts +5 -0
  139. package/types/stable/@ember/routing/lib/routing-service.d.ts +1 -1
  140. package/types/stable/@ember/routing/route.d.ts +2 -3
  141. package/types/stable/@ember/routing/router-service.d.ts +1 -1
  142. package/types/stable/@ember/routing/router.d.ts +4 -4
  143. package/types/stable/ember/barrel.d.ts +1 -1
  144. package/types/stable/ember/index.d.ts +1 -1
  145. package/types/stable/index.d.ts +5 -0
  146. package/dist/packages/shared-chunks/index-DTxy4Zgx.js +0 -641
  147. package/dist/packages/shared-chunks/index-PYiGj1jp.js +0 -2071
@@ -1 +1 @@
1
- export { C as Container, I as INIT_FACTORY, R as Registry, g as getFactoryFor, p as privatize, s as setFactoryFor } from '../../../shared-chunks/registry-DzfcDwii.js';
1
+ export { C as Container, I as INIT_FACTORY, R as Registry, g as getFactoryFor, p as privatize, s as setFactoryFor } from '../../../shared-chunks/registry-B8WARvkP.js';
@@ -1,8 +1,9 @@
1
1
  import { E as ENV } from '../../../shared-chunks/env-BJLX2Arx.js';
2
2
  import Version from '../../../ember/version.js';
3
- import { a as assert, d as deprecate } from '../../../shared-chunks/index-DTxy4Zgx.js';
3
+ import { deprecate } from '../../debug/index.js';
4
4
  import { dasherize } from '../string/index.js';
5
5
  import { isDevelopingApp } from '@embroider/macros';
6
+ import { assert } from '../../debug/lib/assert.js';
6
7
 
7
8
  function isEnabled(options) {
8
9
  return Object.hasOwnProperty.call(options.since, 'enabled') || ENV._ALL_DEPRECATIONS_ENABLED;
@@ -1,6 +1,7 @@
1
1
  export { templateFactory as template, templateCacheCounters } from '../../../@glimmer/opcode-compiler/index.js';
2
- export { C as Component, H as Helper, I as Input, L as LinkTo, O as OutletView, d as Renderer, b as RootTemplate, S as SafeString, T as Textarea, _ as _resetRenderers, e as escapeExpression, h as helper, c as htmlSafe, i as isHTMLSafe, r as renderSettled, f as setupApplicationRegistry, s as setupEngineRegistry, u as uniqueId } from '../../../shared-chunks/index-BXPoca1S.js';
2
+ export { C as Component, H as Helper, I as Input, L as LinkTo, O as OutletView, b as Renderer, R as RootTemplate, S as SafeString, T as Textarea, _ as _resetRenderers, e as escapeExpression, h as helper, a as htmlSafe, i as isHTMLSafe, r as renderSettled, u as uniqueId } from '../../../shared-chunks/index-Llq6dmgX.js';
3
3
  export { g as getTemplate, a as getTemplates, h as hasTemplate, s as setTemplate, b as setTemplates } from '../../../shared-chunks/template_registry-DigcUg9m.js';
4
+ export { a as setupApplicationRegistry, s as setupEngineRegistry } from '../../../shared-chunks/setup-registry-du4pSGZi.js';
4
5
  export { DOMChanges, DOMTreeConstruction, isSerializationFirstNode } from '../../../@glimmer/runtime/index.js';
5
6
  export { NodeDOMTreeConstruction } from '../../../@glimmer/node/index.js';
6
7
  export { s as setComponentManager } from '../../../shared-chunks/managers-CbMgnSoo.js';
@@ -1,8 +1,9 @@
1
- import { s as symbol, t as toString } from '../../../../shared-chunks/to-string-D8i3mjEU.js';
2
- import '../../../../shared-chunks/mandatory-setter-1UQhiJOb.js';
3
- import { a as assert } from '../../../../shared-chunks/index-DTxy4Zgx.js';
1
+ import { s as symbol, t as toString } from '../../../../shared-chunks/to-string-B1BmwUkt.js';
2
+ import '../../../../shared-chunks/mandatory-setter-BiXq-dpN.js';
3
+ import '../../../debug/index.js';
4
4
  import { isDestroyed } from '../../../../@glimmer/destroyable/index.js';
5
5
  import { isDevelopingApp } from '@embroider/macros';
6
+ import { assert } from '../../../debug/lib/assert.js';
6
7
 
7
8
  const objectPrototype = Object.prototype;
8
9
  let counters;
@@ -1,15 +1,16 @@
1
- import { g as get } from '../../../shared-chunks/cache-gDE3bkXq.js';
2
- export { a9 as ASYNC_OBSERVERS, D as ComputedDescriptor, C as ComputedProperty, ad as DEBUG_INJECTION_FUNCTIONS, a8 as Libraries, Q as PROPERTY_DID_CHANGE, a5 as PROXY_CONTENT, aa as SYNC_OBSERVERS, af as TrackedDescriptor, m as _getPath, a6 as _getProp, ab as activateObserver, V as addArrayObserver, z as addListener, x as addObserver, U as arrayContentDidChange, T as arrayContentWillChange, Y as autoComputed, a1 as beginPropertyChanges, a2 as changeProperties, c as computed, p as defineDecorator, d as defineProperty, o as defineValue, v as descriptorForDecorator, B as descriptorForProperty, a3 as endPropertyChanges, e as expandProperties, ac as flushAsyncObservers, J as hasListeners, H as hasUnknownProperty, f as inject, u as isClassicDecorator, a4 as isComputed, i as isElementDescriptor, M as libraries, w as makeComputedDecorator, ae as markObjectAsDirty, q as nativeDescDecorator, n as notifyPropertyChange, R as objectAt, K as on, W as removeArrayObserver, A as removeListener, y as removeObserver, S as replace, a7 as replaceInNativeArray, r as revalidateObservers, I as sendEvent, L as setClassicDecorator, t as tagForObject, a as tagForProperty, a0 as tracked } from '../../../shared-chunks/cache-gDE3bkXq.js';
1
+ import { g as get } from '../../../shared-chunks/cache-BESCGvbE.js';
2
+ export { X as ASYNC_OBSERVERS, J as ComputedDescriptor, C as ComputedProperty, D as DEBUG_INJECTION_FUNCTIONS, W as Libraries, Q as PROPERTY_DID_CHANGE, P as PROXY_CONTENT, Y as SYNC_OBSERVERS, $ as TrackedDescriptor, _ as _getPath, V as _getProp, j as activateObserver, G as addListener, v as addObserver, R as autoComputed, m as beginPropertyChanges, T as changeProperties, c as computed, z as defineDecorator, d as defineProperty, y as defineValue, E as descriptorForDecorator, b as descriptorForProperty, l as endPropertyChanges, e as expandProperties, I as flushAsyncObservers, x as hasListeners, h as hasUnknownProperty, p as inject, f as isClassicDecorator, U as isComputed, i as isElementDescriptor, O as libraries, F as makeComputedDecorator, Z as markObjectAsDirty, B as nativeDescDecorator, n as notifyPropertyChange, o as objectAt, N as on, H as removeListener, w as removeObserver, A as revalidateObservers, k as sendEvent, s as setClassicDecorator, t as tagForObject, a as tagForProperty, S as tracked } from '../../../shared-chunks/cache-BESCGvbE.js';
3
3
  export { g as getCachedValueFor } from '../../../shared-chunks/computed_cache-DmYKevAP.js';
4
- export { a as alias } from '../../../shared-chunks/alias-By_2yu5c.js';
5
- import { d as deprecate } from '../../../shared-chunks/index-DTxy4Zgx.js';
6
- import { s as set } from '../../../shared-chunks/property_set-CW4q-uo4.js';
7
- export { _ as _setProp, t as trySet } from '../../../shared-chunks/property_set-CW4q-uo4.js';
4
+ export { a as alias } from '../../../shared-chunks/alias-Dri0koi2.js';
5
+ import { deprecate } from '../../debug/index.js';
6
+ import { s as set } from '../../../shared-chunks/property_set-BapAkp3X.js';
7
+ export { _ as _setProp, t as trySet } from '../../../shared-chunks/property_set-BapAkp3X.js';
8
8
  import { isDevelopingApp } from '@embroider/macros';
9
- export { g as getProperties, s as setProperties } from '../../../shared-chunks/set_properties-DvalyQdu.js';
9
+ export { d as addArrayObserver, c as arrayContentDidChange, b as arrayContentWillChange, e as removeArrayObserver, a as replace, r as replaceInNativeArray } from '../../../shared-chunks/array-3xbmc_4J.js';
10
+ export { g as getProperties, s as setProperties } from '../../../shared-chunks/set_properties-BScfxzvI.js';
10
11
  export { cached } from '../../../@glimmer/tracking/index.js';
11
12
  export { createCache, getValue, isConst } from '../../../@glimmer/validator/index.js';
12
- export { N as NAMESPACES, a as NAMESPACES_BY_ID, b as addNamespace, f as findNamespace, c as findNamespaces, i as isNamespaceSearchDisabled, p as processAllNamespaces, d as processNamespace, r as removeNamespace, e as setNamespaceSearchDisabled, s as setUnprocessedMixins } from '../../../shared-chunks/namespace_search-CBgHTkDh.js';
13
+ export { N as NAMESPACES, a as NAMESPACES_BY_ID, b as addNamespace, f as findNamespace, c as findNamespaces, i as isNamespaceSearchDisabled, p as processAllNamespaces, d as processNamespace, r as removeNamespace, e as setNamespaceSearchDisabled, s as setUnprocessedMixins } from '../../../shared-chunks/namespace_search-btMaPM-_.js';
13
14
 
14
15
  /**
15
16
  @module ember
@@ -1,16 +1,17 @@
1
1
  import '../meta/lib/meta.js';
2
- import '../../../shared-chunks/mandatory-setter-1UQhiJOb.js';
2
+ import '../../../shared-chunks/mandatory-setter-BiXq-dpN.js';
3
3
  import '@embroider/macros';
4
- import '../../../shared-chunks/index-DTxy4Zgx.js';
4
+ import '../../debug/index.js';
5
5
  import '../../../@glimmer/destroyable/index.js';
6
6
  import '../../../@glimmer/validator/index.js';
7
- import '../../../shared-chunks/cache-gDE3bkXq.js';
8
7
  import '../../../@glimmer/manager/index.js';
8
+ import '../../../shared-chunks/cache-BESCGvbE.js';
9
9
  import '../../../shared-chunks/env-BJLX2Arx.js';
10
- import '../../../shared-chunks/index-BXPoca1S.js';
10
+ import '../../engine/instance.js';
11
11
  import '../../../route-recognizer/index.js';
12
12
  import '../../../shared-chunks/rsvp-DaQAFb0W.js';
13
- import '../../../shared-chunks/router-B-Q1aYBn.js';
13
+ import '../../../shared-chunks/unrecognized-url-error-zpz-JEoG.js';
14
+ import '../../routing/lib/routing-service.js';
14
15
  export { default as generateController, generateControllerFactory } from '../../routing/lib/generate_controller.js';
15
16
  export { default as RouterDSL } from '../../routing/lib/dsl.js';
16
17
  export { default as controllerFor } from '../../routing/lib/controller_for.js';
@@ -1,8 +1,9 @@
1
1
  import { c as configure, o as on, R as RSVP } from '../../../../../shared-chunks/rsvp-DaQAFb0W.js';
2
- import { _ as _backburner, b as _rsvpErrorQueue } from '../../../../../shared-chunks/cache-gDE3bkXq.js';
2
+ import { _backburner, _rsvpErrorQueue } from '../../../../runloop/index.js';
3
3
  import { getDispatchOverride } from '../../../error-handling/index.js';
4
- import { a as assert } from '../../../../../shared-chunks/index-DTxy4Zgx.js';
4
+ import '../../../../debug/index.js';
5
5
  import { isDevelopingApp } from '@embroider/macros';
6
+ import { assert } from '../../../../debug/lib/assert.js';
6
7
 
7
8
  configure('async', (callback, promise) => {
8
9
  _backburner.schedule('actions', null, callback, promise);
@@ -1,14 +1,15 @@
1
1
  import { meta } from '../../../meta/lib/meta.js';
2
2
  import Mixin from '../../../../object/mixin.js';
3
- import { t as tagForObject, c as computed, g as get, d as defineProperty, a as tagForProperty } from '../../../../../shared-chunks/cache-gDE3bkXq.js';
4
- import { a as assert } from '../../../../../shared-chunks/index-DTxy4Zgx.js';
3
+ import { t as tagForObject, c as computed, g as get, d as defineProperty, a as tagForProperty } from '../../../../../shared-chunks/cache-BESCGvbE.js';
4
+ import '../../../../debug/index.js';
5
5
  import { updateTag as UPDATE_TAG, tagMetaFor, tagFor, combine } from '../../../../../@glimmer/validator/index.js';
6
- import { f as setupMandatorySetter, e as isObject } from '../../../../../shared-chunks/mandatory-setter-1UQhiJOb.js';
6
+ import { f as setupMandatorySetter, e as isObject } from '../../../../../shared-chunks/mandatory-setter-BiXq-dpN.js';
7
7
  import { isDevelopingApp } from '@embroider/macros';
8
- import { s as setProxy, i as isProxy } from '../../../../../shared-chunks/is_proxy-Dmis-70B.js';
9
- import { s as set } from '../../../../../shared-chunks/property_set-CW4q-uo4.js';
8
+ import { s as setProxy, i as isProxy } from '../../../../../shared-chunks/is_proxy-DjvCKvd5.js';
9
+ import { s as set } from '../../../../../shared-chunks/property_set-BapAkp3X.js';
10
10
  import '../../../../../shared-chunks/env-BJLX2Arx.js';
11
11
  import { setCustomTagFor } from '../../../../../@glimmer/manager/index.js';
12
+ import { assert } from '../../../../debug/lib/assert.js';
12
13
 
13
14
  /**
14
15
  @module ember
@@ -1,13 +1,14 @@
1
1
  import Mixin from '../../../../object/mixin.js';
2
2
  import '../../../meta/lib/meta.js';
3
- import '../../../../../shared-chunks/mandatory-setter-1UQhiJOb.js';
3
+ import '../../../../../shared-chunks/mandatory-setter-BiXq-dpN.js';
4
4
  import { isDevelopingApp } from '@embroider/macros';
5
- import { a as assert } from '../../../../../shared-chunks/index-DTxy4Zgx.js';
5
+ import '../../../../debug/index.js';
6
6
  import '../../../../../@glimmer/destroyable/index.js';
7
7
  import '../../../../../@glimmer/validator/index.js';
8
- import { g as get } from '../../../../../shared-chunks/cache-gDE3bkXq.js';
9
8
  import '../../../../../@glimmer/manager/index.js';
9
+ import { g as get } from '../../../../../shared-chunks/cache-BESCGvbE.js';
10
10
  import '../../../../../shared-chunks/env-BJLX2Arx.js';
11
+ import { assert } from '../../../../debug/lib/assert.js';
11
12
 
12
13
  /**
13
14
  @module ember
@@ -1,4 +1,4 @@
1
- import { j as join, s as schedule } from '../../../../../shared-chunks/cache-gDE3bkXq.js';
1
+ import { join, schedule } from '../../../../runloop/index.js';
2
2
  import Mixin from '../../../../object/mixin.js';
3
3
 
4
4
  // This is defined as a separate interface so that it can be used in the definition of
@@ -1,6 +1,7 @@
1
- import { a as assert } from '../../../../../shared-chunks/index-DTxy4Zgx.js';
1
+ import '../../../../debug/index.js';
2
2
  import Mixin from '../../../../object/mixin.js';
3
3
  import { isDevelopingApp } from '@embroider/macros';
4
+ import { assert } from '../../../../debug/lib/assert.js';
4
5
 
5
6
  /**
6
7
  @module ember
@@ -1,13 +1,14 @@
1
1
  import { c as context } from '../../../../../shared-chunks/env-BJLX2Arx.js';
2
- import { c as computed, g as get } from '../../../../../shared-chunks/cache-gDE3bkXq.js';
2
+ import { c as computed, g as get } from '../../../../../shared-chunks/cache-BESCGvbE.js';
3
3
  import '../../../meta/lib/meta.js';
4
- import { a as assert } from '../../../../../shared-chunks/index-DTxy4Zgx.js';
4
+ import '../../../../debug/index.js';
5
5
  import '../../../../../@glimmer/validator/index.js';
6
- import '../../../../../shared-chunks/mandatory-setter-1UQhiJOb.js';
6
+ import '../../../../../shared-chunks/mandatory-setter-BiXq-dpN.js';
7
7
  import { isDevelopingApp } from '@embroider/macros';
8
8
  import '../../../../../@glimmer/destroyable/index.js';
9
9
  import '../../../../../@glimmer/manager/index.js';
10
10
  import Mixin from '../../../../object/mixin.js';
11
+ import { assert } from '../../../../debug/lib/assert.js';
11
12
 
12
13
  /**
13
14
  @module ember
@@ -1,4 +1,4 @@
1
- import '../../../shared-chunks/mandatory-setter-1UQhiJOb.js';
1
+ import '../../../shared-chunks/mandatory-setter-BiXq-dpN.js';
2
2
  import '@embroider/macros';
3
3
  import { C as Cache } from '../../../shared-chunks/cache-qDyqAcpg.js';
4
4
 
@@ -1,7 +1,7 @@
1
- export { e as enumerableSymbol, i as isInternalSymbol, s as symbol, t as toString } from '../../../shared-chunks/to-string-D8i3mjEU.js';
1
+ export { e as enumerableSymbol, i as isInternalSymbol, s as symbol, t as toString } from '../../../shared-chunks/to-string-B1BmwUkt.js';
2
2
  export { m as dictionary } from '../../../shared-chunks/dictionary-gc5gpyOG.js';
3
- export { G as GUID_KEY, R as ROOT, c as checkHasSuper, b as generateGuid, a as getDebugName, g as guidFor, i as intern, e as isObject, l as lookupDescriptor, o as observerListenerMetaFor, d as setListeners, s as setObservers, h as setWithMandatorySetter, f as setupMandatorySetter, t as teardownMandatorySetter, u as uuid, w as wrap } from '../../../shared-chunks/mandatory-setter-1UQhiJOb.js';
3
+ export { G as GUID_KEY, R as ROOT, c as checkHasSuper, b as generateGuid, a as getDebugName, g as guidFor, i as intern, e as isObject, l as lookupDescriptor, o as observerListenerMetaFor, d as setListeners, s as setObservers, h as setWithMandatorySetter, f as setupMandatorySetter, t as teardownMandatorySetter, u as uuid, w as wrap } from '../../../shared-chunks/mandatory-setter-BiXq-dpN.js';
4
4
  export { c as canInvoke } from '../../../shared-chunks/invoke-BjRgvK2V.js';
5
- export { g as getName, s as setName } from '../../../shared-chunks/name-z9D9Yibn.js';
6
- export { i as isProxy, s as setProxy } from '../../../shared-chunks/is_proxy-Dmis-70B.js';
5
+ export { g as getName, s as setName } from '../../../shared-chunks/name-Dx2bGFVv.js';
6
+ export { i as isProxy, s as setProxy } from '../../../shared-chunks/is_proxy-DjvCKvd5.js';
7
7
  export { C as Cache } from '../../../shared-chunks/cache-qDyqAcpg.js';
@@ -1,7 +1,7 @@
1
1
  export { addChildView, clearElementView, clearViewElement, constructStyleDeprecationMessage, getChildViews, getElementView, getRootViews, getViewBoundingClientRect, getViewBounds, getViewClientRects, getViewElement, getViewId, isSimpleClick, setElementView, setViewElement } from './lib/system/utils.js';
2
2
  export { default as EventDispatcher } from './lib/system/event_dispatcher.js';
3
3
  export { default as ComponentLookup } from './lib/component_lookup.js';
4
- export { C as CoreView } from '../../../shared-chunks/core_view-Cxne2_wu.js';
4
+ export { default as CoreView } from './lib/views/core_view.js';
5
5
  export { default as ClassNamesSupport } from './lib/mixins/class_names_support.js';
6
6
  export { default as ChildViewsSupport } from './lib/mixins/child_views_support.js';
7
7
  export { default as ViewStateSupport } from './lib/mixins/view_state_support.js';
@@ -1,4 +1,4 @@
1
- import '../../../../../shared-chunks/mandatory-setter-1UQhiJOb.js';
1
+ import '../../../../../shared-chunks/mandatory-setter-BiXq-dpN.js';
2
2
  import '@embroider/macros';
3
3
  import { m as makeDictionary } from '../../../../../shared-chunks/dictionary-gc5gpyOG.js';
4
4
 
@@ -1,4 +1,4 @@
1
- import { E as EmberObject } from '../../../../shared-chunks/index-PYiGj1jp.js';
1
+ import EmberObject from '../../../object/index.js';
2
2
 
3
3
  const ComponentLookup = EmberObject.extend({
4
4
  componentFor(name, owner) {
@@ -1,13 +1,15 @@
1
1
  import '../../../meta/lib/meta.js';
2
- import '../../../../../shared-chunks/mandatory-setter-1UQhiJOb.js';
2
+ import '../../../../../shared-chunks/mandatory-setter-BiXq-dpN.js';
3
3
  import { isDevelopingApp } from '@embroider/macros';
4
- import { a as assert, b as inspect } from '../../../../../shared-chunks/index-DTxy4Zgx.js';
4
+ import '../../../../debug/index.js';
5
5
  import '../../../../../@glimmer/destroyable/index.js';
6
6
  import '../../../../../@glimmer/validator/index.js';
7
- import { g as get } from '../../../../../shared-chunks/cache-gDE3bkXq.js';
8
7
  import '../../../../../@glimmer/manager/index.js';
8
+ import { g as get } from '../../../../../shared-chunks/cache-BESCGvbE.js';
9
9
  import '../../../../../shared-chunks/env-BJLX2Arx.js';
10
10
  import Mixin from '../../../../object/mixin.js';
11
+ import { assert } from '../../../../debug/lib/assert.js';
12
+ import inspect from '../../../../debug/lib/inspect.js';
11
13
 
12
14
  /**
13
15
  @module ember
@@ -1,11 +1,11 @@
1
1
  import '../../../meta/lib/meta.js';
2
- import '../../../../../shared-chunks/mandatory-setter-1UQhiJOb.js';
2
+ import '../../../../../shared-chunks/mandatory-setter-BiXq-dpN.js';
3
3
  import '@embroider/macros';
4
- import '../../../../../shared-chunks/index-DTxy4Zgx.js';
4
+ import '../../../../debug/index.js';
5
5
  import '../../../../../@glimmer/destroyable/index.js';
6
6
  import '../../../../../@glimmer/validator/index.js';
7
- import { q as nativeDescDecorator } from '../../../../../shared-chunks/cache-gDE3bkXq.js';
8
7
  import '../../../../../@glimmer/manager/index.js';
8
+ import { B as nativeDescDecorator } from '../../../../../shared-chunks/cache-BESCGvbE.js';
9
9
  import '../../../../../shared-chunks/env-BJLX2Arx.js';
10
10
  import Mixin from '../../../../object/mixin.js';
11
11
  import { addChildView, getChildViews } from '../system/utils.js';
@@ -1,13 +1,14 @@
1
1
  import '../../../meta/lib/meta.js';
2
- import '../../../../../shared-chunks/mandatory-setter-1UQhiJOb.js';
2
+ import '../../../../../shared-chunks/mandatory-setter-BiXq-dpN.js';
3
3
  import { isDevelopingApp } from '@embroider/macros';
4
- import { a as assert } from '../../../../../shared-chunks/index-DTxy4Zgx.js';
4
+ import '../../../../debug/index.js';
5
5
  import '../../../../../@glimmer/destroyable/index.js';
6
6
  import '../../../../../@glimmer/validator/index.js';
7
- import { B as descriptorForProperty } from '../../../../../shared-chunks/cache-gDE3bkXq.js';
8
7
  import '../../../../../@glimmer/manager/index.js';
8
+ import { b as descriptorForProperty } from '../../../../../shared-chunks/cache-BESCGvbE.js';
9
9
  import '../../../../../shared-chunks/env-BJLX2Arx.js';
10
10
  import Mixin from '../../../../object/mixin.js';
11
+ import { assert } from '../../../../debug/lib/assert.js';
11
12
 
12
13
  /**
13
14
  @module ember
@@ -1,15 +1,16 @@
1
- import { g as guidFor } from '../../../../../shared-chunks/mandatory-setter-1UQhiJOb.js';
1
+ import { g as guidFor } from '../../../../../shared-chunks/mandatory-setter-BiXq-dpN.js';
2
2
  import { isDevelopingApp } from '@embroider/macros';
3
3
  import '../../../meta/lib/meta.js';
4
- import { a as assert } from '../../../../../shared-chunks/index-DTxy4Zgx.js';
4
+ import '../../../../debug/index.js';
5
5
  import '../../../../../@glimmer/destroyable/index.js';
6
6
  import '../../../../../@glimmer/validator/index.js';
7
- import { q as nativeDescDecorator, B as descriptorForProperty } from '../../../../../shared-chunks/cache-gDE3bkXq.js';
8
7
  import '../../../../../@glimmer/manager/index.js';
8
+ import { B as nativeDescDecorator, b as descriptorForProperty } from '../../../../../shared-chunks/cache-BESCGvbE.js';
9
9
  import '../../../../../shared-chunks/env-BJLX2Arx.js';
10
10
  import Mixin from '../../../../object/mixin.js';
11
11
  import { h as hasDOM } from '../../../../../shared-chunks/index-BGP1rw3B.js';
12
12
  import { matches } from '../system/utils.js';
13
+ import { assert } from '../../../../debug/lib/assert.js';
13
14
 
14
15
  function K() {
15
16
  return this;
@@ -1,24 +1,18 @@
1
1
  import { getOwner } from '../../../owner/index.js';
2
- import { a as assert } from '../../../../../shared-chunks/index-DTxy4Zgx.js';
2
+ import '../../../../debug/index.js';
3
3
  import '../../../meta/lib/meta.js';
4
- import '../../../../../shared-chunks/mandatory-setter-1UQhiJOb.js';
4
+ import '../../../../../shared-chunks/mandatory-setter-BiXq-dpN.js';
5
5
  import { isDevelopingApp } from '@embroider/macros';
6
6
  import '../../../../../@glimmer/destroyable/index.js';
7
7
  import '../../../../../@glimmer/validator/index.js';
8
- import { g as get } from '../../../../../shared-chunks/cache-gDE3bkXq.js';
9
8
  import '../../../../../@glimmer/manager/index.js';
10
- import { s as set } from '../../../../../shared-chunks/property_set-CW4q-uo4.js';
9
+ import { g as get } from '../../../../../shared-chunks/cache-BESCGvbE.js';
10
+ import { s as set } from '../../../../../shared-chunks/property_set-BapAkp3X.js';
11
11
  import '../../../../../shared-chunks/env-BJLX2Arx.js';
12
- import { E as EmberObject } from '../../../../../shared-chunks/index-PYiGj1jp.js';
12
+ import EmberObject from '../../../../object/index.js';
13
13
  import { getElementView } from './utils.js';
14
- import '../component_lookup.js';
15
- import '../../../../../shared-chunks/core_view-Cxne2_wu.js';
16
- import '../mixins/class_names_support.js';
17
- import '../mixins/child_views_support.js';
18
- import '../mixins/view_state_support.js';
19
- import '../mixins/view_support.js';
20
- import '../mixins/action_support.js';
21
14
  import ActionManager from './action_manager.js';
15
+ import { assert } from '../../../../debug/lib/assert.js';
22
16
 
23
17
  /**
24
18
  @module ember
@@ -1,7 +1,8 @@
1
1
  import { getOwner } from '../../../owner/index.js';
2
- import { g as guidFor } from '../../../../../shared-chunks/mandatory-setter-1UQhiJOb.js';
2
+ import { g as guidFor } from '../../../../../shared-chunks/mandatory-setter-BiXq-dpN.js';
3
3
  import { isDevelopingApp } from '@embroider/macros';
4
- import { a as assert } from '../../../../../shared-chunks/index-DTxy4Zgx.js';
4
+ import '../../../../debug/index.js';
5
+ import { assert } from '../../../../debug/lib/assert.js';
5
6
 
6
7
  /**
7
8
  @module ember
@@ -1,21 +1,89 @@
1
1
  import '../../../meta/lib/meta.js';
2
- import '../../../../../shared-chunks/mandatory-setter-1UQhiJOb.js';
2
+ import '../../../../../shared-chunks/mandatory-setter-BiXq-dpN.js';
3
3
  import '@embroider/macros';
4
- import '../../../../../shared-chunks/index-DTxy4Zgx.js';
4
+ import '../../../../debug/index.js';
5
5
  import '../../../../../@glimmer/destroyable/index.js';
6
6
  import '../../../../../@glimmer/validator/index.js';
7
- import '../../../../../shared-chunks/cache-gDE3bkXq.js';
8
7
  import '../../../../../@glimmer/manager/index.js';
8
+ import { p as inject } from '../../../../../shared-chunks/cache-BESCGvbE.js';
9
9
  import '../../../../../shared-chunks/env-BJLX2Arx.js';
10
10
  import '../../../runtime/lib/mixins/registry_proxy.js';
11
11
  import '../../../runtime/lib/mixins/container_proxy.js';
12
12
  import '../../../runtime/lib/mixins/comparable.js';
13
- import '../../../runtime/lib/mixins/action_handler.js';
13
+ import ActionHandler from '../../../runtime/lib/mixins/action_handler.js';
14
14
  import '../../../runtime/lib/mixins/-proxy.js';
15
15
  import '../../../../enumerable/mutable.js';
16
16
  import '../../../runtime/lib/mixins/target_action_support.js';
17
17
  import '../../../runtime/lib/ext/rsvp.js';
18
- import '../../../../object/evented.js';
19
- import '../../../../object/-internals.js';
20
- import './states.js';
21
- export { C as default } from '../../../../../shared-chunks/core_view-Cxne2_wu.js';
18
+ import Evented from '../../../../object/evented.js';
19
+ import { FrameworkObject } from '../../../../object/-internals.js';
20
+ import states from './states.js';
21
+ import { d as decorateFieldV2, i as initializeDeferredDecorator } from '../../../../../shared-chunks/chunk-3SQBS3Y5-Cj4eryg1.js';
22
+
23
+ class CoreView extends FrameworkObject.extend(Evented, ActionHandler) {
24
+ isView = true;
25
+ _superTrigger;
26
+ _superHas;
27
+
28
+ /**
29
+ If the view is currently inserted into the DOM of a parent view, this
30
+ property will point to the parent of the view.
31
+ @property parentView
32
+ @type Ember.View
33
+ @default null
34
+ @private
35
+ */
36
+
37
+ init(properties) {
38
+ super.init(properties);
39
+
40
+ // Handle methods from Evented
41
+ // The native class inheritance will not work for mixins. To work around this,
42
+ // we copy the existing trigger and has methods provided by the mixin and swap in the
43
+ // new ones from our class.
44
+ this._superTrigger = this.trigger;
45
+ this.trigger = this._trigger;
46
+ this._superHas = this.has;
47
+ this.has = this._has;
48
+ this.parentView ??= null;
49
+ this._state = 'preRender';
50
+ this._currentState = this._states.preRender;
51
+ }
52
+ static {
53
+ decorateFieldV2(this.prototype, "renderer", [inject('renderer', '-dom')]);
54
+ }
55
+ #renderer = (initializeDeferredDecorator(this, "renderer"), void 0);
56
+ instrumentDetails(hash) {
57
+ hash['object'] = this.toString();
58
+ hash['containerKey'] = this._debugContainerKey;
59
+ hash['view'] = this;
60
+ return hash;
61
+ }
62
+
63
+ /**
64
+ Override the default event firing from `Evented` to
65
+ also call methods with the given name.
66
+ @method trigger
67
+ @param name {String}
68
+ @private
69
+ */
70
+ // Changed to `trigger` on init
71
+ _trigger(name, ...args) {
72
+ this._superTrigger(name, ...args);
73
+ let method = this[name];
74
+ if (typeof method === 'function') {
75
+ return method.apply(this, args);
76
+ }
77
+ }
78
+
79
+ // Changed to `has` on init
80
+ _has(name) {
81
+ return typeof this[name] === 'function' || this._superHas(name);
82
+ }
83
+ static isViewFactory = true;
84
+ }
85
+
86
+ // Declare on the prototype to have a single shared value.
87
+ CoreView.prototype._states = states;
88
+
89
+ export { CoreView as default };
@@ -1,8 +1,9 @@
1
- import { t as teardownMandatorySetter } from '../../../../../shared-chunks/mandatory-setter-1UQhiJOb.js';
1
+ import { t as teardownMandatorySetter } from '../../../../../shared-chunks/mandatory-setter-BiXq-dpN.js';
2
2
  import { isDevelopingApp } from '@embroider/macros';
3
- import { a as assert } from '../../../../../shared-chunks/index-DTxy4Zgx.js';
3
+ import '../../../../debug/index.js';
4
4
  import { flaggedInstrument } from '../../../../instrumentation/index.js';
5
- import { j as join } from '../../../../../shared-chunks/cache-gDE3bkXq.js';
5
+ import { join } from '../../../../runloop/index.js';
6
+ import { assert } from '../../../../debug/lib/assert.js';
6
7
 
7
8
  const DEFAULT = Object.freeze({
8
9
  // appendChild is only legal while rendering the buffer.
@@ -1,15 +1,16 @@
1
1
  import { getOwner as getOwner$1 } from '../owner/index.js';
2
- import '../../shared-chunks/mandatory-setter-1UQhiJOb.js';
2
+ import '../../shared-chunks/mandatory-setter-BiXq-dpN.js';
3
3
  import { isDevelopingApp } from '@embroider/macros';
4
4
  import { m as makeDictionary } from '../../shared-chunks/dictionary-gc5gpyOG.js';
5
5
  import { E as ENV } from '../../shared-chunks/env-BJLX2Arx.js';
6
6
  import { h as hasDOM } from '../../shared-chunks/index-BGP1rw3B.js';
7
- import { a as assert } from '../../shared-chunks/index-DTxy4Zgx.js';
8
- import { M as LIBRARIES, s as schedule, N as once, j as join, O as run } from '../../shared-chunks/cache-gDE3bkXq.js';
7
+ import '../debug/index.js';
8
+ import { schedule, once, join, run } from '../runloop/index.js';
9
9
  import '../-internals/meta/lib/meta.js';
10
10
  import '../../@glimmer/destroyable/index.js';
11
11
  import '../../@glimmer/validator/index.js';
12
12
  import '../../@glimmer/manager/index.js';
13
+ import { O as LIBRARIES } from '../../shared-chunks/cache-BESCGvbE.js';
13
14
  import { runLoadHooks, _loaded } from './lib/lazy_load.js';
14
15
  export { onLoad } from './lib/lazy_load.js';
15
16
  import '../-internals/runtime/lib/mixins/registry_proxy.js';
@@ -23,27 +24,35 @@ import '../-internals/runtime/lib/ext/rsvp.js';
23
24
  import { setOwner as setOwner$1 } from '../-internals/owner/index.js';
24
25
  import EventDispatcher from '../-internals/views/lib/system/event_dispatcher.js';
25
26
  import '../-internals/views/lib/component_lookup.js';
26
- import '../../shared-chunks/core_view-Cxne2_wu.js';
27
+ import '../-internals/views/lib/views/core_view.js';
27
28
  import '../-internals/views/lib/mixins/class_names_support.js';
28
29
  import '../-internals/views/lib/mixins/child_views_support.js';
29
30
  import '../-internals/views/lib/mixins/view_state_support.js';
30
31
  import '../-internals/views/lib/mixins/view_support.js';
31
32
  import '../-internals/views/lib/mixins/action_support.js';
32
33
  import '../-internals/views/lib/system/action_manager.js';
33
- import { E as Engine, f as setupApplicationRegistry, g as buildInitializerMethod, j as EmberRouter, k as Route, l as RouterService } from '../../shared-chunks/index-BXPoca1S.js';
34
+ import Route from '../routing/route.js';
35
+ import EmberRouter from '../routing/router.js';
34
36
  import HashLocation from '../routing/hash-location.js';
35
37
  import HistoryLocation from '../routing/history-location.js';
36
38
  import NoneLocation from '../routing/none-location.js';
39
+ import '../engine/instance.js';
37
40
  import '../../route-recognizer/index.js';
38
41
  import { R as RSVP } from '../../shared-chunks/rsvp-DaQAFb0W.js';
39
- import '../../shared-chunks/router-B-Q1aYBn.js';
42
+ import '../../shared-chunks/unrecognized-url-error-zpz-JEoG.js';
43
+ import '../routing/lib/routing-service.js';
40
44
  import '../controller/index.js';
41
45
  import BucketCache from '../routing/lib/cache.js';
42
46
  import ApplicationInstance from './instance.js';
43
- import { p as privatize } from '../../shared-chunks/registry-DzfcDwii.js';
47
+ import Engine, { buildInitializerMethod } from '../engine/index.js';
48
+ import { p as privatize } from '../../shared-chunks/registry-B8WARvkP.js';
44
49
  import '../../@glimmer/opcode-compiler/index.js';
50
+ import '../../shared-chunks/index-Llq6dmgX.js';
51
+ import { a as setupApplicationRegistry } from '../../shared-chunks/setup-registry-du4pSGZi.js';
45
52
  import '../../@glimmer/runtime/index.js';
46
53
  import '../../@glimmer/reference/index.js';
54
+ import RouterService from '../routing/router-service.js';
55
+ import { assert } from '../debug/lib/assert.js';
47
56
 
48
57
  /**
49
58
  @module @ember/application
@@ -1,29 +1,33 @@
1
- import '../../shared-chunks/index-PYiGj1jp.js';
1
+ import '../object/index.js';
2
2
  import { h as hasDOM, e as environment } from '../../shared-chunks/index-BGP1rw3B.js';
3
- import { m as EmberEngineInstance, j as EmberRouter, r as renderSettled } from '../../shared-chunks/index-BXPoca1S.js';
3
+ import EngineInstance from '../engine/instance.js';
4
4
  import '../../@glimmer/opcode-compiler/index.js';
5
- import '../../shared-chunks/registry-DzfcDwii.js';
6
- import { a as assert } from '../../shared-chunks/index-DTxy4Zgx.js';
5
+ import { r as renderSettled } from '../../shared-chunks/index-Llq6dmgX.js';
6
+ import '../../shared-chunks/registry-B8WARvkP.js';
7
+ import '../debug/index.js';
7
8
  import '../../@glimmer/runtime/index.js';
8
- import { g as get } from '../../shared-chunks/cache-gDE3bkXq.js';
9
+ import '../runloop/index.js';
9
10
  import '../../@glimmer/reference/index.js';
10
11
  import '../../@glimmer/validator/index.js';
11
12
  import { isDevelopingApp } from '@embroider/macros';
12
13
  import '../../@glimmer/manager/index.js';
13
- import '../../shared-chunks/mandatory-setter-1UQhiJOb.js';
14
+ import EmberRouter from '../routing/router.js';
15
+ import '../../shared-chunks/mandatory-setter-BiXq-dpN.js';
14
16
  import EventDispatcher from '../-internals/views/lib/system/event_dispatcher.js';
15
17
  import '../-internals/views/lib/component_lookup.js';
16
- import '../../shared-chunks/core_view-Cxne2_wu.js';
18
+ import '../-internals/views/lib/views/core_view.js';
17
19
  import '../-internals/views/lib/mixins/class_names_support.js';
18
20
  import '../-internals/views/lib/mixins/child_views_support.js';
19
21
  import '../-internals/views/lib/mixins/view_state_support.js';
20
22
  import '../-internals/views/lib/mixins/view_support.js';
21
23
  import '../-internals/views/lib/mixins/action_support.js';
22
24
  import '../-internals/views/lib/system/action_manager.js';
23
- import { s as set } from '../../shared-chunks/property_set-CW4q-uo4.js';
25
+ import { s as set } from '../../shared-chunks/property_set-BapAkp3X.js';
24
26
  import '../-internals/meta/lib/meta.js';
25
27
  import '../../@glimmer/destroyable/index.js';
28
+ import { g as get } from '../../shared-chunks/cache-BESCGvbE.js';
26
29
  import '../../shared-chunks/env-BJLX2Arx.js';
30
+ import { assert } from '../debug/lib/assert.js';
27
31
 
28
32
  /**
29
33
  @module @ember/application
@@ -54,7 +58,7 @@ import '../../shared-chunks/env-BJLX2Arx.js';
54
58
  @extends EngineInstance
55
59
  */
56
60
 
57
- class ApplicationInstance extends EmberEngineInstance {
61
+ class ApplicationInstance extends EngineInstance {
58
62
  /**
59
63
  The `Application` for which this is an instance.
60
64
  @property {Application} application