@angular/core 16.0.0-next.4 → 16.0.0-next.6
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/esm2022/rxjs-interop/index.mjs +9 -0
- package/esm2022/rxjs-interop/public_api.mjs +15 -0
- package/esm2022/rxjs-interop/rxjs-interop.mjs +5 -0
- package/esm2022/rxjs-interop/src/from_observable.mjs +46 -0
- package/esm2022/rxjs-interop/src/from_signal.mjs +36 -0
- package/esm2022/rxjs-interop/src/index.mjs +11 -0
- package/esm2022/rxjs-interop/src/take_until_destroyed.mjs +33 -0
- package/{esm2020 → esm2022}/src/application_init.mjs +3 -3
- package/{esm2020 → esm2022}/src/application_module.mjs +4 -4
- package/esm2022/src/application_ref.mjs +969 -0
- package/{esm2020 → esm2022}/src/change_detection/change_detector_ref.mjs +6 -6
- package/esm2022/src/change_detection/differs/iterable_differs.mjs +81 -0
- package/esm2022/src/change_detection/differs/keyvalue_differs.mjs +74 -0
- package/{esm2020 → esm2022}/src/console.mjs +3 -3
- package/esm2022/src/core.mjs +56 -0
- package/esm2022/src/core_private_export.mjs +39 -0
- package/esm2022/src/core_reactivity_export_internal.mjs +12 -0
- package/esm2022/src/di/contextual.mjs +54 -0
- package/esm2022/src/di/index.mjs +29 -0
- package/esm2022/src/di/injector.mjs +62 -0
- package/esm2022/src/di/injector_compatibility.mjs +239 -0
- package/esm2022/src/di/provider_collection.mjs +279 -0
- package/esm2022/src/di/reflective_injector.mjs +311 -0
- package/esm2022/src/errors.mjs +49 -0
- package/esm2022/src/hydration/annotate.mjs +426 -0
- package/esm2022/src/hydration/api.mjs +176 -0
- package/esm2022/src/hydration/cleanup.mjs +95 -0
- package/esm2022/src/hydration/node_lookup_utils.mjs +273 -0
- package/esm2022/src/hydration/utils.mjs +219 -0
- package/esm2022/src/initial_render_pending_tasks.mjs +75 -0
- package/{esm2020 → esm2022}/src/linker/compiler.mjs +5 -5
- package/{esm2020 → esm2022}/src/linker/component_factory.mjs +1 -1
- package/esm2022/src/linker/component_factory_resolver.mjs +42 -0
- package/{esm2020 → esm2022}/src/linker/destroy_ref.mjs +11 -11
- package/{esm2020 → esm2022}/src/linker/element_ref.mjs +6 -6
- package/esm2022/src/linker/query_list.mjs +169 -0
- package/esm2022/src/linker/template_ref.mjs +102 -0
- package/{esm2020 → esm2022}/src/linker/view_container_ref.mjs +7 -7
- package/{esm2020 → esm2022}/src/linker/view_ref.mjs +2 -2
- package/esm2022/src/metadata/di.mjs +69 -0
- package/{esm2020 → esm2022}/src/metadata/directives.mjs +1 -1
- package/{esm2020 → esm2022}/src/metadata/do_boostrap.mjs +1 -1
- package/{esm2020 → esm2022}/src/metadata/ng_module.mjs +2 -2
- package/esm2022/src/metadata.mjs +18 -0
- package/{esm2020 → esm2022}/src/render/api.mjs +6 -6
- package/esm2022/src/render3/component_ref.mjs +393 -0
- package/{esm2020 → esm2022}/src/render3/context_discovery.mjs +1 -1
- package/esm2022/src/render3/features/standalone_feature.mjs +70 -0
- package/{esm2020 → esm2022}/src/render3/instructions/element.mjs +3 -2
- package/{esm2020 → esm2022}/src/render3/instructions/element_container.mjs +1 -2
- package/esm2022/src/render3/instructions/listener.mjs +244 -0
- package/esm2022/src/render3/instructions/mark_view_dirty.mjs +35 -0
- package/{esm2020 → esm2022}/src/render3/instructions/shared.mjs +26 -38
- package/{esm2020 → esm2022}/src/render3/instructions/styling.mjs +5 -2
- package/esm2022/src/render3/interfaces/view.mjs +48 -0
- package/esm2022/src/render3/jit/module.mjs +531 -0
- package/esm2022/src/render3/ng_module_ref.mjs +134 -0
- package/esm2022/src/render3/node_manipulation.mjs +960 -0
- package/esm2022/src/render3/reactive_lview_consumer.mjs +81 -0
- package/esm2022/src/render3/reactivity/effect.mjs +77 -0
- package/{esm2020 → esm2022}/src/render3/util/change_detection_utils.mjs +2 -2
- package/esm2022/src/render3/view_ref.mjs +307 -0
- package/{esm2020 → esm2022}/src/sanitization/sanitization.mjs +3 -3
- package/{esm2020 → esm2022}/src/sanitization/sanitizer.mjs +7 -7
- package/esm2022/src/signals/index.mjs +16 -0
- package/esm2022/src/signals/src/api.mjs +46 -0
- package/esm2022/src/signals/src/computed.mjs +140 -0
- package/esm2022/src/signals/src/errors.mjs +18 -0
- package/esm2022/src/signals/src/graph.mjs +189 -0
- package/esm2022/src/signals/src/signal.mjs +86 -0
- package/esm2022/src/signals/src/watch.mjs +63 -0
- package/esm2022/src/signals/src/weak_ref.mjs +35 -0
- package/{esm2020 → esm2022}/src/testability/testability.mjs +5 -5
- package/esm2022/src/transfer_state.mjs +153 -0
- package/esm2022/src/util/ng_dev_mode.mjs +80 -0
- package/{esm2020 → esm2022}/src/version.mjs +1 -1
- package/{esm2020 → esm2022}/testing/src/logger.mjs +4 -4
- package/{esm2020 → esm2022}/testing/src/ng_zone_mock.mjs +4 -4
- package/{esm2020 → esm2022}/testing/src/test_bed.mjs +2 -2
- package/esm2022/testing/src/test_bed_compiler.mjs +845 -0
- package/{fesm2020 → fesm2022}/core.mjs +15745 -15364
- package/fesm2022/core.mjs.map +1 -0
- package/fesm2022/rxjs-interop.mjs +104 -0
- package/fesm2022/rxjs-interop.mjs.map +1 -0
- package/{fesm2020 → fesm2022}/testing.mjs +913 -176
- package/fesm2022/testing.mjs.map +1 -0
- package/index.d.ts +459 -211
- package/package.json +14 -16
- package/rxjs-interop/index.d.ts +95 -0
- package/schematics/migrations/guard-and-resolve-interfaces/bundle.js +694 -0
- package/schematics/migrations/guard-and-resolve-interfaces/bundle.js.map +7 -0
- package/schematics/migrations/{router-link-with-href → remove-module-id}/bundle.js +153 -155
- package/schematics/migrations/remove-module-id/bundle.js.map +7 -0
- package/schematics/migrations.json +8 -8
- package/schematics/ng-generate/standalone-migration/bundle.js +928 -562
- package/schematics/ng-generate/standalone-migration/bundle.js.map +2 -2
- package/testing/index.d.ts +1 -1
- package/esm2020/src/application_ref.mjs +0 -907
- package/esm2020/src/change_detection/differs/iterable_differs.mjs +0 -81
- package/esm2020/src/change_detection/differs/keyvalue_differs.mjs +0 -74
- package/esm2020/src/core.mjs +0 -55
- package/esm2020/src/core_private_export.mjs +0 -38
- package/esm2020/src/core_reactivity_export_internal.mjs +0 -9
- package/esm2020/src/di/contextual.mjs +0 -37
- package/esm2020/src/di/index.mjs +0 -29
- package/esm2020/src/di/injector.mjs +0 -62
- package/esm2020/src/di/injector_compatibility.mjs +0 -236
- package/esm2020/src/di/provider_collection.mjs +0 -279
- package/esm2020/src/di/reflective_injector.mjs +0 -311
- package/esm2020/src/errors.mjs +0 -48
- package/esm2020/src/hydration/annotate.mjs +0 -384
- package/esm2020/src/hydration/api.mjs +0 -141
- package/esm2020/src/hydration/cleanup.mjs +0 -101
- package/esm2020/src/hydration/node_lookup_utils.mjs +0 -275
- package/esm2020/src/hydration/utils.mjs +0 -219
- package/esm2020/src/linker/component_factory_resolver.mjs +0 -42
- package/esm2020/src/linker/query_list.mjs +0 -169
- package/esm2020/src/linker/template_ref.mjs +0 -102
- package/esm2020/src/metadata/di.mjs +0 -108
- package/esm2020/src/metadata.mjs +0 -18
- package/esm2020/src/render3/component_ref.mjs +0 -377
- package/esm2020/src/render3/features/standalone_feature.mjs +0 -70
- package/esm2020/src/render3/instructions/listener.mjs +0 -243
- package/esm2020/src/render3/interfaces/view.mjs +0 -47
- package/esm2020/src/render3/jit/module.mjs +0 -544
- package/esm2020/src/render3/ng_module_ref.mjs +0 -132
- package/esm2020/src/render3/node_manipulation.mjs +0 -961
- package/esm2020/src/render3/view_ref.mjs +0 -306
- package/esm2020/src/signals/index.mjs +0 -16
- package/esm2020/src/signals/src/api.mjs +0 -46
- package/esm2020/src/signals/src/computed.mjs +0 -142
- package/esm2020/src/signals/src/effect.mjs +0 -67
- package/esm2020/src/signals/src/graph.mjs +0 -114
- package/esm2020/src/signals/src/signal.mjs +0 -78
- package/esm2020/src/signals/src/watch.mjs +0 -54
- package/esm2020/src/signals/src/weak_ref.mjs +0 -27
- package/esm2020/src/transfer_state.mjs +0 -153
- package/esm2020/src/util/ng_dev_mode.mjs +0 -79
- package/esm2020/testing/src/test_bed_compiler.mjs +0 -846
- package/fesm2015/core.mjs +0 -30473
- package/fesm2015/core.mjs.map +0 -1
- package/fesm2015/testing.mjs +0 -26417
- package/fesm2015/testing.mjs.map +0 -1
- package/fesm2020/core.mjs.map +0 -1
- package/fesm2020/testing.mjs.map +0 -1
- package/schematics/migrations/relative-link-resolution/bundle.js +0 -283
- package/schematics/migrations/relative-link-resolution/bundle.js.map +0 -7
- package/schematics/migrations/router-link-with-href/bundle.js.map +0 -7
- /package/{esm2020 → esm2022}/core.mjs +0 -0
- /package/{esm2020 → esm2022}/index.mjs +0 -0
- /package/{esm2020 → esm2022}/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/src/application_config.mjs +0 -0
- /package/{esm2020 → esm2022}/src/application_tokens.mjs +0 -0
- /package/{esm2020 → esm2022}/src/change_detection/change_detection.mjs +0 -0
- /package/{esm2020 → esm2022}/src/change_detection/constants.mjs +0 -0
- /package/{esm2020 → esm2022}/src/change_detection/differs/default_iterable_differ.mjs +0 -0
- /package/{esm2020 → esm2022}/src/change_detection/differs/default_keyvalue_differ.mjs +0 -0
- /package/{esm2020 → esm2022}/src/change_detection/pipe_transform.mjs +0 -0
- /package/{esm2020 → esm2022}/src/change_detection.mjs +0 -0
- /package/{esm2020 → esm2022}/src/compiler/compiler_facade.mjs +0 -0
- /package/{esm2020 → esm2022}/src/compiler/compiler_facade_interface.mjs +0 -0
- /package/{esm2020 → esm2022}/src/core_reactivity_export.mjs +0 -0
- /package/{esm2020 → esm2022}/src/core_render3_private_export.mjs +0 -0
- /package/{esm2020 → esm2022}/src/debug/debug_node.mjs +0 -0
- /package/{esm2020 → esm2022}/src/di/create_injector.mjs +0 -0
- /package/{esm2020 → esm2022}/src/di/forward_ref.mjs +0 -0
- /package/{esm2020 → esm2022}/src/di/initializer_token.mjs +0 -0
- /package/{esm2020 → esm2022}/src/di/inject_switch.mjs +0 -0
- /package/{esm2020 → esm2022}/src/di/injectable.mjs +0 -0
- /package/{esm2020 → esm2022}/src/di/injection_token.mjs +0 -0
- /package/{esm2020 → esm2022}/src/di/injector_marker.mjs +0 -0
- /package/{esm2020 → esm2022}/src/di/injector_token.mjs +0 -0
- /package/{esm2020 → esm2022}/src/di/interface/defs.mjs +0 -0
- /package/{esm2020 → esm2022}/src/di/interface/injector.mjs +0 -0
- /package/{esm2020 → esm2022}/src/di/interface/provider.mjs +0 -0
- /package/{esm2020 → esm2022}/src/di/internal_tokens.mjs +0 -0
- /package/{esm2020 → esm2022}/src/di/jit/environment.mjs +0 -0
- /package/{esm2020 → esm2022}/src/di/jit/injectable.mjs +0 -0
- /package/{esm2020 → esm2022}/src/di/jit/util.mjs +0 -0
- /package/{esm2020 → esm2022}/src/di/metadata.mjs +0 -0
- /package/{esm2020 → esm2022}/src/di/metadata_attr.mjs +0 -0
- /package/{esm2020 → esm2022}/src/di/null_injector.mjs +0 -0
- /package/{esm2020 → esm2022}/src/di/provider_token.mjs +0 -0
- /package/{esm2020 → esm2022}/src/di/r3_injector.mjs +0 -0
- /package/{esm2020 → esm2022}/src/di/reflective_errors.mjs +0 -0
- /package/{esm2020 → esm2022}/src/di/reflective_key.mjs +0 -0
- /package/{esm2020 → esm2022}/src/di/reflective_provider.mjs +0 -0
- /package/{esm2020 → esm2022}/src/di/scope.mjs +0 -0
- /package/{esm2020 → esm2022}/src/di.mjs +0 -0
- /package/{esm2020 → esm2022}/src/error_details_base_url.mjs +0 -0
- /package/{esm2020 → esm2022}/src/error_handler.mjs +0 -0
- /package/{esm2020 → esm2022}/src/event_emitter.mjs +0 -0
- /package/{esm2020 → esm2022}/src/hydration/compression.mjs +0 -0
- /package/{esm2020 → esm2022}/src/hydration/error_handling.mjs +0 -0
- /package/{esm2020 → esm2022}/src/hydration/interfaces.mjs +0 -0
- /package/{esm2020 → esm2022}/src/hydration/skip_hydration.mjs +0 -0
- /package/{esm2020 → esm2022}/src/hydration/tokens.mjs +0 -0
- /package/{esm2020 → esm2022}/src/hydration/views.mjs +0 -0
- /package/{esm2020 → esm2022}/src/i18n/locale_data_api.mjs +0 -0
- /package/{esm2020 → esm2022}/src/i18n/locale_en.mjs +0 -0
- /package/{esm2020 → esm2022}/src/i18n/localization.mjs +0 -0
- /package/{esm2020 → esm2022}/src/i18n/tokens.mjs +0 -0
- /package/{esm2020 → esm2022}/src/interface/lifecycle_hooks.mjs +0 -0
- /package/{esm2020 → esm2022}/src/interface/simple_change.mjs +0 -0
- /package/{esm2020 → esm2022}/src/interface/type.mjs +0 -0
- /package/{esm2020 → esm2022}/src/linker/ng_module_factory.mjs +0 -0
- /package/{esm2020 → esm2022}/src/linker/ng_module_factory_loader.mjs +0 -0
- /package/{esm2020 → esm2022}/src/linker/ng_module_factory_loader_impl.mjs +0 -0
- /package/{esm2020 → esm2022}/src/linker/ng_module_registration.mjs +0 -0
- /package/{esm2020 → esm2022}/src/linker.mjs +0 -0
- /package/{esm2020 → esm2022}/src/metadata/ng_module_def.mjs +0 -0
- /package/{esm2020 → esm2022}/src/metadata/resource_loading.mjs +0 -0
- /package/{esm2020 → esm2022}/src/metadata/schema.mjs +0 -0
- /package/{esm2020 → esm2022}/src/metadata/view.mjs +0 -0
- /package/{esm2020 → esm2022}/src/platform_core_providers.mjs +0 -0
- /package/{esm2020 → esm2022}/src/r3_symbols.mjs +0 -0
- /package/{esm2020 → esm2022}/src/reflection/platform_reflection_capabilities.mjs +0 -0
- /package/{esm2020 → esm2022}/src/reflection/reflection_capabilities.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render/api_flags.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/assert.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/bindings.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/collect_native_nodes.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/component.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/definition.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/definition_factory.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/di.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/di_setup.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/errors.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/errors_di.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/features/copy_definition_feature.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/features/host_directives_feature.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/features/inherit_definition_feature.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/features/ng_onchanges_feature.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/features/providers_feature.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/fields.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/global_utils_api.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/hooks.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/i18n/i18n_apply.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/i18n/i18n_debug.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/i18n/i18n_insert_before_index.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/i18n/i18n_locale_id.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/i18n/i18n_parse.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/i18n/i18n_postprocess.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/i18n/i18n_tree_shaking.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/i18n/i18n_util.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/index.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/instructions/advance.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/instructions/all.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/instructions/attribute.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/instructions/attribute_interpolation.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/instructions/change_detection.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/instructions/class_map_interpolation.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/instructions/di.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/instructions/di_attr.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/instructions/element_validation.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/instructions/get_current_view.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/instructions/host_property.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/instructions/i18n.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/instructions/i18n_icu_container_visitor.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/instructions/interpolation.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/instructions/namespace.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/instructions/next_context.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/instructions/projection.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/instructions/property.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/instructions/property_interpolation.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/instructions/storage.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/instructions/style_map_interpolation.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/instructions/style_prop_interpolation.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/instructions/template.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/instructions/text.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/instructions/text_interpolation.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/interfaces/container.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/interfaces/context.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/interfaces/definition.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/interfaces/document.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/interfaces/i18n.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/interfaces/injector.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/interfaces/lview_tracking.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/interfaces/node.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/interfaces/projection.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/interfaces/public_definitions.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/interfaces/query.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/interfaces/renderer.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/interfaces/renderer_dom.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/interfaces/sanitization.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/interfaces/styling.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/interfaces/type_checks.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/jit/directive.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/jit/environment.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/jit/jit_options.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/jit/module_patch.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/jit/partial.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/jit/pipe.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/jit/util.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/metadata.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/namespaces.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/node_assert.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/node_manipulation_i18n.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/node_selector_matcher.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/pipe.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/profiler.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/pure_function.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/query.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/state.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/styling/class_differ.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/styling/static_styling.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/styling/style_binding_list.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/styling/styling_parser.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/tokens.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/util/attrs_utils.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/util/discovery_utils.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/util/global_utils.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/util/injector_utils.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/util/misc_utils.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/util/stringify_utils.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/util/view_traversal_utils.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/util/view_utils.mjs +0 -0
- /package/{esm2020 → esm2022}/src/render3/view_engine_compatibility_prebound.mjs +0 -0
- /package/{esm2020 → esm2022}/src/sanitization/bypass.mjs +0 -0
- /package/{esm2020 → esm2022}/src/sanitization/html_sanitizer.mjs +0 -0
- /package/{esm2020 → esm2022}/src/sanitization/iframe_attrs_validation.mjs +0 -0
- /package/{esm2020 → esm2022}/src/sanitization/inert_body.mjs +0 -0
- /package/{esm2020 → esm2022}/src/sanitization/security.mjs +0 -0
- /package/{esm2020 → esm2022}/src/sanitization/url_sanitizer.mjs +0 -0
- /package/{esm2020 → esm2022}/src/signals/src/untracked.mjs +0 -0
- /package/{esm2020 → esm2022}/src/util/array_utils.mjs +0 -0
- /package/{esm2020 → esm2022}/src/util/assert.mjs +0 -0
- /package/{esm2020 → esm2022}/src/util/char_code.mjs +0 -0
- /package/{esm2020 → esm2022}/src/util/closure.mjs +0 -0
- /package/{esm2020 → esm2022}/src/util/coercion.mjs +0 -0
- /package/{esm2020 → esm2022}/src/util/comparison.mjs +0 -0
- /package/{esm2020 → esm2022}/src/util/decorators.mjs +0 -0
- /package/{esm2020 → esm2022}/src/util/dom.mjs +0 -0
- /package/{esm2020 → esm2022}/src/util/empty.mjs +0 -0
- /package/{esm2020 → esm2022}/src/util/errors.mjs +0 -0
- /package/{esm2020 → esm2022}/src/util/global.mjs +0 -0
- /package/{esm2020 → esm2022}/src/util/is_dev_mode.mjs +0 -0
- /package/{esm2020 → esm2022}/src/util/iterable.mjs +0 -0
- /package/{esm2020 → esm2022}/src/util/lang.mjs +0 -0
- /package/{esm2020 → esm2022}/src/util/microtask.mjs +0 -0
- /package/{esm2020 → esm2022}/src/util/ng_i18n_closure_mode.mjs +0 -0
- /package/{esm2020 → esm2022}/src/util/ng_jit_mode.mjs +0 -0
- /package/{esm2020 → esm2022}/src/util/ng_reflect.mjs +0 -0
- /package/{esm2020 → esm2022}/src/util/noop.mjs +0 -0
- /package/{esm2020 → esm2022}/src/util/property.mjs +0 -0
- /package/{esm2020 → esm2022}/src/util/raf.mjs +0 -0
- /package/{esm2020 → esm2022}/src/util/security/trusted_type_defs.mjs +0 -0
- /package/{esm2020 → esm2022}/src/util/security/trusted_types.mjs +0 -0
- /package/{esm2020 → esm2022}/src/util/security/trusted_types_bypass.mjs +0 -0
- /package/{esm2020 → esm2022}/src/util/stringify.mjs +0 -0
- /package/{esm2020 → esm2022}/src/view/provider_flags.mjs +0 -0
- /package/{esm2020 → esm2022}/src/zone/async-stack-tagging.mjs +0 -0
- /package/{esm2020 → esm2022}/src/zone/ng_zone.mjs +0 -0
- /package/{esm2020 → esm2022}/src/zone.mjs +0 -0
- /package/{esm2020 → esm2022}/testing/index.mjs +0 -0
- /package/{esm2020 → esm2022}/testing/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/testing/src/async.mjs +0 -0
- /package/{esm2020 → esm2022}/testing/src/component_fixture.mjs +0 -0
- /package/{esm2020 → esm2022}/testing/src/fake_async.mjs +0 -0
- /package/{esm2020 → esm2022}/testing/src/metadata_override.mjs +0 -0
- /package/{esm2020 → esm2022}/testing/src/metadata_overrider.mjs +0 -0
- /package/{esm2020 → esm2022}/testing/src/resolvers.mjs +0 -0
- /package/{esm2020 → esm2022}/testing/src/styling.mjs +0 -0
- /package/{esm2020 → esm2022}/testing/src/test_bed_common.mjs +0 -0
- /package/{esm2020 → esm2022}/testing/src/test_hooks.mjs +0 -0
- /package/{esm2020 → esm2022}/testing/src/testing.mjs +0 -0
- /package/{esm2020 → esm2022}/testing/src/testing_internal.mjs +0 -0
- /package/{esm2020 → esm2022}/testing/testing.mjs +0 -0
|
@@ -38,6 +38,10 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
38
38
|
mod
|
|
39
39
|
));
|
|
40
40
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
41
|
+
var __publicField = (obj, key, value) => {
|
|
42
|
+
__defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);
|
|
43
|
+
return value;
|
|
44
|
+
};
|
|
41
45
|
var __async = (__this, __arguments, generator) => {
|
|
42
46
|
return new Promise((resolve6, reject) => {
|
|
43
47
|
var fulfilled = (value) => {
|
|
@@ -59,7 +63,7 @@ var __async = (__this, __arguments, generator) => {
|
|
|
59
63
|
});
|
|
60
64
|
};
|
|
61
65
|
|
|
62
|
-
// bazel-out/
|
|
66
|
+
// bazel-out/darwin-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
|
|
63
67
|
var standalone_migration_exports = {};
|
|
64
68
|
__export(standalone_migration_exports, {
|
|
65
69
|
default: () => standalone_migration_default
|
|
@@ -67,10 +71,10 @@ __export(standalone_migration_exports, {
|
|
|
67
71
|
module.exports = __toCommonJS(standalone_migration_exports);
|
|
68
72
|
var import_schematics = require("@angular-devkit/schematics");
|
|
69
73
|
|
|
70
|
-
// bazel-out/
|
|
74
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/compiler_host.mjs
|
|
71
75
|
var import_typescript = __toESM(require("typescript"), 1);
|
|
72
76
|
|
|
73
|
-
// bazel-out/
|
|
77
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/invalid_file_system.mjs
|
|
74
78
|
var InvalidFileSystem = class {
|
|
75
79
|
exists(path3) {
|
|
76
80
|
throw makeError();
|
|
@@ -158,7 +162,7 @@ function makeError() {
|
|
|
158
162
|
return new Error("FileSystem has not been configured. Please call `setFileSystem()` before calling this method.");
|
|
159
163
|
}
|
|
160
164
|
|
|
161
|
-
// bazel-out/
|
|
165
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/util.mjs
|
|
162
166
|
var TS_DTS_JS_EXTENSION = /(?:\.d)?\.ts$|\.js$/;
|
|
163
167
|
function stripExtension(path3) {
|
|
164
168
|
return path3.replace(TS_DTS_JS_EXTENSION, "");
|
|
@@ -171,7 +175,7 @@ function getSourceFileOrError(program, fileName) {
|
|
|
171
175
|
return sf;
|
|
172
176
|
}
|
|
173
177
|
|
|
174
|
-
// bazel-out/
|
|
178
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/helpers.mjs
|
|
175
179
|
var fs = new InvalidFileSystem();
|
|
176
180
|
function getFileSystem() {
|
|
177
181
|
return fs;
|
|
@@ -215,7 +219,7 @@ function toRelativeImport(relativePath) {
|
|
|
215
219
|
return isLocalRelativePath(relativePath) ? `./${relativePath}` : relativePath;
|
|
216
220
|
}
|
|
217
221
|
|
|
218
|
-
// bazel-out/
|
|
222
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/logical.mjs
|
|
219
223
|
var LogicalProjectPath = {
|
|
220
224
|
relativePathBetween: function(from, to) {
|
|
221
225
|
const relativePath = relative(dirname(resolve(from)), resolve(to));
|
|
@@ -261,7 +265,7 @@ function isWithinBasePath(base, path3) {
|
|
|
261
265
|
return isLocalRelativePath(relative(base, path3));
|
|
262
266
|
}
|
|
263
267
|
|
|
264
|
-
// bazel-out/
|
|
268
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/node_js_file_system.mjs
|
|
265
269
|
var import_fs = __toESM(require("fs"), 1);
|
|
266
270
|
var import_module = __toESM(require("module"), 1);
|
|
267
271
|
var p = __toESM(require("path"), 1);
|
|
@@ -369,7 +373,7 @@ function toggleCase(str) {
|
|
|
369
373
|
return str.replace(/\w/g, (ch) => ch.toUpperCase() === ch ? ch.toLowerCase() : ch.toUpperCase());
|
|
370
374
|
}
|
|
371
375
|
|
|
372
|
-
// bazel-out/
|
|
376
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/selector.mjs
|
|
373
377
|
var _SELECTOR_REGEXP = new RegExp(
|
|
374
378
|
`(\\:not\\()|(([\\.\\#]?)[-\\w]+)|(?:\\[([-.\\w*\\\\$]+)(?:=(["']?)([^\\]"']*)\\5)?\\])|(\\))|(\\s*,\\s*)`,
|
|
375
379
|
"g"
|
|
@@ -677,7 +681,7 @@ var SelectorContext = class {
|
|
|
677
681
|
}
|
|
678
682
|
};
|
|
679
683
|
|
|
680
|
-
// bazel-out/
|
|
684
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/core.mjs
|
|
681
685
|
var emitDistinctChangesOnlyDefaultValue = true;
|
|
682
686
|
var ViewEncapsulation;
|
|
683
687
|
(function(ViewEncapsulation2) {
|
|
@@ -740,7 +744,7 @@ function parseSelectorToR3Selector(selector) {
|
|
|
740
744
|
return selector ? CssSelector.parse(selector).map(parserSelectorToR3Selector) : [];
|
|
741
745
|
}
|
|
742
746
|
|
|
743
|
-
// bazel-out/
|
|
747
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/i18n/big_integer.mjs
|
|
744
748
|
var BigInteger = class {
|
|
745
749
|
static zero() {
|
|
746
750
|
return new BigInteger([0]);
|
|
@@ -832,7 +836,7 @@ var BigIntExponentiation = class {
|
|
|
832
836
|
}
|
|
833
837
|
};
|
|
834
838
|
|
|
835
|
-
// bazel-out/
|
|
839
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/i18n/digest.mjs
|
|
836
840
|
var textEncoder;
|
|
837
841
|
function digest(message) {
|
|
838
842
|
return message.id || computeDigest(message);
|
|
@@ -1095,7 +1099,7 @@ function wordsToDecimalString(hi, lo) {
|
|
|
1095
1099
|
return decimal.toString();
|
|
1096
1100
|
}
|
|
1097
1101
|
|
|
1098
|
-
// bazel-out/
|
|
1102
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/output/output_ast.mjs
|
|
1099
1103
|
var TypeModifier;
|
|
1100
1104
|
(function(TypeModifier2) {
|
|
1101
1105
|
TypeModifier2[TypeModifier2["None"] = 0] = "None";
|
|
@@ -1922,7 +1926,7 @@ function serializeTags(tags) {
|
|
|
1922
1926
|
return out;
|
|
1923
1927
|
}
|
|
1924
1928
|
|
|
1925
|
-
// bazel-out/
|
|
1929
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/constant_pool.mjs
|
|
1926
1930
|
var CONSTANT_PREFIX = "_c";
|
|
1927
1931
|
var UNKNOWN_VALUE_KEY = variable("<unknown>");
|
|
1928
1932
|
var KEY_CONTEXT = {};
|
|
@@ -2090,211 +2094,562 @@ function isLongStringLiteral(expr) {
|
|
|
2090
2094
|
return expr instanceof LiteralExpr && typeof expr.value === "string" && expr.value.length >= POOL_INCLUSION_LENGTH_THRESHOLD_FOR_STRINGS;
|
|
2091
2095
|
}
|
|
2092
2096
|
|
|
2093
|
-
// bazel-out/
|
|
2097
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/r3_identifiers.mjs
|
|
2094
2098
|
var CORE = "@angular/core";
|
|
2095
|
-
var
|
|
2096
|
-
};
|
|
2097
|
-
Identifiers
|
|
2098
|
-
|
|
2099
|
-
|
|
2100
|
-
|
|
2101
|
-
|
|
2102
|
-
|
|
2103
|
-
|
|
2104
|
-
|
|
2105
|
-
|
|
2106
|
-
|
|
2107
|
-
|
|
2108
|
-
|
|
2109
|
-
|
|
2110
|
-
|
|
2111
|
-
|
|
2112
|
-
|
|
2113
|
-
|
|
2114
|
-
|
|
2115
|
-
|
|
2116
|
-
|
|
2117
|
-
|
|
2118
|
-
|
|
2119
|
-
|
|
2120
|
-
|
|
2121
|
-
|
|
2122
|
-
|
|
2123
|
-
|
|
2124
|
-
|
|
2125
|
-
|
|
2126
|
-
|
|
2127
|
-
|
|
2128
|
-
|
|
2129
|
-
|
|
2130
|
-
|
|
2131
|
-
|
|
2132
|
-
|
|
2133
|
-
|
|
2134
|
-
|
|
2135
|
-
|
|
2136
|
-
|
|
2137
|
-
|
|
2138
|
-
|
|
2139
|
-
|
|
2140
|
-
|
|
2141
|
-
|
|
2142
|
-
|
|
2143
|
-
|
|
2144
|
-
|
|
2145
|
-
|
|
2146
|
-
|
|
2147
|
-
|
|
2148
|
-
|
|
2149
|
-
|
|
2150
|
-
|
|
2151
|
-
|
|
2152
|
-
|
|
2153
|
-
|
|
2154
|
-
|
|
2155
|
-
|
|
2156
|
-
|
|
2157
|
-
|
|
2158
|
-
|
|
2159
|
-
|
|
2160
|
-
|
|
2161
|
-
|
|
2162
|
-
|
|
2163
|
-
|
|
2164
|
-
|
|
2165
|
-
|
|
2166
|
-
|
|
2167
|
-
|
|
2168
|
-
|
|
2169
|
-
|
|
2170
|
-
|
|
2171
|
-
|
|
2172
|
-
|
|
2173
|
-
|
|
2174
|
-
|
|
2175
|
-
|
|
2176
|
-
|
|
2177
|
-
|
|
2178
|
-
|
|
2179
|
-
|
|
2180
|
-
|
|
2181
|
-
|
|
2182
|
-
|
|
2183
|
-
|
|
2184
|
-
|
|
2185
|
-
|
|
2186
|
-
|
|
2187
|
-
|
|
2188
|
-
|
|
2189
|
-
|
|
2190
|
-
|
|
2191
|
-
|
|
2192
|
-
|
|
2193
|
-
|
|
2194
|
-
|
|
2195
|
-
|
|
2196
|
-
|
|
2197
|
-
|
|
2198
|
-
|
|
2199
|
-
|
|
2200
|
-
|
|
2201
|
-
|
|
2202
|
-
|
|
2203
|
-
|
|
2204
|
-
|
|
2205
|
-
|
|
2206
|
-
|
|
2207
|
-
|
|
2208
|
-
|
|
2209
|
-
|
|
2210
|
-
|
|
2211
|
-
|
|
2212
|
-
|
|
2213
|
-
|
|
2214
|
-
|
|
2215
|
-
|
|
2216
|
-
|
|
2217
|
-
|
|
2218
|
-
|
|
2219
|
-
|
|
2220
|
-
|
|
2221
|
-
|
|
2222
|
-
|
|
2223
|
-
|
|
2224
|
-
|
|
2225
|
-
|
|
2226
|
-
|
|
2227
|
-
|
|
2228
|
-
name: "
|
|
2229
|
-
|
|
2230
|
-
|
|
2231
|
-
|
|
2232
|
-
|
|
2233
|
-
|
|
2234
|
-
};
|
|
2235
|
-
|
|
2236
|
-
|
|
2237
|
-
moduleName: CORE
|
|
2238
|
-
};
|
|
2239
|
-
|
|
2240
|
-
name: "\u0275\
|
|
2241
|
-
|
|
2242
|
-
|
|
2243
|
-
|
|
2244
|
-
|
|
2245
|
-
|
|
2246
|
-
|
|
2247
|
-
|
|
2248
|
-
|
|
2249
|
-
moduleName: CORE
|
|
2250
|
-
};
|
|
2251
|
-
|
|
2252
|
-
|
|
2253
|
-
|
|
2254
|
-
|
|
2255
|
-
|
|
2256
|
-
|
|
2257
|
-
|
|
2258
|
-
};
|
|
2259
|
-
|
|
2260
|
-
|
|
2261
|
-
moduleName: CORE
|
|
2262
|
-
};
|
|
2263
|
-
|
|
2264
|
-
|
|
2265
|
-
|
|
2266
|
-
|
|
2267
|
-
|
|
2268
|
-
|
|
2269
|
-
|
|
2270
|
-
|
|
2271
|
-
|
|
2272
|
-
|
|
2273
|
-
|
|
2274
|
-
|
|
2275
|
-
|
|
2276
|
-
|
|
2277
|
-
|
|
2278
|
-
|
|
2279
|
-
|
|
2280
|
-
|
|
2281
|
-
|
|
2282
|
-
|
|
2283
|
-
|
|
2284
|
-
|
|
2285
|
-
moduleName: CORE
|
|
2286
|
-
};
|
|
2287
|
-
|
|
2288
|
-
|
|
2289
|
-
|
|
2290
|
-
|
|
2291
|
-
|
|
2292
|
-
|
|
2293
|
-
|
|
2294
|
-
|
|
2295
|
-
|
|
2296
|
-
|
|
2297
|
-
|
|
2099
|
+
var _Identifiers = class {
|
|
2100
|
+
};
|
|
2101
|
+
var Identifiers = _Identifiers;
|
|
2102
|
+
(() => {
|
|
2103
|
+
_Identifiers.NEW_METHOD = "factory";
|
|
2104
|
+
})();
|
|
2105
|
+
(() => {
|
|
2106
|
+
_Identifiers.TRANSFORM_METHOD = "transform";
|
|
2107
|
+
})();
|
|
2108
|
+
(() => {
|
|
2109
|
+
_Identifiers.PATCH_DEPS = "patchedDeps";
|
|
2110
|
+
})();
|
|
2111
|
+
(() => {
|
|
2112
|
+
_Identifiers.core = { name: null, moduleName: CORE };
|
|
2113
|
+
})();
|
|
2114
|
+
(() => {
|
|
2115
|
+
_Identifiers.namespaceHTML = { name: "\u0275\u0275namespaceHTML", moduleName: CORE };
|
|
2116
|
+
})();
|
|
2117
|
+
(() => {
|
|
2118
|
+
_Identifiers.namespaceMathML = { name: "\u0275\u0275namespaceMathML", moduleName: CORE };
|
|
2119
|
+
})();
|
|
2120
|
+
(() => {
|
|
2121
|
+
_Identifiers.namespaceSVG = { name: "\u0275\u0275namespaceSVG", moduleName: CORE };
|
|
2122
|
+
})();
|
|
2123
|
+
(() => {
|
|
2124
|
+
_Identifiers.element = { name: "\u0275\u0275element", moduleName: CORE };
|
|
2125
|
+
})();
|
|
2126
|
+
(() => {
|
|
2127
|
+
_Identifiers.elementStart = { name: "\u0275\u0275elementStart", moduleName: CORE };
|
|
2128
|
+
})();
|
|
2129
|
+
(() => {
|
|
2130
|
+
_Identifiers.elementEnd = { name: "\u0275\u0275elementEnd", moduleName: CORE };
|
|
2131
|
+
})();
|
|
2132
|
+
(() => {
|
|
2133
|
+
_Identifiers.advance = { name: "\u0275\u0275advance", moduleName: CORE };
|
|
2134
|
+
})();
|
|
2135
|
+
(() => {
|
|
2136
|
+
_Identifiers.syntheticHostProperty = { name: "\u0275\u0275syntheticHostProperty", moduleName: CORE };
|
|
2137
|
+
})();
|
|
2138
|
+
(() => {
|
|
2139
|
+
_Identifiers.syntheticHostListener = { name: "\u0275\u0275syntheticHostListener", moduleName: CORE };
|
|
2140
|
+
})();
|
|
2141
|
+
(() => {
|
|
2142
|
+
_Identifiers.attribute = { name: "\u0275\u0275attribute", moduleName: CORE };
|
|
2143
|
+
})();
|
|
2144
|
+
(() => {
|
|
2145
|
+
_Identifiers.attributeInterpolate1 = { name: "\u0275\u0275attributeInterpolate1", moduleName: CORE };
|
|
2146
|
+
})();
|
|
2147
|
+
(() => {
|
|
2148
|
+
_Identifiers.attributeInterpolate2 = { name: "\u0275\u0275attributeInterpolate2", moduleName: CORE };
|
|
2149
|
+
})();
|
|
2150
|
+
(() => {
|
|
2151
|
+
_Identifiers.attributeInterpolate3 = { name: "\u0275\u0275attributeInterpolate3", moduleName: CORE };
|
|
2152
|
+
})();
|
|
2153
|
+
(() => {
|
|
2154
|
+
_Identifiers.attributeInterpolate4 = { name: "\u0275\u0275attributeInterpolate4", moduleName: CORE };
|
|
2155
|
+
})();
|
|
2156
|
+
(() => {
|
|
2157
|
+
_Identifiers.attributeInterpolate5 = { name: "\u0275\u0275attributeInterpolate5", moduleName: CORE };
|
|
2158
|
+
})();
|
|
2159
|
+
(() => {
|
|
2160
|
+
_Identifiers.attributeInterpolate6 = { name: "\u0275\u0275attributeInterpolate6", moduleName: CORE };
|
|
2161
|
+
})();
|
|
2162
|
+
(() => {
|
|
2163
|
+
_Identifiers.attributeInterpolate7 = { name: "\u0275\u0275attributeInterpolate7", moduleName: CORE };
|
|
2164
|
+
})();
|
|
2165
|
+
(() => {
|
|
2166
|
+
_Identifiers.attributeInterpolate8 = { name: "\u0275\u0275attributeInterpolate8", moduleName: CORE };
|
|
2167
|
+
})();
|
|
2168
|
+
(() => {
|
|
2169
|
+
_Identifiers.attributeInterpolateV = { name: "\u0275\u0275attributeInterpolateV", moduleName: CORE };
|
|
2170
|
+
})();
|
|
2171
|
+
(() => {
|
|
2172
|
+
_Identifiers.classProp = { name: "\u0275\u0275classProp", moduleName: CORE };
|
|
2173
|
+
})();
|
|
2174
|
+
(() => {
|
|
2175
|
+
_Identifiers.elementContainerStart = { name: "\u0275\u0275elementContainerStart", moduleName: CORE };
|
|
2176
|
+
})();
|
|
2177
|
+
(() => {
|
|
2178
|
+
_Identifiers.elementContainerEnd = { name: "\u0275\u0275elementContainerEnd", moduleName: CORE };
|
|
2179
|
+
})();
|
|
2180
|
+
(() => {
|
|
2181
|
+
_Identifiers.elementContainer = { name: "\u0275\u0275elementContainer", moduleName: CORE };
|
|
2182
|
+
})();
|
|
2183
|
+
(() => {
|
|
2184
|
+
_Identifiers.styleMap = { name: "\u0275\u0275styleMap", moduleName: CORE };
|
|
2185
|
+
})();
|
|
2186
|
+
(() => {
|
|
2187
|
+
_Identifiers.styleMapInterpolate1 = { name: "\u0275\u0275styleMapInterpolate1", moduleName: CORE };
|
|
2188
|
+
})();
|
|
2189
|
+
(() => {
|
|
2190
|
+
_Identifiers.styleMapInterpolate2 = { name: "\u0275\u0275styleMapInterpolate2", moduleName: CORE };
|
|
2191
|
+
})();
|
|
2192
|
+
(() => {
|
|
2193
|
+
_Identifiers.styleMapInterpolate3 = { name: "\u0275\u0275styleMapInterpolate3", moduleName: CORE };
|
|
2194
|
+
})();
|
|
2195
|
+
(() => {
|
|
2196
|
+
_Identifiers.styleMapInterpolate4 = { name: "\u0275\u0275styleMapInterpolate4", moduleName: CORE };
|
|
2197
|
+
})();
|
|
2198
|
+
(() => {
|
|
2199
|
+
_Identifiers.styleMapInterpolate5 = { name: "\u0275\u0275styleMapInterpolate5", moduleName: CORE };
|
|
2200
|
+
})();
|
|
2201
|
+
(() => {
|
|
2202
|
+
_Identifiers.styleMapInterpolate6 = { name: "\u0275\u0275styleMapInterpolate6", moduleName: CORE };
|
|
2203
|
+
})();
|
|
2204
|
+
(() => {
|
|
2205
|
+
_Identifiers.styleMapInterpolate7 = { name: "\u0275\u0275styleMapInterpolate7", moduleName: CORE };
|
|
2206
|
+
})();
|
|
2207
|
+
(() => {
|
|
2208
|
+
_Identifiers.styleMapInterpolate8 = { name: "\u0275\u0275styleMapInterpolate8", moduleName: CORE };
|
|
2209
|
+
})();
|
|
2210
|
+
(() => {
|
|
2211
|
+
_Identifiers.styleMapInterpolateV = { name: "\u0275\u0275styleMapInterpolateV", moduleName: CORE };
|
|
2212
|
+
})();
|
|
2213
|
+
(() => {
|
|
2214
|
+
_Identifiers.classMap = { name: "\u0275\u0275classMap", moduleName: CORE };
|
|
2215
|
+
})();
|
|
2216
|
+
(() => {
|
|
2217
|
+
_Identifiers.classMapInterpolate1 = { name: "\u0275\u0275classMapInterpolate1", moduleName: CORE };
|
|
2218
|
+
})();
|
|
2219
|
+
(() => {
|
|
2220
|
+
_Identifiers.classMapInterpolate2 = { name: "\u0275\u0275classMapInterpolate2", moduleName: CORE };
|
|
2221
|
+
})();
|
|
2222
|
+
(() => {
|
|
2223
|
+
_Identifiers.classMapInterpolate3 = { name: "\u0275\u0275classMapInterpolate3", moduleName: CORE };
|
|
2224
|
+
})();
|
|
2225
|
+
(() => {
|
|
2226
|
+
_Identifiers.classMapInterpolate4 = { name: "\u0275\u0275classMapInterpolate4", moduleName: CORE };
|
|
2227
|
+
})();
|
|
2228
|
+
(() => {
|
|
2229
|
+
_Identifiers.classMapInterpolate5 = { name: "\u0275\u0275classMapInterpolate5", moduleName: CORE };
|
|
2230
|
+
})();
|
|
2231
|
+
(() => {
|
|
2232
|
+
_Identifiers.classMapInterpolate6 = { name: "\u0275\u0275classMapInterpolate6", moduleName: CORE };
|
|
2233
|
+
})();
|
|
2234
|
+
(() => {
|
|
2235
|
+
_Identifiers.classMapInterpolate7 = { name: "\u0275\u0275classMapInterpolate7", moduleName: CORE };
|
|
2236
|
+
})();
|
|
2237
|
+
(() => {
|
|
2238
|
+
_Identifiers.classMapInterpolate8 = { name: "\u0275\u0275classMapInterpolate8", moduleName: CORE };
|
|
2239
|
+
})();
|
|
2240
|
+
(() => {
|
|
2241
|
+
_Identifiers.classMapInterpolateV = { name: "\u0275\u0275classMapInterpolateV", moduleName: CORE };
|
|
2242
|
+
})();
|
|
2243
|
+
(() => {
|
|
2244
|
+
_Identifiers.styleProp = { name: "\u0275\u0275styleProp", moduleName: CORE };
|
|
2245
|
+
})();
|
|
2246
|
+
(() => {
|
|
2247
|
+
_Identifiers.stylePropInterpolate1 = { name: "\u0275\u0275stylePropInterpolate1", moduleName: CORE };
|
|
2248
|
+
})();
|
|
2249
|
+
(() => {
|
|
2250
|
+
_Identifiers.stylePropInterpolate2 = { name: "\u0275\u0275stylePropInterpolate2", moduleName: CORE };
|
|
2251
|
+
})();
|
|
2252
|
+
(() => {
|
|
2253
|
+
_Identifiers.stylePropInterpolate3 = { name: "\u0275\u0275stylePropInterpolate3", moduleName: CORE };
|
|
2254
|
+
})();
|
|
2255
|
+
(() => {
|
|
2256
|
+
_Identifiers.stylePropInterpolate4 = { name: "\u0275\u0275stylePropInterpolate4", moduleName: CORE };
|
|
2257
|
+
})();
|
|
2258
|
+
(() => {
|
|
2259
|
+
_Identifiers.stylePropInterpolate5 = { name: "\u0275\u0275stylePropInterpolate5", moduleName: CORE };
|
|
2260
|
+
})();
|
|
2261
|
+
(() => {
|
|
2262
|
+
_Identifiers.stylePropInterpolate6 = { name: "\u0275\u0275stylePropInterpolate6", moduleName: CORE };
|
|
2263
|
+
})();
|
|
2264
|
+
(() => {
|
|
2265
|
+
_Identifiers.stylePropInterpolate7 = { name: "\u0275\u0275stylePropInterpolate7", moduleName: CORE };
|
|
2266
|
+
})();
|
|
2267
|
+
(() => {
|
|
2268
|
+
_Identifiers.stylePropInterpolate8 = { name: "\u0275\u0275stylePropInterpolate8", moduleName: CORE };
|
|
2269
|
+
})();
|
|
2270
|
+
(() => {
|
|
2271
|
+
_Identifiers.stylePropInterpolateV = { name: "\u0275\u0275stylePropInterpolateV", moduleName: CORE };
|
|
2272
|
+
})();
|
|
2273
|
+
(() => {
|
|
2274
|
+
_Identifiers.nextContext = { name: "\u0275\u0275nextContext", moduleName: CORE };
|
|
2275
|
+
})();
|
|
2276
|
+
(() => {
|
|
2277
|
+
_Identifiers.resetView = { name: "\u0275\u0275resetView", moduleName: CORE };
|
|
2278
|
+
})();
|
|
2279
|
+
(() => {
|
|
2280
|
+
_Identifiers.templateCreate = { name: "\u0275\u0275template", moduleName: CORE };
|
|
2281
|
+
})();
|
|
2282
|
+
(() => {
|
|
2283
|
+
_Identifiers.text = { name: "\u0275\u0275text", moduleName: CORE };
|
|
2284
|
+
})();
|
|
2285
|
+
(() => {
|
|
2286
|
+
_Identifiers.enableBindings = { name: "\u0275\u0275enableBindings", moduleName: CORE };
|
|
2287
|
+
})();
|
|
2288
|
+
(() => {
|
|
2289
|
+
_Identifiers.disableBindings = { name: "\u0275\u0275disableBindings", moduleName: CORE };
|
|
2290
|
+
})();
|
|
2291
|
+
(() => {
|
|
2292
|
+
_Identifiers.getCurrentView = { name: "\u0275\u0275getCurrentView", moduleName: CORE };
|
|
2293
|
+
})();
|
|
2294
|
+
(() => {
|
|
2295
|
+
_Identifiers.textInterpolate = { name: "\u0275\u0275textInterpolate", moduleName: CORE };
|
|
2296
|
+
})();
|
|
2297
|
+
(() => {
|
|
2298
|
+
_Identifiers.textInterpolate1 = { name: "\u0275\u0275textInterpolate1", moduleName: CORE };
|
|
2299
|
+
})();
|
|
2300
|
+
(() => {
|
|
2301
|
+
_Identifiers.textInterpolate2 = { name: "\u0275\u0275textInterpolate2", moduleName: CORE };
|
|
2302
|
+
})();
|
|
2303
|
+
(() => {
|
|
2304
|
+
_Identifiers.textInterpolate3 = { name: "\u0275\u0275textInterpolate3", moduleName: CORE };
|
|
2305
|
+
})();
|
|
2306
|
+
(() => {
|
|
2307
|
+
_Identifiers.textInterpolate4 = { name: "\u0275\u0275textInterpolate4", moduleName: CORE };
|
|
2308
|
+
})();
|
|
2309
|
+
(() => {
|
|
2310
|
+
_Identifiers.textInterpolate5 = { name: "\u0275\u0275textInterpolate5", moduleName: CORE };
|
|
2311
|
+
})();
|
|
2312
|
+
(() => {
|
|
2313
|
+
_Identifiers.textInterpolate6 = { name: "\u0275\u0275textInterpolate6", moduleName: CORE };
|
|
2314
|
+
})();
|
|
2315
|
+
(() => {
|
|
2316
|
+
_Identifiers.textInterpolate7 = { name: "\u0275\u0275textInterpolate7", moduleName: CORE };
|
|
2317
|
+
})();
|
|
2318
|
+
(() => {
|
|
2319
|
+
_Identifiers.textInterpolate8 = { name: "\u0275\u0275textInterpolate8", moduleName: CORE };
|
|
2320
|
+
})();
|
|
2321
|
+
(() => {
|
|
2322
|
+
_Identifiers.textInterpolateV = { name: "\u0275\u0275textInterpolateV", moduleName: CORE };
|
|
2323
|
+
})();
|
|
2324
|
+
(() => {
|
|
2325
|
+
_Identifiers.restoreView = { name: "\u0275\u0275restoreView", moduleName: CORE };
|
|
2326
|
+
})();
|
|
2327
|
+
(() => {
|
|
2328
|
+
_Identifiers.pureFunction0 = { name: "\u0275\u0275pureFunction0", moduleName: CORE };
|
|
2329
|
+
})();
|
|
2330
|
+
(() => {
|
|
2331
|
+
_Identifiers.pureFunction1 = { name: "\u0275\u0275pureFunction1", moduleName: CORE };
|
|
2332
|
+
})();
|
|
2333
|
+
(() => {
|
|
2334
|
+
_Identifiers.pureFunction2 = { name: "\u0275\u0275pureFunction2", moduleName: CORE };
|
|
2335
|
+
})();
|
|
2336
|
+
(() => {
|
|
2337
|
+
_Identifiers.pureFunction3 = { name: "\u0275\u0275pureFunction3", moduleName: CORE };
|
|
2338
|
+
})();
|
|
2339
|
+
(() => {
|
|
2340
|
+
_Identifiers.pureFunction4 = { name: "\u0275\u0275pureFunction4", moduleName: CORE };
|
|
2341
|
+
})();
|
|
2342
|
+
(() => {
|
|
2343
|
+
_Identifiers.pureFunction5 = { name: "\u0275\u0275pureFunction5", moduleName: CORE };
|
|
2344
|
+
})();
|
|
2345
|
+
(() => {
|
|
2346
|
+
_Identifiers.pureFunction6 = { name: "\u0275\u0275pureFunction6", moduleName: CORE };
|
|
2347
|
+
})();
|
|
2348
|
+
(() => {
|
|
2349
|
+
_Identifiers.pureFunction7 = { name: "\u0275\u0275pureFunction7", moduleName: CORE };
|
|
2350
|
+
})();
|
|
2351
|
+
(() => {
|
|
2352
|
+
_Identifiers.pureFunction8 = { name: "\u0275\u0275pureFunction8", moduleName: CORE };
|
|
2353
|
+
})();
|
|
2354
|
+
(() => {
|
|
2355
|
+
_Identifiers.pureFunctionV = { name: "\u0275\u0275pureFunctionV", moduleName: CORE };
|
|
2356
|
+
})();
|
|
2357
|
+
(() => {
|
|
2358
|
+
_Identifiers.pipeBind1 = { name: "\u0275\u0275pipeBind1", moduleName: CORE };
|
|
2359
|
+
})();
|
|
2360
|
+
(() => {
|
|
2361
|
+
_Identifiers.pipeBind2 = { name: "\u0275\u0275pipeBind2", moduleName: CORE };
|
|
2362
|
+
})();
|
|
2363
|
+
(() => {
|
|
2364
|
+
_Identifiers.pipeBind3 = { name: "\u0275\u0275pipeBind3", moduleName: CORE };
|
|
2365
|
+
})();
|
|
2366
|
+
(() => {
|
|
2367
|
+
_Identifiers.pipeBind4 = { name: "\u0275\u0275pipeBind4", moduleName: CORE };
|
|
2368
|
+
})();
|
|
2369
|
+
(() => {
|
|
2370
|
+
_Identifiers.pipeBindV = { name: "\u0275\u0275pipeBindV", moduleName: CORE };
|
|
2371
|
+
})();
|
|
2372
|
+
(() => {
|
|
2373
|
+
_Identifiers.hostProperty = { name: "\u0275\u0275hostProperty", moduleName: CORE };
|
|
2374
|
+
})();
|
|
2375
|
+
(() => {
|
|
2376
|
+
_Identifiers.property = { name: "\u0275\u0275property", moduleName: CORE };
|
|
2377
|
+
})();
|
|
2378
|
+
(() => {
|
|
2379
|
+
_Identifiers.propertyInterpolate = { name: "\u0275\u0275propertyInterpolate", moduleName: CORE };
|
|
2380
|
+
})();
|
|
2381
|
+
(() => {
|
|
2382
|
+
_Identifiers.propertyInterpolate1 = { name: "\u0275\u0275propertyInterpolate1", moduleName: CORE };
|
|
2383
|
+
})();
|
|
2384
|
+
(() => {
|
|
2385
|
+
_Identifiers.propertyInterpolate2 = { name: "\u0275\u0275propertyInterpolate2", moduleName: CORE };
|
|
2386
|
+
})();
|
|
2387
|
+
(() => {
|
|
2388
|
+
_Identifiers.propertyInterpolate3 = { name: "\u0275\u0275propertyInterpolate3", moduleName: CORE };
|
|
2389
|
+
})();
|
|
2390
|
+
(() => {
|
|
2391
|
+
_Identifiers.propertyInterpolate4 = { name: "\u0275\u0275propertyInterpolate4", moduleName: CORE };
|
|
2392
|
+
})();
|
|
2393
|
+
(() => {
|
|
2394
|
+
_Identifiers.propertyInterpolate5 = { name: "\u0275\u0275propertyInterpolate5", moduleName: CORE };
|
|
2395
|
+
})();
|
|
2396
|
+
(() => {
|
|
2397
|
+
_Identifiers.propertyInterpolate6 = { name: "\u0275\u0275propertyInterpolate6", moduleName: CORE };
|
|
2398
|
+
})();
|
|
2399
|
+
(() => {
|
|
2400
|
+
_Identifiers.propertyInterpolate7 = { name: "\u0275\u0275propertyInterpolate7", moduleName: CORE };
|
|
2401
|
+
})();
|
|
2402
|
+
(() => {
|
|
2403
|
+
_Identifiers.propertyInterpolate8 = { name: "\u0275\u0275propertyInterpolate8", moduleName: CORE };
|
|
2404
|
+
})();
|
|
2405
|
+
(() => {
|
|
2406
|
+
_Identifiers.propertyInterpolateV = { name: "\u0275\u0275propertyInterpolateV", moduleName: CORE };
|
|
2407
|
+
})();
|
|
2408
|
+
(() => {
|
|
2409
|
+
_Identifiers.i18n = { name: "\u0275\u0275i18n", moduleName: CORE };
|
|
2410
|
+
})();
|
|
2411
|
+
(() => {
|
|
2412
|
+
_Identifiers.i18nAttributes = { name: "\u0275\u0275i18nAttributes", moduleName: CORE };
|
|
2413
|
+
})();
|
|
2414
|
+
(() => {
|
|
2415
|
+
_Identifiers.i18nExp = { name: "\u0275\u0275i18nExp", moduleName: CORE };
|
|
2416
|
+
})();
|
|
2417
|
+
(() => {
|
|
2418
|
+
_Identifiers.i18nStart = { name: "\u0275\u0275i18nStart", moduleName: CORE };
|
|
2419
|
+
})();
|
|
2420
|
+
(() => {
|
|
2421
|
+
_Identifiers.i18nEnd = { name: "\u0275\u0275i18nEnd", moduleName: CORE };
|
|
2422
|
+
})();
|
|
2423
|
+
(() => {
|
|
2424
|
+
_Identifiers.i18nApply = { name: "\u0275\u0275i18nApply", moduleName: CORE };
|
|
2425
|
+
})();
|
|
2426
|
+
(() => {
|
|
2427
|
+
_Identifiers.i18nPostprocess = { name: "\u0275\u0275i18nPostprocess", moduleName: CORE };
|
|
2428
|
+
})();
|
|
2429
|
+
(() => {
|
|
2430
|
+
_Identifiers.pipe = { name: "\u0275\u0275pipe", moduleName: CORE };
|
|
2431
|
+
})();
|
|
2432
|
+
(() => {
|
|
2433
|
+
_Identifiers.projection = { name: "\u0275\u0275projection", moduleName: CORE };
|
|
2434
|
+
})();
|
|
2435
|
+
(() => {
|
|
2436
|
+
_Identifiers.projectionDef = { name: "\u0275\u0275projectionDef", moduleName: CORE };
|
|
2437
|
+
})();
|
|
2438
|
+
(() => {
|
|
2439
|
+
_Identifiers.reference = { name: "\u0275\u0275reference", moduleName: CORE };
|
|
2440
|
+
})();
|
|
2441
|
+
(() => {
|
|
2442
|
+
_Identifiers.inject = { name: "\u0275\u0275inject", moduleName: CORE };
|
|
2443
|
+
})();
|
|
2444
|
+
(() => {
|
|
2445
|
+
_Identifiers.injectAttribute = { name: "\u0275\u0275injectAttribute", moduleName: CORE };
|
|
2446
|
+
})();
|
|
2447
|
+
(() => {
|
|
2448
|
+
_Identifiers.directiveInject = { name: "\u0275\u0275directiveInject", moduleName: CORE };
|
|
2449
|
+
})();
|
|
2450
|
+
(() => {
|
|
2451
|
+
_Identifiers.invalidFactory = { name: "\u0275\u0275invalidFactory", moduleName: CORE };
|
|
2452
|
+
})();
|
|
2453
|
+
(() => {
|
|
2454
|
+
_Identifiers.invalidFactoryDep = { name: "\u0275\u0275invalidFactoryDep", moduleName: CORE };
|
|
2455
|
+
})();
|
|
2456
|
+
(() => {
|
|
2457
|
+
_Identifiers.templateRefExtractor = { name: "\u0275\u0275templateRefExtractor", moduleName: CORE };
|
|
2458
|
+
})();
|
|
2459
|
+
(() => {
|
|
2460
|
+
_Identifiers.forwardRef = { name: "forwardRef", moduleName: CORE };
|
|
2461
|
+
})();
|
|
2462
|
+
(() => {
|
|
2463
|
+
_Identifiers.resolveForwardRef = { name: "resolveForwardRef", moduleName: CORE };
|
|
2464
|
+
})();
|
|
2465
|
+
(() => {
|
|
2466
|
+
_Identifiers.\u0275\u0275defineInjectable = { name: "\u0275\u0275defineInjectable", moduleName: CORE };
|
|
2467
|
+
})();
|
|
2468
|
+
(() => {
|
|
2469
|
+
_Identifiers.declareInjectable = { name: "\u0275\u0275ngDeclareInjectable", moduleName: CORE };
|
|
2470
|
+
})();
|
|
2471
|
+
(() => {
|
|
2472
|
+
_Identifiers.InjectableDeclaration = { name: "\u0275\u0275InjectableDeclaration", moduleName: CORE };
|
|
2473
|
+
})();
|
|
2474
|
+
(() => {
|
|
2475
|
+
_Identifiers.resolveWindow = { name: "\u0275\u0275resolveWindow", moduleName: CORE };
|
|
2476
|
+
})();
|
|
2477
|
+
(() => {
|
|
2478
|
+
_Identifiers.resolveDocument = { name: "\u0275\u0275resolveDocument", moduleName: CORE };
|
|
2479
|
+
})();
|
|
2480
|
+
(() => {
|
|
2481
|
+
_Identifiers.resolveBody = { name: "\u0275\u0275resolveBody", moduleName: CORE };
|
|
2482
|
+
})();
|
|
2483
|
+
(() => {
|
|
2484
|
+
_Identifiers.defineComponent = { name: "\u0275\u0275defineComponent", moduleName: CORE };
|
|
2485
|
+
})();
|
|
2486
|
+
(() => {
|
|
2487
|
+
_Identifiers.declareComponent = { name: "\u0275\u0275ngDeclareComponent", moduleName: CORE };
|
|
2488
|
+
})();
|
|
2489
|
+
(() => {
|
|
2490
|
+
_Identifiers.setComponentScope = { name: "\u0275\u0275setComponentScope", moduleName: CORE };
|
|
2491
|
+
})();
|
|
2492
|
+
(() => {
|
|
2493
|
+
_Identifiers.ChangeDetectionStrategy = {
|
|
2494
|
+
name: "ChangeDetectionStrategy",
|
|
2495
|
+
moduleName: CORE
|
|
2496
|
+
};
|
|
2497
|
+
})();
|
|
2498
|
+
(() => {
|
|
2499
|
+
_Identifiers.ViewEncapsulation = {
|
|
2500
|
+
name: "ViewEncapsulation",
|
|
2501
|
+
moduleName: CORE
|
|
2502
|
+
};
|
|
2503
|
+
})();
|
|
2504
|
+
(() => {
|
|
2505
|
+
_Identifiers.ComponentDeclaration = {
|
|
2506
|
+
name: "\u0275\u0275ComponentDeclaration",
|
|
2507
|
+
moduleName: CORE
|
|
2508
|
+
};
|
|
2509
|
+
})();
|
|
2510
|
+
(() => {
|
|
2511
|
+
_Identifiers.FactoryDeclaration = {
|
|
2512
|
+
name: "\u0275\u0275FactoryDeclaration",
|
|
2513
|
+
moduleName: CORE
|
|
2514
|
+
};
|
|
2515
|
+
})();
|
|
2516
|
+
(() => {
|
|
2517
|
+
_Identifiers.declareFactory = { name: "\u0275\u0275ngDeclareFactory", moduleName: CORE };
|
|
2518
|
+
})();
|
|
2519
|
+
(() => {
|
|
2520
|
+
_Identifiers.FactoryTarget = { name: "\u0275\u0275FactoryTarget", moduleName: CORE };
|
|
2521
|
+
})();
|
|
2522
|
+
(() => {
|
|
2523
|
+
_Identifiers.defineDirective = { name: "\u0275\u0275defineDirective", moduleName: CORE };
|
|
2524
|
+
})();
|
|
2525
|
+
(() => {
|
|
2526
|
+
_Identifiers.declareDirective = { name: "\u0275\u0275ngDeclareDirective", moduleName: CORE };
|
|
2527
|
+
})();
|
|
2528
|
+
(() => {
|
|
2529
|
+
_Identifiers.DirectiveDeclaration = {
|
|
2530
|
+
name: "\u0275\u0275DirectiveDeclaration",
|
|
2531
|
+
moduleName: CORE
|
|
2532
|
+
};
|
|
2533
|
+
})();
|
|
2534
|
+
(() => {
|
|
2535
|
+
_Identifiers.InjectorDef = { name: "\u0275\u0275InjectorDef", moduleName: CORE };
|
|
2536
|
+
})();
|
|
2537
|
+
(() => {
|
|
2538
|
+
_Identifiers.InjectorDeclaration = { name: "\u0275\u0275InjectorDeclaration", moduleName: CORE };
|
|
2539
|
+
})();
|
|
2540
|
+
(() => {
|
|
2541
|
+
_Identifiers.defineInjector = { name: "\u0275\u0275defineInjector", moduleName: CORE };
|
|
2542
|
+
})();
|
|
2543
|
+
(() => {
|
|
2544
|
+
_Identifiers.declareInjector = { name: "\u0275\u0275ngDeclareInjector", moduleName: CORE };
|
|
2545
|
+
})();
|
|
2546
|
+
(() => {
|
|
2547
|
+
_Identifiers.NgModuleDeclaration = {
|
|
2548
|
+
name: "\u0275\u0275NgModuleDeclaration",
|
|
2549
|
+
moduleName: CORE
|
|
2550
|
+
};
|
|
2551
|
+
})();
|
|
2552
|
+
(() => {
|
|
2553
|
+
_Identifiers.ModuleWithProviders = {
|
|
2554
|
+
name: "ModuleWithProviders",
|
|
2555
|
+
moduleName: CORE
|
|
2556
|
+
};
|
|
2557
|
+
})();
|
|
2558
|
+
(() => {
|
|
2559
|
+
_Identifiers.defineNgModule = { name: "\u0275\u0275defineNgModule", moduleName: CORE };
|
|
2560
|
+
})();
|
|
2561
|
+
(() => {
|
|
2562
|
+
_Identifiers.declareNgModule = { name: "\u0275\u0275ngDeclareNgModule", moduleName: CORE };
|
|
2563
|
+
})();
|
|
2564
|
+
(() => {
|
|
2565
|
+
_Identifiers.setNgModuleScope = { name: "\u0275\u0275setNgModuleScope", moduleName: CORE };
|
|
2566
|
+
})();
|
|
2567
|
+
(() => {
|
|
2568
|
+
_Identifiers.registerNgModuleType = { name: "\u0275\u0275registerNgModuleType", moduleName: CORE };
|
|
2569
|
+
})();
|
|
2570
|
+
(() => {
|
|
2571
|
+
_Identifiers.PipeDeclaration = { name: "\u0275\u0275PipeDeclaration", moduleName: CORE };
|
|
2572
|
+
})();
|
|
2573
|
+
(() => {
|
|
2574
|
+
_Identifiers.definePipe = { name: "\u0275\u0275definePipe", moduleName: CORE };
|
|
2575
|
+
})();
|
|
2576
|
+
(() => {
|
|
2577
|
+
_Identifiers.declarePipe = { name: "\u0275\u0275ngDeclarePipe", moduleName: CORE };
|
|
2578
|
+
})();
|
|
2579
|
+
(() => {
|
|
2580
|
+
_Identifiers.declareClassMetadata = { name: "\u0275\u0275ngDeclareClassMetadata", moduleName: CORE };
|
|
2581
|
+
})();
|
|
2582
|
+
(() => {
|
|
2583
|
+
_Identifiers.setClassMetadata = { name: "\u0275setClassMetadata", moduleName: CORE };
|
|
2584
|
+
})();
|
|
2585
|
+
(() => {
|
|
2586
|
+
_Identifiers.queryRefresh = { name: "\u0275\u0275queryRefresh", moduleName: CORE };
|
|
2587
|
+
})();
|
|
2588
|
+
(() => {
|
|
2589
|
+
_Identifiers.viewQuery = { name: "\u0275\u0275viewQuery", moduleName: CORE };
|
|
2590
|
+
})();
|
|
2591
|
+
(() => {
|
|
2592
|
+
_Identifiers.loadQuery = { name: "\u0275\u0275loadQuery", moduleName: CORE };
|
|
2593
|
+
})();
|
|
2594
|
+
(() => {
|
|
2595
|
+
_Identifiers.contentQuery = { name: "\u0275\u0275contentQuery", moduleName: CORE };
|
|
2596
|
+
})();
|
|
2597
|
+
(() => {
|
|
2598
|
+
_Identifiers.NgOnChangesFeature = { name: "\u0275\u0275NgOnChangesFeature", moduleName: CORE };
|
|
2599
|
+
})();
|
|
2600
|
+
(() => {
|
|
2601
|
+
_Identifiers.InheritDefinitionFeature = { name: "\u0275\u0275InheritDefinitionFeature", moduleName: CORE };
|
|
2602
|
+
})();
|
|
2603
|
+
(() => {
|
|
2604
|
+
_Identifiers.CopyDefinitionFeature = { name: "\u0275\u0275CopyDefinitionFeature", moduleName: CORE };
|
|
2605
|
+
})();
|
|
2606
|
+
(() => {
|
|
2607
|
+
_Identifiers.StandaloneFeature = { name: "\u0275\u0275StandaloneFeature", moduleName: CORE };
|
|
2608
|
+
})();
|
|
2609
|
+
(() => {
|
|
2610
|
+
_Identifiers.ProvidersFeature = { name: "\u0275\u0275ProvidersFeature", moduleName: CORE };
|
|
2611
|
+
})();
|
|
2612
|
+
(() => {
|
|
2613
|
+
_Identifiers.HostDirectivesFeature = { name: "\u0275\u0275HostDirectivesFeature", moduleName: CORE };
|
|
2614
|
+
})();
|
|
2615
|
+
(() => {
|
|
2616
|
+
_Identifiers.listener = { name: "\u0275\u0275listener", moduleName: CORE };
|
|
2617
|
+
})();
|
|
2618
|
+
(() => {
|
|
2619
|
+
_Identifiers.getInheritedFactory = {
|
|
2620
|
+
name: "\u0275\u0275getInheritedFactory",
|
|
2621
|
+
moduleName: CORE
|
|
2622
|
+
};
|
|
2623
|
+
})();
|
|
2624
|
+
(() => {
|
|
2625
|
+
_Identifiers.sanitizeHtml = { name: "\u0275\u0275sanitizeHtml", moduleName: CORE };
|
|
2626
|
+
})();
|
|
2627
|
+
(() => {
|
|
2628
|
+
_Identifiers.sanitizeStyle = { name: "\u0275\u0275sanitizeStyle", moduleName: CORE };
|
|
2629
|
+
})();
|
|
2630
|
+
(() => {
|
|
2631
|
+
_Identifiers.sanitizeResourceUrl = { name: "\u0275\u0275sanitizeResourceUrl", moduleName: CORE };
|
|
2632
|
+
})();
|
|
2633
|
+
(() => {
|
|
2634
|
+
_Identifiers.sanitizeScript = { name: "\u0275\u0275sanitizeScript", moduleName: CORE };
|
|
2635
|
+
})();
|
|
2636
|
+
(() => {
|
|
2637
|
+
_Identifiers.sanitizeUrl = { name: "\u0275\u0275sanitizeUrl", moduleName: CORE };
|
|
2638
|
+
})();
|
|
2639
|
+
(() => {
|
|
2640
|
+
_Identifiers.sanitizeUrlOrResourceUrl = { name: "\u0275\u0275sanitizeUrlOrResourceUrl", moduleName: CORE };
|
|
2641
|
+
})();
|
|
2642
|
+
(() => {
|
|
2643
|
+
_Identifiers.trustConstantHtml = { name: "\u0275\u0275trustConstantHtml", moduleName: CORE };
|
|
2644
|
+
})();
|
|
2645
|
+
(() => {
|
|
2646
|
+
_Identifiers.trustConstantResourceUrl = { name: "\u0275\u0275trustConstantResourceUrl", moduleName: CORE };
|
|
2647
|
+
})();
|
|
2648
|
+
(() => {
|
|
2649
|
+
_Identifiers.validateIframeAttribute = { name: "\u0275\u0275validateIframeAttribute", moduleName: CORE };
|
|
2650
|
+
})();
|
|
2651
|
+
|
|
2652
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/util.mjs
|
|
2298
2653
|
var DASH_CASE_REGEXP = /-+([a-z0-9])/g;
|
|
2299
2654
|
function dashCaseToCamelCase(input) {
|
|
2300
2655
|
return input.replace(DASH_CASE_REGEXP, (...m) => m[1].toUpperCase());
|
|
@@ -2382,7 +2737,7 @@ function partitionArray(arr, conditionFn) {
|
|
|
2382
2737
|
return [truthy, falsy];
|
|
2383
2738
|
}
|
|
2384
2739
|
|
|
2385
|
-
// bazel-out/
|
|
2740
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/output/source_map.mjs
|
|
2386
2741
|
var VERSION = 3;
|
|
2387
2742
|
var JS_B64_PREFIX = "# sourceMappingURL=data:application/json;base64,";
|
|
2388
2743
|
var SourceMapGenerator = class {
|
|
@@ -2511,7 +2866,7 @@ function toBase64Digit(value) {
|
|
|
2511
2866
|
return B64_DIGITS[value];
|
|
2512
2867
|
}
|
|
2513
2868
|
|
|
2514
|
-
// bazel-out/
|
|
2869
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/output/abstract_emitter.mjs
|
|
2515
2870
|
var _SINGLE_QUOTE_ESCAPE_STRING_RE = /'|\\|\n|\r|\$/g;
|
|
2516
2871
|
var _LEGAL_IDENTIFIER_RE = /^[$A-Z_][0-9A-Z_$]*$/i;
|
|
2517
2872
|
var _INDENT_WITH = " ";
|
|
@@ -2986,7 +3341,7 @@ function _createIndent(count) {
|
|
|
2986
3341
|
return res;
|
|
2987
3342
|
}
|
|
2988
3343
|
|
|
2989
|
-
// bazel-out/
|
|
3344
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/util.mjs
|
|
2990
3345
|
function typeWithParameters(type, numParams) {
|
|
2991
3346
|
if (numParams === 0) {
|
|
2992
3347
|
return expressionType(type);
|
|
@@ -3054,7 +3409,7 @@ function generateForwardRef(expr) {
|
|
|
3054
3409
|
return importExpr(Identifiers.forwardRef).callFn([fn([], [new ReturnStatement(expr)])]);
|
|
3055
3410
|
}
|
|
3056
3411
|
|
|
3057
|
-
// bazel-out/
|
|
3412
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/r3_factory.mjs
|
|
3058
3413
|
var R3FactoryDelegateType;
|
|
3059
3414
|
(function(R3FactoryDelegateType2) {
|
|
3060
3415
|
R3FactoryDelegateType2[R3FactoryDelegateType2["Class"] = 0] = "Class";
|
|
@@ -3199,7 +3554,7 @@ function getInjectFn(target) {
|
|
|
3199
3554
|
}
|
|
3200
3555
|
}
|
|
3201
3556
|
|
|
3202
|
-
// bazel-out/
|
|
3557
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/r3_ast.mjs
|
|
3203
3558
|
var Comment = class {
|
|
3204
3559
|
constructor(value, sourceSpan) {
|
|
3205
3560
|
this.value = value;
|
|
@@ -3421,7 +3776,7 @@ function visitAll(visitor, nodes) {
|
|
|
3421
3776
|
return result;
|
|
3422
3777
|
}
|
|
3423
3778
|
|
|
3424
|
-
// bazel-out/
|
|
3779
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/i18n/i18n_ast.mjs
|
|
3425
3780
|
var Message = class {
|
|
3426
3781
|
constructor(nodes, placeholders, placeholderToMessage, meaning, description, customId) {
|
|
3427
3782
|
this.nodes = nodes;
|
|
@@ -3430,8 +3785,8 @@ var Message = class {
|
|
|
3430
3785
|
this.meaning = meaning;
|
|
3431
3786
|
this.description = description;
|
|
3432
3787
|
this.customId = customId;
|
|
3433
|
-
this.id = this.customId;
|
|
3434
3788
|
this.legacyIds = [];
|
|
3789
|
+
this.id = this.customId;
|
|
3435
3790
|
this.messageString = serializeMessage(this.nodes);
|
|
3436
3791
|
if (nodes.length) {
|
|
3437
3792
|
this.sources = [{
|
|
@@ -3584,7 +3939,7 @@ var LocalizeMessageStringVisitor = class {
|
|
|
3584
3939
|
}
|
|
3585
3940
|
};
|
|
3586
3941
|
|
|
3587
|
-
// bazel-out/
|
|
3942
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/i18n/serializers/serializer.mjs
|
|
3588
3943
|
var Serializer = class {
|
|
3589
3944
|
createNameMapper(message) {
|
|
3590
3945
|
return null;
|
|
@@ -3636,7 +3991,7 @@ var SimplePlaceholderMapper = class extends RecurseVisitor {
|
|
|
3636
3991
|
}
|
|
3637
3992
|
};
|
|
3638
3993
|
|
|
3639
|
-
// bazel-out/
|
|
3994
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/i18n/serializers/xml_helper.mjs
|
|
3640
3995
|
var _Visitor = class {
|
|
3641
3996
|
visitTag(tag) {
|
|
3642
3997
|
const strAttrs = this._serializeAttributes(tag.attrs);
|
|
@@ -3724,7 +4079,7 @@ function escapeXml(text) {
|
|
|
3724
4079
|
return _ESCAPED_CHARS.reduce((text2, entry) => text2.replace(entry[0], entry[1]), text);
|
|
3725
4080
|
}
|
|
3726
4081
|
|
|
3727
|
-
// bazel-out/
|
|
4082
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/i18n/serializers/xmb.mjs
|
|
3728
4083
|
var _MESSAGES_TAG = "messagebundle";
|
|
3729
4084
|
var _MESSAGE_TAG = "msg";
|
|
3730
4085
|
var _PLACEHOLDER_TAG = "ph";
|
|
@@ -3867,7 +4222,7 @@ function toPublicName(internalName) {
|
|
|
3867
4222
|
return internalName.toUpperCase().replace(/[^A-Z0-9_]/g, "_");
|
|
3868
4223
|
}
|
|
3869
4224
|
|
|
3870
|
-
// bazel-out/
|
|
4225
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/view/i18n/util.mjs
|
|
3871
4226
|
var CLOSURE_TRANSLATION_VAR_PREFIX = "MSG_";
|
|
3872
4227
|
var TRANSLATION_VAR_PREFIX = "i18n_";
|
|
3873
4228
|
var I18N_ATTR = "i18n";
|
|
@@ -3969,7 +4324,7 @@ function declareI18nVariable(variable2) {
|
|
|
3969
4324
|
return new DeclareVarStmt(variable2.name, void 0, INFERRED_TYPE, void 0, variable2.sourceSpan);
|
|
3970
4325
|
}
|
|
3971
4326
|
|
|
3972
|
-
// bazel-out/
|
|
4327
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/view/util.mjs
|
|
3973
4328
|
var UNSAFE_OBJECT_KEY_NAME_REGEXP = /[-.]/;
|
|
3974
4329
|
var TEMPORARY_NAME = "_t";
|
|
3975
4330
|
var CONTEXT_NAME = "ctx";
|
|
@@ -4175,7 +4530,7 @@ function getInstructionStatements(instructions) {
|
|
|
4175
4530
|
return statements;
|
|
4176
4531
|
}
|
|
4177
4532
|
|
|
4178
|
-
// bazel-out/
|
|
4533
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/injectable_compiler_2.mjs
|
|
4179
4534
|
function compileInjectable(meta, resolveForwardRefs) {
|
|
4180
4535
|
let result = null;
|
|
4181
4536
|
const factoryMeta = {
|
|
@@ -4264,7 +4619,7 @@ function createFactoryFunction(type) {
|
|
|
4264
4619
|
return fn([new FnParam("t", DYNAMIC_TYPE)], [new ReturnStatement(type.prop("\u0275fac").callFn([variable("t")]))]);
|
|
4265
4620
|
}
|
|
4266
4621
|
|
|
4267
|
-
// bazel-out/
|
|
4622
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/assertions.mjs
|
|
4268
4623
|
var UNUSABLE_INTERPOLATION_REGEXPS = [
|
|
4269
4624
|
/^\s*$/,
|
|
4270
4625
|
/[<>]/,
|
|
@@ -4286,7 +4641,7 @@ function assertInterpolationSymbols(identifier, value) {
|
|
|
4286
4641
|
}
|
|
4287
4642
|
}
|
|
4288
4643
|
|
|
4289
|
-
// bazel-out/
|
|
4644
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/ml_parser/interpolation_config.mjs
|
|
4290
4645
|
var InterpolationConfig = class {
|
|
4291
4646
|
static fromArray(markers) {
|
|
4292
4647
|
if (!markers) {
|
|
@@ -4302,7 +4657,7 @@ var InterpolationConfig = class {
|
|
|
4302
4657
|
};
|
|
4303
4658
|
var DEFAULT_INTERPOLATION_CONFIG = new InterpolationConfig("{{", "}}");
|
|
4304
4659
|
|
|
4305
|
-
// bazel-out/
|
|
4660
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/chars.mjs
|
|
4306
4661
|
var $EOF = 0;
|
|
4307
4662
|
var $BSPACE = 8;
|
|
4308
4663
|
var $TAB = 9;
|
|
@@ -4383,7 +4738,7 @@ function isQuote(code) {
|
|
|
4383
4738
|
return code === $SQ || code === $DQ || code === $BT;
|
|
4384
4739
|
}
|
|
4385
4740
|
|
|
4386
|
-
// bazel-out/
|
|
4741
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/parse_util.mjs
|
|
4387
4742
|
var ParseLocation = class {
|
|
4388
4743
|
constructor(file, offset, line, col) {
|
|
4389
4744
|
this.file = file;
|
|
@@ -4530,7 +4885,7 @@ function sanitizeIdentifier(name) {
|
|
|
4530
4885
|
return name.replace(/\W/g, "_");
|
|
4531
4886
|
}
|
|
4532
4887
|
|
|
4533
|
-
// bazel-out/
|
|
4888
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/output/abstract_js_emitter.mjs
|
|
4534
4889
|
var makeTemplateObjectPolyfill = '(this&&this.__makeTemplateObject||function(e,t){return Object.defineProperty?Object.defineProperty(e,"raw",{value:t}):e.raw=t,e})';
|
|
4535
4890
|
var AbstractJsEmitterVisitor = class extends AbstractEmitterVisitor {
|
|
4536
4891
|
constructor() {
|
|
@@ -4601,7 +4956,7 @@ var AbstractJsEmitterVisitor = class extends AbstractEmitterVisitor {
|
|
|
4601
4956
|
}
|
|
4602
4957
|
};
|
|
4603
4958
|
|
|
4604
|
-
// bazel-out/
|
|
4959
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/output/output_jit_trusted_types.mjs
|
|
4605
4960
|
var policy;
|
|
4606
4961
|
function getPolicy() {
|
|
4607
4962
|
if (policy === void 0) {
|
|
@@ -4638,7 +4993,7 @@ function newTrustedFunctionForJIT(...args) {
|
|
|
4638
4993
|
return fn2.bind(_global);
|
|
4639
4994
|
}
|
|
4640
4995
|
|
|
4641
|
-
// bazel-out/
|
|
4996
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/output/output_jit.mjs
|
|
4642
4997
|
var JitEvaluator = class {
|
|
4643
4998
|
evaluateStatements(sourceUrl, statements, refResolver, createSourceMaps) {
|
|
4644
4999
|
const converter = new JitEmitterVisitor(refResolver);
|
|
@@ -4729,7 +5084,7 @@ function isUseStrictStatement(statement) {
|
|
|
4729
5084
|
return statement.isEquivalent(literal("use strict").toStmt());
|
|
4730
5085
|
}
|
|
4731
5086
|
|
|
4732
|
-
// bazel-out/
|
|
5087
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/r3_injector_compiler.mjs
|
|
4733
5088
|
function compileInjector(meta) {
|
|
4734
5089
|
const definitionMap = new DefinitionMap();
|
|
4735
5090
|
if (meta.providers !== null) {
|
|
@@ -4746,7 +5101,7 @@ function createInjectorType(meta) {
|
|
|
4746
5101
|
return new ExpressionType(importExpr(Identifiers.InjectorDeclaration, [new ExpressionType(meta.type.type)]));
|
|
4747
5102
|
}
|
|
4748
5103
|
|
|
4749
|
-
// bazel-out/
|
|
5104
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/r3_jit.mjs
|
|
4750
5105
|
var R3JitReflector = class {
|
|
4751
5106
|
constructor(context) {
|
|
4752
5107
|
this.context = context;
|
|
@@ -4762,7 +5117,7 @@ var R3JitReflector = class {
|
|
|
4762
5117
|
}
|
|
4763
5118
|
};
|
|
4764
5119
|
|
|
4765
|
-
// bazel-out/
|
|
5120
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/r3_module_compiler.mjs
|
|
4766
5121
|
var R3SelectorScopeMode;
|
|
4767
5122
|
(function(R3SelectorScopeMode2) {
|
|
4768
5123
|
R3SelectorScopeMode2[R3SelectorScopeMode2["Inline"] = 0] = "Inline";
|
|
@@ -4875,7 +5230,7 @@ function tupleOfTypes(types) {
|
|
|
4875
5230
|
return types.length > 0 ? expressionType(literalArr(typeofTypes)) : NONE_TYPE;
|
|
4876
5231
|
}
|
|
4877
5232
|
|
|
4878
|
-
// bazel-out/
|
|
5233
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/r3_pipe_compiler.mjs
|
|
4879
5234
|
function compilePipeFromMetadata(metadata) {
|
|
4880
5235
|
const definitionMapValues = [];
|
|
4881
5236
|
definitionMapValues.push({ key: "name", value: literal(metadata.pipeName), quoted: false });
|
|
@@ -4896,7 +5251,7 @@ function createPipeType(metadata) {
|
|
|
4896
5251
|
]));
|
|
4897
5252
|
}
|
|
4898
5253
|
|
|
4899
|
-
// bazel-out/
|
|
5254
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/view/api.mjs
|
|
4900
5255
|
var R3TemplateDependencyKind;
|
|
4901
5256
|
(function(R3TemplateDependencyKind2) {
|
|
4902
5257
|
R3TemplateDependencyKind2[R3TemplateDependencyKind2["Directive"] = 0] = "Directive";
|
|
@@ -4904,7 +5259,7 @@ var R3TemplateDependencyKind;
|
|
|
4904
5259
|
R3TemplateDependencyKind2[R3TemplateDependencyKind2["NgModule"] = 2] = "NgModule";
|
|
4905
5260
|
})(R3TemplateDependencyKind || (R3TemplateDependencyKind = {}));
|
|
4906
5261
|
|
|
4907
|
-
// bazel-out/
|
|
5262
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/expression_parser/ast.mjs
|
|
4908
5263
|
var ParserError = class {
|
|
4909
5264
|
constructor(message, input, errLocation, ctxLocation) {
|
|
4910
5265
|
this.input = input;
|
|
@@ -5570,10 +5925,13 @@ var BoundElementProperty = class {
|
|
|
5570
5925
|
}
|
|
5571
5926
|
};
|
|
5572
5927
|
|
|
5573
|
-
// bazel-out/
|
|
5574
|
-
var
|
|
5928
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/compiler_util/expression_converter.mjs
|
|
5929
|
+
var _EventHandlerVars = class {
|
|
5575
5930
|
};
|
|
5576
|
-
EventHandlerVars
|
|
5931
|
+
var EventHandlerVars = _EventHandlerVars;
|
|
5932
|
+
(() => {
|
|
5933
|
+
_EventHandlerVars.event = variable("$event");
|
|
5934
|
+
})();
|
|
5577
5935
|
function convertActionBinding(localResolver, implicitReceiver, action, bindingId, baseSourceSpan, implicitReceiverAccesses, globals) {
|
|
5578
5936
|
if (!localResolver) {
|
|
5579
5937
|
localResolver = new DefaultLocalResolver(globals);
|
|
@@ -6188,7 +6546,7 @@ var BuiltinFunctionCall = class extends Call {
|
|
|
6188
6546
|
}
|
|
6189
6547
|
};
|
|
6190
6548
|
|
|
6191
|
-
// bazel-out/
|
|
6549
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/schema/dom_security_schema.mjs
|
|
6192
6550
|
var _SECURITY_SCHEMA;
|
|
6193
6551
|
function SECURITY_SCHEMA() {
|
|
6194
6552
|
if (!_SECURITY_SCHEMA) {
|
|
@@ -6246,7 +6604,7 @@ function isIframeSecuritySensitiveAttr(attrName) {
|
|
|
6246
6604
|
return IFRAME_SECURITY_SENSITIVE_ATTRS.has(attrName.toLowerCase());
|
|
6247
6605
|
}
|
|
6248
6606
|
|
|
6249
|
-
// bazel-out/
|
|
6607
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/shadow_css.mjs
|
|
6250
6608
|
var animationKeywords = /* @__PURE__ */ new Set([
|
|
6251
6609
|
"inherit",
|
|
6252
6610
|
"initial",
|
|
@@ -6706,7 +7064,7 @@ function repeatGroups(groups, multiples) {
|
|
|
6706
7064
|
}
|
|
6707
7065
|
}
|
|
6708
7066
|
|
|
6709
|
-
// bazel-out/
|
|
7067
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/view/style_parser.mjs
|
|
6710
7068
|
function parse(value) {
|
|
6711
7069
|
const styles = [];
|
|
6712
7070
|
let i = 0;
|
|
@@ -6715,7 +7073,6 @@ function parse(value) {
|
|
|
6715
7073
|
let valueStart = 0;
|
|
6716
7074
|
let propStart = 0;
|
|
6717
7075
|
let currentProp = null;
|
|
6718
|
-
let valueHasQuotes = false;
|
|
6719
7076
|
while (i < value.length) {
|
|
6720
7077
|
const token = value.charCodeAt(i++);
|
|
6721
7078
|
switch (token) {
|
|
@@ -6726,7 +7083,6 @@ function parse(value) {
|
|
|
6726
7083
|
parenDepth--;
|
|
6727
7084
|
break;
|
|
6728
7085
|
case 39:
|
|
6729
|
-
valueHasQuotes = valueHasQuotes || valueStart > 0;
|
|
6730
7086
|
if (quote === 0) {
|
|
6731
7087
|
quote = 39;
|
|
6732
7088
|
} else if (quote === 39 && value.charCodeAt(i - 1) !== 92) {
|
|
@@ -6734,7 +7090,6 @@ function parse(value) {
|
|
|
6734
7090
|
}
|
|
6735
7091
|
break;
|
|
6736
7092
|
case 34:
|
|
6737
|
-
valueHasQuotes = valueHasQuotes || valueStart > 0;
|
|
6738
7093
|
if (quote === 0) {
|
|
6739
7094
|
quote = 34;
|
|
6740
7095
|
} else if (quote === 34 && value.charCodeAt(i - 1) !== 92) {
|
|
@@ -6750,39 +7105,27 @@ function parse(value) {
|
|
|
6750
7105
|
case 59:
|
|
6751
7106
|
if (currentProp && valueStart > 0 && parenDepth === 0 && quote === 0) {
|
|
6752
7107
|
const styleVal = value.substring(valueStart, i - 1).trim();
|
|
6753
|
-
styles.push(currentProp,
|
|
7108
|
+
styles.push(currentProp, styleVal);
|
|
6754
7109
|
propStart = i;
|
|
6755
7110
|
valueStart = 0;
|
|
6756
7111
|
currentProp = null;
|
|
6757
|
-
valueHasQuotes = false;
|
|
6758
7112
|
}
|
|
6759
7113
|
break;
|
|
6760
7114
|
}
|
|
6761
7115
|
}
|
|
6762
7116
|
if (currentProp && valueStart) {
|
|
6763
7117
|
const styleVal = value.slice(valueStart).trim();
|
|
6764
|
-
styles.push(currentProp,
|
|
7118
|
+
styles.push(currentProp, styleVal);
|
|
6765
7119
|
}
|
|
6766
7120
|
return styles;
|
|
6767
7121
|
}
|
|
6768
|
-
function stripUnnecessaryQuotes(value) {
|
|
6769
|
-
const qS = value.charCodeAt(0);
|
|
6770
|
-
const qE = value.charCodeAt(value.length - 1);
|
|
6771
|
-
if (qS == qE && (qS == 39 || qS == 34)) {
|
|
6772
|
-
const tempValue = value.substring(1, value.length - 1);
|
|
6773
|
-
if (tempValue.indexOf("'") == -1 && tempValue.indexOf('"') == -1) {
|
|
6774
|
-
value = tempValue;
|
|
6775
|
-
}
|
|
6776
|
-
}
|
|
6777
|
-
return value;
|
|
6778
|
-
}
|
|
6779
7122
|
function hyphenate(value) {
|
|
6780
7123
|
return value.replace(/[a-z][A-Z]/g, (v) => {
|
|
6781
7124
|
return v.charAt(0) + "-" + v.charAt(1);
|
|
6782
7125
|
}).toLowerCase();
|
|
6783
7126
|
}
|
|
6784
7127
|
|
|
6785
|
-
// bazel-out/
|
|
7128
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/view/styling_builder.mjs
|
|
6786
7129
|
var IMPORTANT_FLAG = "!important";
|
|
6787
7130
|
var MIN_STYLING_BINDING_SLOTS_REQUIRED = 2;
|
|
6788
7131
|
var StylingBuilder = class {
|
|
@@ -7115,7 +7458,7 @@ function isEmptyExpression(ast) {
|
|
|
7115
7458
|
return ast instanceof EmptyExpr;
|
|
7116
7459
|
}
|
|
7117
7460
|
|
|
7118
|
-
// bazel-out/
|
|
7461
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/expression_parser/lexer.mjs
|
|
7119
7462
|
var TokenType;
|
|
7120
7463
|
(function(TokenType2) {
|
|
7121
7464
|
TokenType2[TokenType2["Character"] = 0] = "Character";
|
|
@@ -7476,7 +7819,7 @@ function parseIntAutoRadix(text) {
|
|
|
7476
7819
|
return result;
|
|
7477
7820
|
}
|
|
7478
7821
|
|
|
7479
|
-
// bazel-out/
|
|
7822
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/expression_parser/parser.mjs
|
|
7480
7823
|
var SplitInterpolation = class {
|
|
7481
7824
|
constructor(strings, expressions, offsets) {
|
|
7482
7825
|
this.strings = strings;
|
|
@@ -8132,7 +8475,7 @@ var _ParseAST = class {
|
|
|
8132
8475
|
const sourceSpan = this.sourceSpan(keyStart);
|
|
8133
8476
|
values.push(new PropertyRead(span, sourceSpan, sourceSpan, new ImplicitReceiver(span, sourceSpan), key));
|
|
8134
8477
|
}
|
|
8135
|
-
} while (this.consumeOptionalCharacter($COMMA));
|
|
8478
|
+
} while (this.consumeOptionalCharacter($COMMA) && !this.next.isCharacter($RBRACE));
|
|
8136
8479
|
this.rbracesExpected--;
|
|
8137
8480
|
this.expectCharacter($RBRACE);
|
|
8138
8481
|
}
|
|
@@ -8370,7 +8713,7 @@ function getIndexMapForOriginalTemplate(interpolatedTokens) {
|
|
|
8370
8713
|
return offsetMap;
|
|
8371
8714
|
}
|
|
8372
8715
|
|
|
8373
|
-
// bazel-out/
|
|
8716
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/ml_parser/ast.mjs
|
|
8374
8717
|
var NodeWithI18n = class {
|
|
8375
8718
|
constructor(sourceSpan, i18n) {
|
|
8376
8719
|
this.sourceSpan = sourceSpan;
|
|
@@ -8458,7 +8801,7 @@ function visitAll2(visitor, nodes, context = null) {
|
|
|
8458
8801
|
return result;
|
|
8459
8802
|
}
|
|
8460
8803
|
|
|
8461
|
-
// bazel-out/
|
|
8804
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/ml_parser/tags.mjs
|
|
8462
8805
|
var TagContentType;
|
|
8463
8806
|
(function(TagContentType2) {
|
|
8464
8807
|
TagContentType2[TagContentType2["RAW_TEXT"] = 0] = "RAW_TEXT";
|
|
@@ -8491,11 +8834,11 @@ function mergeNsAndName(prefix, localName) {
|
|
|
8491
8834
|
return prefix ? `:${prefix}:${localName}` : localName;
|
|
8492
8835
|
}
|
|
8493
8836
|
|
|
8494
|
-
// bazel-out/
|
|
8837
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/schema/element_schema_registry.mjs
|
|
8495
8838
|
var ElementSchemaRegistry = class {
|
|
8496
8839
|
};
|
|
8497
8840
|
|
|
8498
|
-
// bazel-out/
|
|
8841
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/schema/dom_element_schema_registry.mjs
|
|
8499
8842
|
var BOOLEAN = "boolean";
|
|
8500
8843
|
var NUMBER = "number";
|
|
8501
8844
|
var STRING = "string";
|
|
@@ -8848,7 +9191,7 @@ function _isPixelDimensionStyle(prop) {
|
|
|
8848
9191
|
}
|
|
8849
9192
|
}
|
|
8850
9193
|
|
|
8851
|
-
// bazel-out/
|
|
9194
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/ml_parser/html_tags.mjs
|
|
8852
9195
|
var HtmlTagDefinition = class {
|
|
8853
9196
|
constructor({ closedByChildren, implicitNamespacePrefix, contentType = TagContentType.PARSABLE_DATA, closedByParent = false, isVoid = false, ignoreFirstLf = false, preventNamespaceInheritance = false, canSelfClose = false } = {}) {
|
|
8854
9197
|
this.closedByChildren = {};
|
|
@@ -8966,7 +9309,7 @@ function getHtmlTagDefinition(tagName) {
|
|
|
8966
9309
|
return (_b = (_a = TAG_DEFINITIONS[tagName]) != null ? _a : TAG_DEFINITIONS[tagName.toLowerCase()]) != null ? _b : DEFAULT_TAG_DEFINITION;
|
|
8967
9310
|
}
|
|
8968
9311
|
|
|
8969
|
-
// bazel-out/
|
|
9312
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/ml_parser/entities.mjs
|
|
8970
9313
|
var NAMED_ENTITIES = {
|
|
8971
9314
|
"AElig": "\xC6",
|
|
8972
9315
|
"AMP": "&",
|
|
@@ -11097,7 +11440,7 @@ var NAMED_ENTITIES = {
|
|
|
11097
11440
|
var NGSP_UNICODE = "\uE500";
|
|
11098
11441
|
NAMED_ENTITIES["ngsp"] = NGSP_UNICODE;
|
|
11099
11442
|
|
|
11100
|
-
// bazel-out/
|
|
11443
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/ml_parser/lexer.mjs
|
|
11101
11444
|
var TokenError = class extends ParseError {
|
|
11102
11445
|
constructor(errorMsg, tokenType, span) {
|
|
11103
11446
|
super(span, errorMsg);
|
|
@@ -11932,7 +12275,7 @@ var CursorError = class {
|
|
|
11932
12275
|
}
|
|
11933
12276
|
};
|
|
11934
12277
|
|
|
11935
|
-
// bazel-out/
|
|
12278
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/ml_parser/parser.mjs
|
|
11936
12279
|
var TreeError = class extends ParseError {
|
|
11937
12280
|
static create(elementName, span, msg) {
|
|
11938
12281
|
return new TreeError(elementName, span, msg);
|
|
@@ -12259,7 +12602,7 @@ function decodeEntity(match, entity) {
|
|
|
12259
12602
|
return match;
|
|
12260
12603
|
}
|
|
12261
12604
|
|
|
12262
|
-
// bazel-out/
|
|
12605
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/ml_parser/html_parser.mjs
|
|
12263
12606
|
var HtmlParser = class extends Parser2 {
|
|
12264
12607
|
constructor() {
|
|
12265
12608
|
super(getHtmlTagDefinition);
|
|
@@ -12269,7 +12612,7 @@ var HtmlParser = class extends Parser2 {
|
|
|
12269
12612
|
}
|
|
12270
12613
|
};
|
|
12271
12614
|
|
|
12272
|
-
// bazel-out/
|
|
12615
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/ml_parser/html_whitespaces.mjs
|
|
12273
12616
|
var PRESERVE_WS_ATTR_NAME = "ngPreserveWhitespaces";
|
|
12274
12617
|
var SKIP_WS_TRIM_TAGS = /* @__PURE__ */ new Set(["pre", "template", "textarea", "script", "style"]);
|
|
12275
12618
|
var WS_CHARS = " \f\n\r \v\u1680\u180E\u2000-\u200A\u2028\u2029\u202F\u205F\u3000\uFEFF";
|
|
@@ -12329,7 +12672,7 @@ function visitAllWithSiblings(visitor, nodes) {
|
|
|
12329
12672
|
return result;
|
|
12330
12673
|
}
|
|
12331
12674
|
|
|
12332
|
-
// bazel-out/
|
|
12675
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/output/map_util.mjs
|
|
12333
12676
|
function mapLiteral(obj, quoted = false) {
|
|
12334
12677
|
return literalMap(Object.keys(obj).map((key) => ({
|
|
12335
12678
|
key,
|
|
@@ -12338,7 +12681,7 @@ function mapLiteral(obj, quoted = false) {
|
|
|
12338
12681
|
})));
|
|
12339
12682
|
}
|
|
12340
12683
|
|
|
12341
|
-
// bazel-out/
|
|
12684
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/schema/trusted_types_sinks.mjs
|
|
12342
12685
|
var TRUSTED_TYPES_SINKS = /* @__PURE__ */ new Set([
|
|
12343
12686
|
"iframe|srcdoc",
|
|
12344
12687
|
"*|innerhtml",
|
|
@@ -12353,7 +12696,7 @@ function isTrustedTypesSink(tagName, propName) {
|
|
|
12353
12696
|
return TRUSTED_TYPES_SINKS.has(tagName + "|" + propName) || TRUSTED_TYPES_SINKS.has("*|" + propName);
|
|
12354
12697
|
}
|
|
12355
12698
|
|
|
12356
|
-
// bazel-out/
|
|
12699
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/template_parser/binding_parser.mjs
|
|
12357
12700
|
var PROPERTY_PARTS_SEPARATOR = ".";
|
|
12358
12701
|
var ATTRIBUTE_PREFIX = "attr";
|
|
12359
12702
|
var CLASS_PREFIX = "class";
|
|
@@ -12673,7 +13016,7 @@ function moveParseSourceSpan(sourceSpan, absoluteSpan) {
|
|
|
12673
13016
|
return new ParseSourceSpan(sourceSpan.start.moveBy(startDiff), sourceSpan.end.moveBy(endDiff), sourceSpan.fullStart.moveBy(startDiff), sourceSpan.details);
|
|
12674
13017
|
}
|
|
12675
13018
|
|
|
12676
|
-
// bazel-out/
|
|
13019
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/style_url_resolver.mjs
|
|
12677
13020
|
function isStyleUrlResolvable(url) {
|
|
12678
13021
|
if (url == null || url.length === 0 || url[0] == "/")
|
|
12679
13022
|
return false;
|
|
@@ -12682,7 +13025,7 @@ function isStyleUrlResolvable(url) {
|
|
|
12682
13025
|
}
|
|
12683
13026
|
var URL_WITH_SCHEMA_REGEXP = /^([^:/?#]+):/;
|
|
12684
13027
|
|
|
12685
|
-
// bazel-out/
|
|
13028
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/template_parser/template_preparser.mjs
|
|
12686
13029
|
var NG_CONTENT_SELECT_ATTR = "select";
|
|
12687
13030
|
var LINK_ELEMENT = "link";
|
|
12688
13031
|
var LINK_STYLE_REL_ATTR = "rel";
|
|
@@ -12752,7 +13095,7 @@ function normalizeNgContentSelect(selectAttr) {
|
|
|
12752
13095
|
return selectAttr;
|
|
12753
13096
|
}
|
|
12754
13097
|
|
|
12755
|
-
// bazel-out/
|
|
13098
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/r3_template_transform.mjs
|
|
12756
13099
|
var BIND_NAME_REGEXP = /^(?:(bind-)|(let-)|(ref-|#)|(on-)|(bindon-)|(@))(.*)$/;
|
|
12757
13100
|
var KW_BIND_IDX = 1;
|
|
12758
13101
|
var KW_LET_IDX = 2;
|
|
@@ -13100,7 +13443,7 @@ function textContents(node) {
|
|
|
13100
13443
|
}
|
|
13101
13444
|
}
|
|
13102
13445
|
|
|
13103
|
-
// bazel-out/
|
|
13446
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/view/i18n/context.mjs
|
|
13104
13447
|
var TagType;
|
|
13105
13448
|
(function(TagType2) {
|
|
13106
13449
|
TagType2[TagType2["ELEMENT"] = 0] = "ELEMENT";
|
|
@@ -13235,7 +13578,7 @@ function serializePlaceholderValue(value) {
|
|
|
13235
13578
|
}
|
|
13236
13579
|
}
|
|
13237
13580
|
|
|
13238
|
-
// bazel-out/
|
|
13581
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/view/i18n/icu_serializer.mjs
|
|
13239
13582
|
var IcuSerializerVisitor = class {
|
|
13240
13583
|
visitText(text) {
|
|
13241
13584
|
return text.value;
|
|
@@ -13266,7 +13609,7 @@ function serializeIcuNode(icu) {
|
|
|
13266
13609
|
return icu.visit(serializer);
|
|
13267
13610
|
}
|
|
13268
13611
|
|
|
13269
|
-
// bazel-out/
|
|
13612
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/i18n/serializers/placeholder.mjs
|
|
13270
13613
|
var TAG_TO_PLACEHOLDER_NAMES = {
|
|
13271
13614
|
"A": "LINK",
|
|
13272
13615
|
"B": "BOLD_TEXT",
|
|
@@ -13360,7 +13703,7 @@ var PlaceholderRegistry = class {
|
|
|
13360
13703
|
}
|
|
13361
13704
|
};
|
|
13362
13705
|
|
|
13363
|
-
// bazel-out/
|
|
13706
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/i18n/i18n_parser.mjs
|
|
13364
13707
|
var _expParser = new Parser(new Lexer());
|
|
13365
13708
|
function createI18nMessageFactory(interpolationConfig) {
|
|
13366
13709
|
const visitor = new _I18nVisitor(_expParser, interpolationConfig);
|
|
@@ -13515,14 +13858,14 @@ function extractPlaceholderName(input) {
|
|
|
13515
13858
|
return input.split(_CUSTOM_PH_EXP)[2];
|
|
13516
13859
|
}
|
|
13517
13860
|
|
|
13518
|
-
// bazel-out/
|
|
13861
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/i18n/parse_util.mjs
|
|
13519
13862
|
var I18nError = class extends ParseError {
|
|
13520
13863
|
constructor(span, msg) {
|
|
13521
13864
|
super(span, msg);
|
|
13522
13865
|
}
|
|
13523
13866
|
};
|
|
13524
13867
|
|
|
13525
|
-
// bazel-out/
|
|
13868
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/view/i18n/meta.mjs
|
|
13526
13869
|
var setI18nRefs = (htmlNode, i18nNode) => {
|
|
13527
13870
|
if (htmlNode instanceof NodeWithI18n) {
|
|
13528
13871
|
if (i18nNode instanceof IcuPlaceholder && htmlNode.i18n instanceof Message) {
|
|
@@ -13539,11 +13882,11 @@ var I18nMetaVisitor = class {
|
|
|
13539
13882
|
this.enableI18nLegacyMessageIdFormat = enableI18nLegacyMessageIdFormat;
|
|
13540
13883
|
this.hasI18nMeta = false;
|
|
13541
13884
|
this._errors = [];
|
|
13542
|
-
this._createI18nMessage = createI18nMessageFactory(this.interpolationConfig);
|
|
13543
13885
|
}
|
|
13544
13886
|
_generateI18nMessage(nodes, meta = "", visitNodeFn) {
|
|
13545
13887
|
const { meaning, description, customId } = this._parseMetadata(meta);
|
|
13546
|
-
const
|
|
13888
|
+
const createI18nMessage = createI18nMessageFactory(this.interpolationConfig);
|
|
13889
|
+
const message = createI18nMessage(nodes, meaning, description, customId, visitNodeFn);
|
|
13547
13890
|
this._setMessageId(message, meta);
|
|
13548
13891
|
this._setLegacyIds(message, meta);
|
|
13549
13892
|
return message;
|
|
@@ -13671,7 +14014,7 @@ function i18nMetaToJSDoc(meta) {
|
|
|
13671
14014
|
return jsDocComment(tags);
|
|
13672
14015
|
}
|
|
13673
14016
|
|
|
13674
|
-
// bazel-out/
|
|
14017
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/view/i18n/get_msg_utils.mjs
|
|
13675
14018
|
var GOOG_GET_MSG = "goog.getMsg";
|
|
13676
14019
|
function createGoogleGetMsgStatements(variable2, message, closureVar, placeholderValues) {
|
|
13677
14020
|
const messageString = serializeI18nMessageForGetMsg(message);
|
|
@@ -13719,7 +14062,7 @@ function serializeI18nMessageForGetMsg(message) {
|
|
|
13719
14062
|
return message.nodes.map((node) => node.visit(serializerVisitor2, null)).join("");
|
|
13720
14063
|
}
|
|
13721
14064
|
|
|
13722
|
-
// bazel-out/
|
|
14065
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/view/i18n/localize_utils.mjs
|
|
13723
14066
|
function createLocalizeStatements(variable2, message, params) {
|
|
13724
14067
|
const { messageParts, placeHolders } = serializeI18nMessageForLocalize(message);
|
|
13725
14068
|
const sourceSpan = getSourceSpan(message);
|
|
@@ -13802,7 +14145,7 @@ function createEmptyMessagePart(location) {
|
|
|
13802
14145
|
return new LiteralPiece("", new ParseSourceSpan(location, location));
|
|
13803
14146
|
}
|
|
13804
14147
|
|
|
13805
|
-
// bazel-out/
|
|
14148
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/view/template.mjs
|
|
13806
14149
|
var NG_CONTENT_SELECT_ATTR2 = "select";
|
|
13807
14150
|
var NG_PROJECT_AS_ATTR_NAME = "ngProjectAs";
|
|
13808
14151
|
var EVENT_BINDING_SCOPE_GLOBALS = /* @__PURE__ */ new Set(["$event"]);
|
|
@@ -15104,7 +15447,7 @@ function createClosureModeGuard() {
|
|
|
15104
15447
|
return typeofExpr(variable(NG_I18N_CLOSURE_MODE)).notIdentical(literal("undefined", STRING_TYPE)).and(variable(NG_I18N_CLOSURE_MODE));
|
|
15105
15448
|
}
|
|
15106
15449
|
|
|
15107
|
-
// bazel-out/
|
|
15450
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/view/compiler.mjs
|
|
15108
15451
|
var ATTR_REGEX = /attr\.([^\]]+)/;
|
|
15109
15452
|
var COMPONENT_VARIABLE = "%COMP%";
|
|
15110
15453
|
var HOST_ATTR = `_nghost-${COMPONENT_VARIABLE}`;
|
|
@@ -15636,11 +15979,11 @@ function createHostDirectivesMappingArray(mapping) {
|
|
|
15636
15979
|
return elements.length > 0 ? literalArr(elements) : null;
|
|
15637
15980
|
}
|
|
15638
15981
|
|
|
15639
|
-
// bazel-out/
|
|
15982
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/resource_loader.mjs
|
|
15640
15983
|
var ResourceLoader = class {
|
|
15641
15984
|
};
|
|
15642
15985
|
|
|
15643
|
-
// bazel-out/
|
|
15986
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/jit_compiler_facade.mjs
|
|
15644
15987
|
var CompilerFacadeImpl = class {
|
|
15645
15988
|
constructor(jitEvaluator = new JitEvaluator()) {
|
|
15646
15989
|
this.jitEvaluator = jitEvaluator;
|
|
@@ -16153,10 +16496,10 @@ function publishFacade(global2) {
|
|
|
16153
16496
|
ng.\u0275compilerFacade = new CompilerFacadeImpl();
|
|
16154
16497
|
}
|
|
16155
16498
|
|
|
16156
|
-
// bazel-out/
|
|
16157
|
-
var VERSION2 = new Version("16.0.0-next.
|
|
16499
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/version.mjs
|
|
16500
|
+
var VERSION2 = new Version("16.0.0-next.6");
|
|
16158
16501
|
|
|
16159
|
-
// bazel-out/
|
|
16502
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/i18n/extractor_merger.mjs
|
|
16160
16503
|
var _I18N_ATTR = "i18n";
|
|
16161
16504
|
var _I18N_ATTR_PREFIX = "i18n-";
|
|
16162
16505
|
var _I18N_COMMENT_PREFIX_REGEXP = /^i18n:?/;
|
|
@@ -16460,7 +16803,7 @@ function _parseMessageMeta(i18n) {
|
|
|
16460
16803
|
return { meaning, description, id: id.trim() };
|
|
16461
16804
|
}
|
|
16462
16805
|
|
|
16463
|
-
// bazel-out/
|
|
16806
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/ml_parser/xml_tags.mjs
|
|
16464
16807
|
var XmlTagDefinition = class {
|
|
16465
16808
|
constructor() {
|
|
16466
16809
|
this.closedByParent = false;
|
|
@@ -16484,7 +16827,7 @@ function getXmlTagDefinition(tagName) {
|
|
|
16484
16827
|
return _TAG_DEFINITION;
|
|
16485
16828
|
}
|
|
16486
16829
|
|
|
16487
|
-
// bazel-out/
|
|
16830
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/ml_parser/xml_parser.mjs
|
|
16488
16831
|
var XmlParser = class extends Parser2 {
|
|
16489
16832
|
constructor() {
|
|
16490
16833
|
super(getXmlTagDefinition);
|
|
@@ -16494,7 +16837,7 @@ var XmlParser = class extends Parser2 {
|
|
|
16494
16837
|
}
|
|
16495
16838
|
};
|
|
16496
16839
|
|
|
16497
|
-
// bazel-out/
|
|
16840
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/i18n/serializers/xliff.mjs
|
|
16498
16841
|
var _VERSION = "1.2";
|
|
16499
16842
|
var _XMLNS = "urn:oasis:names:tc:xliff:document:1.2";
|
|
16500
16843
|
var _DEFAULT_SOURCE_LANG = "en";
|
|
@@ -16734,7 +17077,7 @@ function getCtypeForTag(tag) {
|
|
|
16734
17077
|
}
|
|
16735
17078
|
}
|
|
16736
17079
|
|
|
16737
|
-
// bazel-out/
|
|
17080
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/i18n/serializers/xliff2.mjs
|
|
16738
17081
|
var _VERSION2 = "2.0";
|
|
16739
17082
|
var _XMLNS2 = "urn:oasis:names:tc:xliff:document:2.0";
|
|
16740
17083
|
var _DEFAULT_SOURCE_LANG2 = "en";
|
|
@@ -17022,7 +17365,7 @@ function getTypeForTag(tag) {
|
|
|
17022
17365
|
}
|
|
17023
17366
|
}
|
|
17024
17367
|
|
|
17025
|
-
// bazel-out/
|
|
17368
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/i18n/message_bundle.mjs
|
|
17026
17369
|
var MessageBundle = class {
|
|
17027
17370
|
constructor(_htmlParser, _implicitTags, _implicitAttrs, _locale = null) {
|
|
17028
17371
|
this._htmlParser = _htmlParser;
|
|
@@ -17089,7 +17432,7 @@ var MapPlaceholderNames = class extends CloneVisitor {
|
|
|
17089
17432
|
}
|
|
17090
17433
|
};
|
|
17091
17434
|
|
|
17092
|
-
// bazel-out/
|
|
17435
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/partial/api.mjs
|
|
17093
17436
|
var FactoryTarget2;
|
|
17094
17437
|
(function(FactoryTarget3) {
|
|
17095
17438
|
FactoryTarget3[FactoryTarget3["Directive"] = 0] = "Directive";
|
|
@@ -17099,7 +17442,7 @@ var FactoryTarget2;
|
|
|
17099
17442
|
FactoryTarget3[FactoryTarget3["NgModule"] = 4] = "NgModule";
|
|
17100
17443
|
})(FactoryTarget2 || (FactoryTarget2 = {}));
|
|
17101
17444
|
|
|
17102
|
-
// bazel-out/
|
|
17445
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/view/t2_binder.mjs
|
|
17103
17446
|
var R3TargetBinder = class {
|
|
17104
17447
|
constructor(directiveMatcher) {
|
|
17105
17448
|
this.directiveMatcher = directiveMatcher;
|
|
@@ -17451,7 +17794,7 @@ function extractTemplateEntities(rootScope) {
|
|
|
17451
17794
|
return templateEntities;
|
|
17452
17795
|
}
|
|
17453
17796
|
|
|
17454
|
-
// bazel-out/
|
|
17797
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/r3_class_metadata_compiler.mjs
|
|
17455
17798
|
function compileClassMetadata(metadata) {
|
|
17456
17799
|
var _a, _b;
|
|
17457
17800
|
const fnCall = importExpr(Identifiers.setClassMetadata).callFn([
|
|
@@ -17464,12 +17807,12 @@ function compileClassMetadata(metadata) {
|
|
|
17464
17807
|
return iife.callFn([]);
|
|
17465
17808
|
}
|
|
17466
17809
|
|
|
17467
|
-
// bazel-out/
|
|
17810
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/partial/class_metadata.mjs
|
|
17468
17811
|
var MINIMUM_PARTIAL_LINKER_VERSION = "12.0.0";
|
|
17469
17812
|
function compileDeclareClassMetadata(metadata) {
|
|
17470
17813
|
const definitionMap = new DefinitionMap();
|
|
17471
17814
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION));
|
|
17472
|
-
definitionMap.set("version", literal("16.0.0-next.
|
|
17815
|
+
definitionMap.set("version", literal("16.0.0-next.6"));
|
|
17473
17816
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
17474
17817
|
definitionMap.set("type", metadata.type);
|
|
17475
17818
|
definitionMap.set("decorators", metadata.decorators);
|
|
@@ -17478,7 +17821,7 @@ function compileDeclareClassMetadata(metadata) {
|
|
|
17478
17821
|
return importExpr(Identifiers.declareClassMetadata).callFn([definitionMap.toLiteralMap()]);
|
|
17479
17822
|
}
|
|
17480
17823
|
|
|
17481
|
-
// bazel-out/
|
|
17824
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/partial/util.mjs
|
|
17482
17825
|
function toOptionalLiteralArray(values, mapper) {
|
|
17483
17826
|
if (values === null || values.length === 0) {
|
|
17484
17827
|
return null;
|
|
@@ -17526,7 +17869,7 @@ function compileDependency(dep) {
|
|
|
17526
17869
|
return depMeta.toLiteralMap();
|
|
17527
17870
|
}
|
|
17528
17871
|
|
|
17529
|
-
// bazel-out/
|
|
17872
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/partial/directive.mjs
|
|
17530
17873
|
var MINIMUM_PARTIAL_LINKER_VERSION2 = "14.0.0";
|
|
17531
17874
|
function compileDeclareDirectiveFromMetadata(meta) {
|
|
17532
17875
|
const definitionMap = createDirectiveDefinitionMap(meta);
|
|
@@ -17538,7 +17881,7 @@ function createDirectiveDefinitionMap(meta) {
|
|
|
17538
17881
|
var _a;
|
|
17539
17882
|
const definitionMap = new DefinitionMap();
|
|
17540
17883
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION2));
|
|
17541
|
-
definitionMap.set("version", literal("16.0.0-next.
|
|
17884
|
+
definitionMap.set("version", literal("16.0.0-next.6"));
|
|
17542
17885
|
definitionMap.set("type", meta.internalType);
|
|
17543
17886
|
if (meta.isStandalone) {
|
|
17544
17887
|
definitionMap.set("isStandalone", literal(meta.isStandalone));
|
|
@@ -17628,7 +17971,7 @@ function createHostDirectives(hostDirectives) {
|
|
|
17628
17971
|
return literalArr(expressions);
|
|
17629
17972
|
}
|
|
17630
17973
|
|
|
17631
|
-
// bazel-out/
|
|
17974
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/partial/component.mjs
|
|
17632
17975
|
function compileDeclareComponentFromMetadata(meta, template, additionalTemplateInfo) {
|
|
17633
17976
|
const definitionMap = createComponentDefinitionMap(meta, template, additionalTemplateInfo);
|
|
17634
17977
|
const expression = importExpr(Identifiers.declareComponent).callFn([definitionMap.toLiteralMap()]);
|
|
@@ -17715,12 +18058,12 @@ function compileUsedDependenciesMetadata(meta) {
|
|
|
17715
18058
|
});
|
|
17716
18059
|
}
|
|
17717
18060
|
|
|
17718
|
-
// bazel-out/
|
|
18061
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/partial/factory.mjs
|
|
17719
18062
|
var MINIMUM_PARTIAL_LINKER_VERSION3 = "12.0.0";
|
|
17720
18063
|
function compileDeclareFactoryFunction(meta) {
|
|
17721
18064
|
const definitionMap = new DefinitionMap();
|
|
17722
18065
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION3));
|
|
17723
|
-
definitionMap.set("version", literal("16.0.0-next.
|
|
18066
|
+
definitionMap.set("version", literal("16.0.0-next.6"));
|
|
17724
18067
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
17725
18068
|
definitionMap.set("type", meta.internalType);
|
|
17726
18069
|
definitionMap.set("deps", compileDependencies(meta.deps));
|
|
@@ -17732,7 +18075,7 @@ function compileDeclareFactoryFunction(meta) {
|
|
|
17732
18075
|
};
|
|
17733
18076
|
}
|
|
17734
18077
|
|
|
17735
|
-
// bazel-out/
|
|
18078
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/partial/injectable.mjs
|
|
17736
18079
|
var MINIMUM_PARTIAL_LINKER_VERSION4 = "12.0.0";
|
|
17737
18080
|
function compileDeclareInjectableFromMetadata(meta) {
|
|
17738
18081
|
const definitionMap = createInjectableDefinitionMap(meta);
|
|
@@ -17743,7 +18086,7 @@ function compileDeclareInjectableFromMetadata(meta) {
|
|
|
17743
18086
|
function createInjectableDefinitionMap(meta) {
|
|
17744
18087
|
const definitionMap = new DefinitionMap();
|
|
17745
18088
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION4));
|
|
17746
|
-
definitionMap.set("version", literal("16.0.0-next.
|
|
18089
|
+
definitionMap.set("version", literal("16.0.0-next.6"));
|
|
17747
18090
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
17748
18091
|
definitionMap.set("type", meta.internalType);
|
|
17749
18092
|
if (meta.providedIn !== void 0) {
|
|
@@ -17770,7 +18113,7 @@ function createInjectableDefinitionMap(meta) {
|
|
|
17770
18113
|
return definitionMap;
|
|
17771
18114
|
}
|
|
17772
18115
|
|
|
17773
|
-
// bazel-out/
|
|
18116
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/partial/injector.mjs
|
|
17774
18117
|
var MINIMUM_PARTIAL_LINKER_VERSION5 = "12.0.0";
|
|
17775
18118
|
function compileDeclareInjectorFromMetadata(meta) {
|
|
17776
18119
|
const definitionMap = createInjectorDefinitionMap(meta);
|
|
@@ -17781,7 +18124,7 @@ function compileDeclareInjectorFromMetadata(meta) {
|
|
|
17781
18124
|
function createInjectorDefinitionMap(meta) {
|
|
17782
18125
|
const definitionMap = new DefinitionMap();
|
|
17783
18126
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION5));
|
|
17784
|
-
definitionMap.set("version", literal("16.0.0-next.
|
|
18127
|
+
definitionMap.set("version", literal("16.0.0-next.6"));
|
|
17785
18128
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
17786
18129
|
definitionMap.set("type", meta.internalType);
|
|
17787
18130
|
definitionMap.set("providers", meta.providers);
|
|
@@ -17791,7 +18134,7 @@ function createInjectorDefinitionMap(meta) {
|
|
|
17791
18134
|
return definitionMap;
|
|
17792
18135
|
}
|
|
17793
18136
|
|
|
17794
|
-
// bazel-out/
|
|
18137
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/partial/ng_module.mjs
|
|
17795
18138
|
var MINIMUM_PARTIAL_LINKER_VERSION6 = "14.0.0";
|
|
17796
18139
|
function compileDeclareNgModuleFromMetadata(meta) {
|
|
17797
18140
|
const definitionMap = createNgModuleDefinitionMap(meta);
|
|
@@ -17802,7 +18145,7 @@ function compileDeclareNgModuleFromMetadata(meta) {
|
|
|
17802
18145
|
function createNgModuleDefinitionMap(meta) {
|
|
17803
18146
|
const definitionMap = new DefinitionMap();
|
|
17804
18147
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION6));
|
|
17805
|
-
definitionMap.set("version", literal("16.0.0-next.
|
|
18148
|
+
definitionMap.set("version", literal("16.0.0-next.6"));
|
|
17806
18149
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
17807
18150
|
definitionMap.set("type", meta.internalType);
|
|
17808
18151
|
if (meta.bootstrap.length > 0) {
|
|
@@ -17826,7 +18169,7 @@ function createNgModuleDefinitionMap(meta) {
|
|
|
17826
18169
|
return definitionMap;
|
|
17827
18170
|
}
|
|
17828
18171
|
|
|
17829
|
-
// bazel-out/
|
|
18172
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/partial/pipe.mjs
|
|
17830
18173
|
var MINIMUM_PARTIAL_LINKER_VERSION7 = "14.0.0";
|
|
17831
18174
|
function compileDeclarePipeFromMetadata(meta) {
|
|
17832
18175
|
const definitionMap = createPipeDefinitionMap(meta);
|
|
@@ -17837,7 +18180,7 @@ function compileDeclarePipeFromMetadata(meta) {
|
|
|
17837
18180
|
function createPipeDefinitionMap(meta) {
|
|
17838
18181
|
const definitionMap = new DefinitionMap();
|
|
17839
18182
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION7));
|
|
17840
|
-
definitionMap.set("version", literal("16.0.0-next.
|
|
18183
|
+
definitionMap.set("version", literal("16.0.0-next.6"));
|
|
17841
18184
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
17842
18185
|
definitionMap.set("type", meta.internalType);
|
|
17843
18186
|
if (meta.isStandalone) {
|
|
@@ -17850,13 +18193,13 @@ function createPipeDefinitionMap(meta) {
|
|
|
17850
18193
|
return definitionMap;
|
|
17851
18194
|
}
|
|
17852
18195
|
|
|
17853
|
-
// bazel-out/
|
|
18196
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/compiler.mjs
|
|
17854
18197
|
publishFacade(_global);
|
|
17855
18198
|
|
|
17856
|
-
// bazel-out/
|
|
17857
|
-
var VERSION3 = new Version("16.0.0-next.
|
|
18199
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/version.mjs
|
|
18200
|
+
var VERSION3 = new Version("16.0.0-next.6");
|
|
17858
18201
|
|
|
17859
|
-
// bazel-out/
|
|
18202
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/transformers/api.mjs
|
|
17860
18203
|
var EmitFlags;
|
|
17861
18204
|
(function(EmitFlags2) {
|
|
17862
18205
|
EmitFlags2[EmitFlags2["DTS"] = 1] = "DTS";
|
|
@@ -17868,13 +18211,13 @@ var EmitFlags;
|
|
|
17868
18211
|
EmitFlags2[EmitFlags2["All"] = 31] = "All";
|
|
17869
18212
|
})(EmitFlags || (EmitFlags = {}));
|
|
17870
18213
|
|
|
17871
|
-
// bazel-out/
|
|
18214
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/transformers/compiler_host.mjs
|
|
17872
18215
|
var import_typescript2 = __toESM(require("typescript"), 1);
|
|
17873
18216
|
|
|
17874
|
-
// bazel-out/
|
|
18217
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/program.mjs
|
|
17875
18218
|
var import_typescript94 = __toESM(require("typescript"), 1);
|
|
17876
18219
|
|
|
17877
|
-
// bazel-out/
|
|
18220
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/transformers/i18n.mjs
|
|
17878
18221
|
var path = __toESM(require("path"), 1);
|
|
17879
18222
|
function i18nGetExtension(formatName) {
|
|
17880
18223
|
const format = formatName.toLowerCase();
|
|
@@ -17924,10 +18267,10 @@ function getPathNormalizer(basePath) {
|
|
|
17924
18267
|
};
|
|
17925
18268
|
}
|
|
17926
18269
|
|
|
17927
|
-
// bazel-out/
|
|
18270
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/typescript_support.mjs
|
|
17928
18271
|
var import_typescript3 = __toESM(require("typescript"), 1);
|
|
17929
18272
|
|
|
17930
|
-
// bazel-out/
|
|
18273
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/version_helpers.mjs
|
|
17931
18274
|
function toNumbers(value) {
|
|
17932
18275
|
const suffixIndex = value.lastIndexOf("-");
|
|
17933
18276
|
return value.slice(0, suffixIndex === -1 ? value.length : suffixIndex).split(".").map((segment) => {
|
|
@@ -17962,7 +18305,7 @@ function compareVersions(v1, v2) {
|
|
|
17962
18305
|
return compareNumbers(toNumbers(v1), toNumbers(v2));
|
|
17963
18306
|
}
|
|
17964
18307
|
|
|
17965
|
-
// bazel-out/
|
|
18308
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/typescript_support.mjs
|
|
17966
18309
|
var MIN_TS_VERSION = "4.9.3";
|
|
17967
18310
|
var MAX_TS_VERSION = "5.1.0";
|
|
17968
18311
|
var tsVersion = import_typescript3.default.version;
|
|
@@ -17975,13 +18318,13 @@ function verifySupportedTypeScriptVersion() {
|
|
|
17975
18318
|
checkVersion(tsVersion, MIN_TS_VERSION, MAX_TS_VERSION);
|
|
17976
18319
|
}
|
|
17977
18320
|
|
|
17978
|
-
// bazel-out/
|
|
18321
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/compiler.mjs
|
|
17979
18322
|
var import_typescript90 = __toESM(require("typescript"), 1);
|
|
17980
18323
|
|
|
17981
|
-
// bazel-out/
|
|
18324
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/di.mjs
|
|
17982
18325
|
var import_typescript19 = __toESM(require("typescript"), 1);
|
|
17983
18326
|
|
|
17984
|
-
// bazel-out/
|
|
18327
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error_code.mjs
|
|
17985
18328
|
var ErrorCode;
|
|
17986
18329
|
(function(ErrorCode2) {
|
|
17987
18330
|
ErrorCode2[ErrorCode2["DECORATOR_ARG_NOT_LITERAL"] = 1001] = "DECORATOR_ARG_NOT_LITERAL";
|
|
@@ -18046,6 +18389,7 @@ var ErrorCode;
|
|
|
18046
18389
|
ErrorCode2[ErrorCode2["MISSING_NGFOROF_LET"] = 8105] = "MISSING_NGFOROF_LET";
|
|
18047
18390
|
ErrorCode2[ErrorCode2["SUFFIX_NOT_SUPPORTED"] = 8106] = "SUFFIX_NOT_SUPPORTED";
|
|
18048
18391
|
ErrorCode2[ErrorCode2["OPTIONAL_CHAIN_NOT_NULLABLE"] = 8107] = "OPTIONAL_CHAIN_NOT_NULLABLE";
|
|
18392
|
+
ErrorCode2[ErrorCode2["SKIP_HYDRATION_NOT_STATIC"] = 8108] = "SKIP_HYDRATION_NOT_STATIC";
|
|
18049
18393
|
ErrorCode2[ErrorCode2["INLINE_TCB_REQUIRED"] = 8900] = "INLINE_TCB_REQUIRED";
|
|
18050
18394
|
ErrorCode2[ErrorCode2["INLINE_TYPE_CTOR_REQUIRED"] = 8901] = "INLINE_TYPE_CTOR_REQUIRED";
|
|
18051
18395
|
ErrorCode2[ErrorCode2["INJECTABLE_DUPLICATE_PROV"] = 9001] = "INJECTABLE_DUPLICATE_PROV";
|
|
@@ -18053,7 +18397,7 @@ var ErrorCode;
|
|
|
18053
18397
|
ErrorCode2[ErrorCode2["SUGGEST_SUBOPTIMAL_TYPE_INFERENCE"] = 10002] = "SUGGEST_SUBOPTIMAL_TYPE_INFERENCE";
|
|
18054
18398
|
})(ErrorCode || (ErrorCode = {}));
|
|
18055
18399
|
|
|
18056
|
-
// bazel-out/
|
|
18400
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/docs.mjs
|
|
18057
18401
|
var COMPILER_ERRORS_WITH_GUIDES = /* @__PURE__ */ new Set([
|
|
18058
18402
|
ErrorCode.DECORATOR_ARG_NOT_LITERAL,
|
|
18059
18403
|
ErrorCode.IMPORT_CYCLE_DETECTED,
|
|
@@ -18065,15 +18409,15 @@ var COMPILER_ERRORS_WITH_GUIDES = /* @__PURE__ */ new Set([
|
|
|
18065
18409
|
ErrorCode.WARN_NGMODULE_ID_UNNECESSARY
|
|
18066
18410
|
]);
|
|
18067
18411
|
|
|
18068
|
-
// bazel-out/
|
|
18412
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error.mjs
|
|
18069
18413
|
var import_typescript4 = __toESM(require("typescript"), 1);
|
|
18070
18414
|
|
|
18071
|
-
// bazel-out/
|
|
18415
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/util.mjs
|
|
18072
18416
|
function ngErrorCode(code) {
|
|
18073
18417
|
return parseInt("-99" + code);
|
|
18074
18418
|
}
|
|
18075
18419
|
|
|
18076
|
-
// bazel-out/
|
|
18420
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error.mjs
|
|
18077
18421
|
var FatalDiagnosticError = class {
|
|
18078
18422
|
constructor(code, node, message, relatedInformation) {
|
|
18079
18423
|
this.code = code;
|
|
@@ -18129,10 +18473,10 @@ function addDiagnosticChain(messageText, add) {
|
|
|
18129
18473
|
return messageText;
|
|
18130
18474
|
}
|
|
18131
18475
|
|
|
18132
|
-
// bazel-out/
|
|
18476
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error_details_base_url.mjs
|
|
18133
18477
|
var ERROR_DETAILS_PAGE_BASE_URL = "https://angular.io/errors";
|
|
18134
18478
|
|
|
18135
|
-
// bazel-out/
|
|
18479
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/extended_template_diagnostic_name.mjs
|
|
18136
18480
|
var ExtendedTemplateDiagnosticName;
|
|
18137
18481
|
(function(ExtendedTemplateDiagnosticName2) {
|
|
18138
18482
|
ExtendedTemplateDiagnosticName2["INVALID_BANANA_IN_BOX"] = "invalidBananaInBox";
|
|
@@ -18142,9 +18486,10 @@ var ExtendedTemplateDiagnosticName;
|
|
|
18142
18486
|
ExtendedTemplateDiagnosticName2["TEXT_ATTRIBUTE_NOT_BINDING"] = "textAttributeNotBinding";
|
|
18143
18487
|
ExtendedTemplateDiagnosticName2["MISSING_NGFOROF_LET"] = "missingNgForOfLet";
|
|
18144
18488
|
ExtendedTemplateDiagnosticName2["SUFFIX_NOT_SUPPORTED"] = "suffixNotSupported";
|
|
18489
|
+
ExtendedTemplateDiagnosticName2["SKIP_HYDRATION_NOT_STATIC"] = "skipHydrationNotStatic";
|
|
18145
18490
|
})(ExtendedTemplateDiagnosticName || (ExtendedTemplateDiagnosticName = {}));
|
|
18146
18491
|
|
|
18147
|
-
// bazel-out/
|
|
18492
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/host.mjs
|
|
18148
18493
|
var import_typescript5 = __toESM(require("typescript"), 1);
|
|
18149
18494
|
var Decorator = {
|
|
18150
18495
|
nodeForError: (decorator) => {
|
|
@@ -18179,7 +18524,7 @@ function isConcreteDeclaration(decl) {
|
|
|
18179
18524
|
return decl.kind === 0;
|
|
18180
18525
|
}
|
|
18181
18526
|
|
|
18182
|
-
// bazel-out/
|
|
18527
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/type_to_value.mjs
|
|
18183
18528
|
var import_typescript6 = __toESM(require("typescript"), 1);
|
|
18184
18529
|
function typeToValue(typeNode, checker) {
|
|
18185
18530
|
if (typeNode === null) {
|
|
@@ -18345,10 +18690,10 @@ function extractModuleName(node) {
|
|
|
18345
18690
|
return node.moduleSpecifier.text;
|
|
18346
18691
|
}
|
|
18347
18692
|
|
|
18348
|
-
// bazel-out/
|
|
18693
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/typescript.mjs
|
|
18349
18694
|
var import_typescript8 = __toESM(require("typescript"), 1);
|
|
18350
18695
|
|
|
18351
|
-
// bazel-out/
|
|
18696
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/util.mjs
|
|
18352
18697
|
var import_typescript7 = __toESM(require("typescript"), 1);
|
|
18353
18698
|
function isNamedClassDeclaration(node) {
|
|
18354
18699
|
return import_typescript7.default.isClassDeclaration(node) && isIdentifier(node.name);
|
|
@@ -18357,7 +18702,7 @@ function isIdentifier(node) {
|
|
|
18357
18702
|
return node !== void 0 && import_typescript7.default.isIdentifier(node);
|
|
18358
18703
|
}
|
|
18359
18704
|
|
|
18360
|
-
// bazel-out/
|
|
18705
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/typescript.mjs
|
|
18361
18706
|
var TypeScriptReflectionHost = class {
|
|
18362
18707
|
constructor(checker) {
|
|
18363
18708
|
this.checker = checker;
|
|
@@ -18793,13 +19138,13 @@ function getExportedName(decl, originalId) {
|
|
|
18793
19138
|
}
|
|
18794
19139
|
var LocalExportedDeclarations = Symbol("LocalExportedDeclarations");
|
|
18795
19140
|
|
|
18796
|
-
// bazel-out/
|
|
19141
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/util.mjs
|
|
18797
19142
|
var import_typescript18 = __toESM(require("typescript"), 1);
|
|
18798
19143
|
|
|
18799
|
-
// bazel-out/
|
|
19144
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/emitter.mjs
|
|
18800
19145
|
var import_typescript12 = __toESM(require("typescript"), 1);
|
|
18801
19146
|
|
|
18802
|
-
// bazel-out/
|
|
19147
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/typescript.mjs
|
|
18803
19148
|
var import_typescript10 = __toESM(require("typescript"), 1);
|
|
18804
19149
|
var TS = /\.tsx?$/i;
|
|
18805
19150
|
var D_TS = /\.d\.ts$/i;
|
|
@@ -18900,7 +19245,7 @@ function toUnredirectedSourceFile(sf) {
|
|
|
18900
19245
|
return redirectInfo.unredirected;
|
|
18901
19246
|
}
|
|
18902
19247
|
|
|
18903
|
-
// bazel-out/
|
|
19248
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/find_export.mjs
|
|
18904
19249
|
function findExportedNameOfNode(target, file, reflector) {
|
|
18905
19250
|
const exports = reflector.getExportsOfModule(file);
|
|
18906
19251
|
if (exports === null) {
|
|
@@ -18920,7 +19265,7 @@ function findExportedNameOfNode(target, file, reflector) {
|
|
|
18920
19265
|
return foundExportName;
|
|
18921
19266
|
}
|
|
18922
19267
|
|
|
18923
|
-
// bazel-out/
|
|
19268
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/emitter.mjs
|
|
18924
19269
|
var ImportFlags;
|
|
18925
19270
|
(function(ImportFlags2) {
|
|
18926
19271
|
ImportFlags2[ImportFlags2["None"] = 0] = "None";
|
|
@@ -19136,7 +19481,7 @@ var UnifiedModulesStrategy = class {
|
|
|
19136
19481
|
}
|
|
19137
19482
|
};
|
|
19138
19483
|
|
|
19139
|
-
// bazel-out/
|
|
19484
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/alias.mjs
|
|
19140
19485
|
var CHARS_TO_ESCAPE = /[^a-zA-Z0-9/_]/g;
|
|
19141
19486
|
var UnifiedModulesAliasingHost = class {
|
|
19142
19487
|
constructor(unifiedModulesHost) {
|
|
@@ -19203,7 +19548,7 @@ var AliasStrategy = class {
|
|
|
19203
19548
|
}
|
|
19204
19549
|
};
|
|
19205
19550
|
|
|
19206
|
-
// bazel-out/
|
|
19551
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/path.mjs
|
|
19207
19552
|
function relativePathBetween(from, to) {
|
|
19208
19553
|
const relativePath = stripExtension(relative(dirname(resolve(from)), resolve(to)));
|
|
19209
19554
|
return relativePath !== "" ? toRelativeImport(relativePath) : null;
|
|
@@ -19212,7 +19557,7 @@ function normalizeSeparators2(path3) {
|
|
|
19212
19557
|
return path3.replace(/\\/g, "/");
|
|
19213
19558
|
}
|
|
19214
19559
|
|
|
19215
|
-
// bazel-out/
|
|
19560
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/core.mjs
|
|
19216
19561
|
var NoopImportRewriter = class {
|
|
19217
19562
|
shouldImportSymbol(symbol, specifier) {
|
|
19218
19563
|
return true;
|
|
@@ -19270,7 +19615,7 @@ function validateAndRewriteCoreSymbol(name) {
|
|
|
19270
19615
|
return CORE_SUPPORTED_SYMBOLS.get(name);
|
|
19271
19616
|
}
|
|
19272
19617
|
|
|
19273
|
-
// bazel-out/
|
|
19618
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/patch_alias_reference_resolution.mjs
|
|
19274
19619
|
var import_typescript14 = __toESM(require("typescript"), 1);
|
|
19275
19620
|
var patchedReferencedAliasesSymbol = Symbol("patchedReferencedAliases");
|
|
19276
19621
|
function loadIsReferencedAliasDeclarationPatch(context) {
|
|
@@ -19305,7 +19650,7 @@ function throwIncompatibleTransformationContextError() {
|
|
|
19305
19650
|
throw Error("Angular compiler is incompatible with this version of the TypeScript compiler.\n\nIf you recently updated TypeScript and this issue surfaces now, consider downgrading.\n\nPlease report an issue on the Angular repositories when this issue surfaces and you are using a supposedly compatible TypeScript version.");
|
|
19306
19651
|
}
|
|
19307
19652
|
|
|
19308
|
-
// bazel-out/
|
|
19653
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/default.mjs
|
|
19309
19654
|
var DefaultImportDeclaration = Symbol("DefaultImportDeclaration");
|
|
19310
19655
|
function attachDefaultImportDeclaration(expr, importDecl) {
|
|
19311
19656
|
expr[DefaultImportDeclaration] = importDecl;
|
|
@@ -19346,7 +19691,7 @@ var DefaultImportTracker = class {
|
|
|
19346
19691
|
}
|
|
19347
19692
|
};
|
|
19348
19693
|
|
|
19349
|
-
// bazel-out/
|
|
19694
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/references.mjs
|
|
19350
19695
|
var Reference2 = class {
|
|
19351
19696
|
constructor(node, bestGuessOwningModule = null) {
|
|
19352
19697
|
this.node = node;
|
|
@@ -19409,7 +19754,7 @@ var Reference2 = class {
|
|
|
19409
19754
|
}
|
|
19410
19755
|
};
|
|
19411
19756
|
|
|
19412
|
-
// bazel-out/
|
|
19757
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/resolver.mjs
|
|
19413
19758
|
var ModuleResolver = class {
|
|
19414
19759
|
constructor(program, compilerOptions, host, moduleResolutionCache) {
|
|
19415
19760
|
this.program = program;
|
|
@@ -19426,7 +19771,7 @@ var ModuleResolver = class {
|
|
|
19426
19771
|
}
|
|
19427
19772
|
};
|
|
19428
19773
|
|
|
19429
|
-
// bazel-out/
|
|
19774
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/util.mjs
|
|
19430
19775
|
function valueReferenceToExpression(valueRef) {
|
|
19431
19776
|
if (valueRef.kind === 2) {
|
|
19432
19777
|
return null;
|
|
@@ -19663,7 +20008,7 @@ function isAbstractClassDeclaration(clazz) {
|
|
|
19663
20008
|
return import_typescript18.default.canHaveModifiers(clazz) && clazz.modifiers !== void 0 ? clazz.modifiers.some((mod) => mod.kind === import_typescript18.default.SyntaxKind.AbstractKeyword) : false;
|
|
19664
20009
|
}
|
|
19665
20010
|
|
|
19666
|
-
// bazel-out/
|
|
20011
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/di.mjs
|
|
19667
20012
|
function getConstructorDependencies(clazz, reflector, isCore) {
|
|
19668
20013
|
const deps = [];
|
|
19669
20014
|
const errors = [];
|
|
@@ -19805,10 +20150,10 @@ function createUnsuitableInjectionTokenError(clazz, error2) {
|
|
|
19805
20150
|
return new FatalDiagnosticError(ErrorCode.PARAM_MISSING_TOKEN, param.nameNode, chain, hints);
|
|
19806
20151
|
}
|
|
19807
20152
|
|
|
19808
|
-
// bazel-out/
|
|
20153
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/diagnostics.mjs
|
|
19809
20154
|
var import_typescript27 = __toESM(require("typescript"), 1);
|
|
19810
20155
|
|
|
19811
|
-
// bazel-out/
|
|
20156
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/api.mjs
|
|
19812
20157
|
var MetaKind;
|
|
19813
20158
|
(function(MetaKind2) {
|
|
19814
20159
|
MetaKind2[MetaKind2["Directive"] = 0] = "Directive";
|
|
@@ -19821,10 +20166,10 @@ var MatchSource;
|
|
|
19821
20166
|
MatchSource2[MatchSource2["HostDirective"] = 1] = "HostDirective";
|
|
19822
20167
|
})(MatchSource || (MatchSource = {}));
|
|
19823
20168
|
|
|
19824
|
-
// bazel-out/
|
|
20169
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/dts.mjs
|
|
19825
20170
|
var import_typescript22 = __toESM(require("typescript"), 1);
|
|
19826
20171
|
|
|
19827
|
-
// bazel-out/
|
|
20172
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/property_mapping.mjs
|
|
19828
20173
|
var ClassPropertyMapping = class {
|
|
19829
20174
|
constructor(forwardMap) {
|
|
19830
20175
|
this.forwardMap = forwardMap;
|
|
@@ -19902,7 +20247,7 @@ function reverseMapFromForwardMap(forwardMap) {
|
|
|
19902
20247
|
return reverseMap;
|
|
19903
20248
|
}
|
|
19904
20249
|
|
|
19905
|
-
// bazel-out/
|
|
20250
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/util.mjs
|
|
19906
20251
|
var import_typescript20 = __toESM(require("typescript"), 1);
|
|
19907
20252
|
function extractReferencesFromType(checker, def, bestGuessOwningModule) {
|
|
19908
20253
|
if (!import_typescript20.default.isTupleTypeNode(def)) {
|
|
@@ -20084,7 +20429,7 @@ function hasInjectableFields(clazz, host) {
|
|
|
20084
20429
|
return members.some(({ isStatic, name }) => isStatic && (name === "\u0275prov" || name === "\u0275fac"));
|
|
20085
20430
|
}
|
|
20086
20431
|
|
|
20087
|
-
// bazel-out/
|
|
20432
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/dts.mjs
|
|
20088
20433
|
var DtsMetadataReader = class {
|
|
20089
20434
|
constructor(checker, reflector) {
|
|
20090
20435
|
this.checker = checker;
|
|
@@ -20252,7 +20597,7 @@ function readHostDirectivesType(checker, type, bestGuessOwningModule) {
|
|
|
20252
20597
|
return result.length > 0 ? result : null;
|
|
20253
20598
|
}
|
|
20254
20599
|
|
|
20255
|
-
// bazel-out/
|
|
20600
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/inheritance.mjs
|
|
20256
20601
|
function flattenInheritedDirectiveMetadata(reader, dir) {
|
|
20257
20602
|
const topMeta = reader.getDirectiveMetadata(dir);
|
|
20258
20603
|
if (topMeta === null) {
|
|
@@ -20309,7 +20654,7 @@ function flattenInheritedDirectiveMetadata(reader, dir) {
|
|
|
20309
20654
|
});
|
|
20310
20655
|
}
|
|
20311
20656
|
|
|
20312
|
-
// bazel-out/
|
|
20657
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/registry.mjs
|
|
20313
20658
|
var LocalMetadataRegistry = class {
|
|
20314
20659
|
constructor() {
|
|
20315
20660
|
this.directives = /* @__PURE__ */ new Map();
|
|
@@ -20366,7 +20711,7 @@ var CompoundMetadataRegistry = class {
|
|
|
20366
20711
|
}
|
|
20367
20712
|
};
|
|
20368
20713
|
|
|
20369
|
-
// bazel-out/
|
|
20714
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/resource_registry.mjs
|
|
20370
20715
|
var ResourceRegistry = class {
|
|
20371
20716
|
constructor() {
|
|
20372
20717
|
this.externalTemplateToComponentsMap = /* @__PURE__ */ new Map();
|
|
@@ -20431,7 +20776,7 @@ var ResourceRegistry = class {
|
|
|
20431
20776
|
}
|
|
20432
20777
|
};
|
|
20433
20778
|
|
|
20434
|
-
// bazel-out/
|
|
20779
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/host_directives_resolver.mjs
|
|
20435
20780
|
var EMPTY_ARRAY = [];
|
|
20436
20781
|
var HostDirectivesResolver = class {
|
|
20437
20782
|
constructor(metaReader) {
|
|
@@ -20491,10 +20836,10 @@ function resolveOutput(bindingName) {
|
|
|
20491
20836
|
return bindingName;
|
|
20492
20837
|
}
|
|
20493
20838
|
|
|
20494
|
-
// bazel-out/
|
|
20839
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/diagnostics.mjs
|
|
20495
20840
|
var import_typescript24 = __toESM(require("typescript"), 1);
|
|
20496
20841
|
|
|
20497
|
-
// bazel-out/
|
|
20842
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/dynamic.mjs
|
|
20498
20843
|
var DynamicValue = class {
|
|
20499
20844
|
constructor(node, reason, code) {
|
|
20500
20845
|
this.node = node;
|
|
@@ -20584,7 +20929,7 @@ var DynamicValue = class {
|
|
|
20584
20929
|
}
|
|
20585
20930
|
};
|
|
20586
20931
|
|
|
20587
|
-
// bazel-out/
|
|
20932
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/result.mjs
|
|
20588
20933
|
var ResolvedModule = class {
|
|
20589
20934
|
constructor(exports, evaluate) {
|
|
20590
20935
|
this.exports = exports;
|
|
@@ -20614,7 +20959,7 @@ var EnumValue = class {
|
|
|
20614
20959
|
var KnownFn = class {
|
|
20615
20960
|
};
|
|
20616
20961
|
|
|
20617
|
-
// bazel-out/
|
|
20962
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/diagnostics.mjs
|
|
20618
20963
|
function describeResolvedType(value, maxDepth = 1) {
|
|
20619
20964
|
var _a, _b;
|
|
20620
20965
|
if (value === null) {
|
|
@@ -20743,10 +21088,10 @@ function getContainerNode(node) {
|
|
|
20743
21088
|
return node.getSourceFile();
|
|
20744
21089
|
}
|
|
20745
21090
|
|
|
20746
|
-
// bazel-out/
|
|
21091
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interpreter.mjs
|
|
20747
21092
|
var import_typescript25 = __toESM(require("typescript"), 1);
|
|
20748
21093
|
|
|
20749
|
-
// bazel-out/
|
|
21094
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/builtin.mjs
|
|
20750
21095
|
var ArraySliceBuiltinFn = class extends KnownFn {
|
|
20751
21096
|
constructor(lhs) {
|
|
20752
21097
|
super();
|
|
@@ -20817,7 +21162,7 @@ var ObjectAssignBuiltinFn = class extends KnownFn {
|
|
|
20817
21162
|
}
|
|
20818
21163
|
};
|
|
20819
21164
|
|
|
20820
|
-
// bazel-out/
|
|
21165
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/ts_helpers.mjs
|
|
20821
21166
|
var AssignHelperFn = class extends ObjectAssignBuiltinFn {
|
|
20822
21167
|
};
|
|
20823
21168
|
var SpreadHelperFn = class extends KnownFn {
|
|
@@ -20870,7 +21215,7 @@ var ReadHelperFn = class extends KnownFn {
|
|
|
20870
21215
|
}
|
|
20871
21216
|
};
|
|
20872
21217
|
|
|
20873
|
-
// bazel-out/
|
|
21218
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/known_declaration.mjs
|
|
20874
21219
|
var jsGlobalObjectValue = /* @__PURE__ */ new Map([["assign", new ObjectAssignBuiltinFn()]]);
|
|
20875
21220
|
var assignTsHelperFn = new AssignHelperFn();
|
|
20876
21221
|
var spreadTsHelperFn = new SpreadHelperFn();
|
|
@@ -20894,14 +21239,14 @@ function resolveKnownDeclaration(decl) {
|
|
|
20894
21239
|
}
|
|
20895
21240
|
}
|
|
20896
21241
|
|
|
20897
|
-
// bazel-out/
|
|
21242
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/synthetic.mjs
|
|
20898
21243
|
var SyntheticValue = class {
|
|
20899
21244
|
constructor(value) {
|
|
20900
21245
|
this.value = value;
|
|
20901
21246
|
}
|
|
20902
21247
|
};
|
|
20903
21248
|
|
|
20904
|
-
// bazel-out/
|
|
21249
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interpreter.mjs
|
|
20905
21250
|
function literalBinaryOp(op) {
|
|
20906
21251
|
return { op, literal: true };
|
|
20907
21252
|
}
|
|
@@ -21499,7 +21844,7 @@ function owningModule(context, override = null) {
|
|
|
21499
21844
|
}
|
|
21500
21845
|
}
|
|
21501
21846
|
|
|
21502
|
-
// bazel-out/
|
|
21847
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interface.mjs
|
|
21503
21848
|
var PartialEvaluator = class {
|
|
21504
21849
|
constructor(host, checker, dependencyTracker) {
|
|
21505
21850
|
this.host = host;
|
|
@@ -21519,7 +21864,7 @@ var PartialEvaluator = class {
|
|
|
21519
21864
|
}
|
|
21520
21865
|
};
|
|
21521
21866
|
|
|
21522
|
-
// bazel-out/
|
|
21867
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/diagnostics.mjs
|
|
21523
21868
|
function makeDuplicateDeclarationError(node, data, kind) {
|
|
21524
21869
|
const context = [];
|
|
21525
21870
|
for (const decl of data) {
|
|
@@ -21715,7 +22060,7 @@ function getInheritedUndecoratedCtorDiagnostic(node, baseClass, kind) {
|
|
|
21715
22060
|
return makeDiagnostic(ErrorCode.DIRECTIVE_INHERITS_UNDECORATED_CTOR, node.name, `The ${kind.toLowerCase()} ${node.name.text} inherits its constructor from ${baseClassName}, but the latter does not have an Angular decorator of its own. Dependency injection will not be able to resolve the parameters of ${baseClassName}'s constructor. Either add a @${baseNeedsDecorator} decorator to ${baseClassName}, or add an explicit constructor to ${node.name.text}.`);
|
|
21716
22061
|
}
|
|
21717
22062
|
|
|
21718
|
-
// bazel-out/
|
|
22063
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/evaluation.mjs
|
|
21719
22064
|
var import_typescript29 = __toESM(require("typescript"), 1);
|
|
21720
22065
|
function resolveEnumValue(evaluator, metadata, field, enumSymbolName) {
|
|
21721
22066
|
let resolved = null;
|
|
@@ -21748,7 +22093,7 @@ function resolveLiteral(decorator, literalCache) {
|
|
|
21748
22093
|
return meta;
|
|
21749
22094
|
}
|
|
21750
22095
|
|
|
21751
|
-
// bazel-out/
|
|
22096
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/factory.mjs
|
|
21752
22097
|
function compileNgFactoryDefField(metadata) {
|
|
21753
22098
|
const res = compileFactoryFunction(metadata);
|
|
21754
22099
|
return { name: "\u0275fac", initializer: res.expression, statements: res.statements, type: res.type };
|
|
@@ -21758,7 +22103,7 @@ function compileDeclareFactory(metadata) {
|
|
|
21758
22103
|
return { name: "\u0275fac", initializer: res.expression, statements: res.statements, type: res.type };
|
|
21759
22104
|
}
|
|
21760
22105
|
|
|
21761
|
-
// bazel-out/
|
|
22106
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/injectable_registry.mjs
|
|
21762
22107
|
var InjectableClassRegistry = class {
|
|
21763
22108
|
constructor(host, isCore) {
|
|
21764
22109
|
this.host = host;
|
|
@@ -21784,7 +22129,7 @@ var InjectableClassRegistry = class {
|
|
|
21784
22129
|
}
|
|
21785
22130
|
};
|
|
21786
22131
|
|
|
21787
|
-
// bazel-out/
|
|
22132
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/metadata.mjs
|
|
21788
22133
|
var import_typescript30 = __toESM(require("typescript"), 1);
|
|
21789
22134
|
function extractClassMetadata(clazz, reflection, isCore, annotateForClosureCompiler, angularDecoratorTransform = (dec) => dec) {
|
|
21790
22135
|
if (!reflection.isClass(clazz)) {
|
|
@@ -21870,13 +22215,13 @@ function removeIdentifierReferences(node, name) {
|
|
|
21870
22215
|
return result.transformed[0];
|
|
21871
22216
|
}
|
|
21872
22217
|
|
|
21873
|
-
// bazel-out/
|
|
22218
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/references_registry.mjs
|
|
21874
22219
|
var NoopReferencesRegistry = class {
|
|
21875
22220
|
add(source, ...references) {
|
|
21876
22221
|
}
|
|
21877
22222
|
};
|
|
21878
22223
|
|
|
21879
|
-
// bazel-out/
|
|
22224
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/schema.mjs
|
|
21880
22225
|
function extractSchemas(rawExpr, evaluator, context) {
|
|
21881
22226
|
const schemas = [];
|
|
21882
22227
|
const result = evaluator.evaluate(rawExpr);
|
|
@@ -21905,10 +22250,10 @@ function extractSchemas(rawExpr, evaluator, context) {
|
|
|
21905
22250
|
return schemas;
|
|
21906
22251
|
}
|
|
21907
22252
|
|
|
21908
|
-
// bazel-out/
|
|
22253
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/handler.mjs
|
|
21909
22254
|
var import_typescript51 = __toESM(require("typescript"), 1);
|
|
21910
22255
|
|
|
21911
|
-
// bazel-out/
|
|
22256
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/api.mjs
|
|
21912
22257
|
var import_typescript31 = __toESM(require("typescript"), 1);
|
|
21913
22258
|
var SemanticSymbol = class {
|
|
21914
22259
|
constructor(decl) {
|
|
@@ -21924,7 +22269,7 @@ function getSymbolIdentifier(decl) {
|
|
|
21924
22269
|
return decl.name.text;
|
|
21925
22270
|
}
|
|
21926
22271
|
|
|
21927
|
-
// bazel-out/
|
|
22272
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/graph.mjs
|
|
21928
22273
|
var OpaqueSymbol = class extends SemanticSymbol {
|
|
21929
22274
|
isPublicApiAffected() {
|
|
21930
22275
|
return false;
|
|
@@ -22066,10 +22411,10 @@ function getImportPath(expr) {
|
|
|
22066
22411
|
}
|
|
22067
22412
|
}
|
|
22068
22413
|
|
|
22069
|
-
// bazel-out/
|
|
22414
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/type_parameters.mjs
|
|
22070
22415
|
var import_typescript32 = __toESM(require("typescript"), 1);
|
|
22071
22416
|
|
|
22072
|
-
// bazel-out/
|
|
22417
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/util.mjs
|
|
22073
22418
|
function isSymbolEqual(a, b) {
|
|
22074
22419
|
if (a.decl === b.decl) {
|
|
22075
22420
|
return true;
|
|
@@ -22119,7 +22464,7 @@ function isSetEqual(a, b, equalityTester = referenceEquality) {
|
|
|
22119
22464
|
return true;
|
|
22120
22465
|
}
|
|
22121
22466
|
|
|
22122
|
-
// bazel-out/
|
|
22467
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/type_parameters.mjs
|
|
22123
22468
|
function extractSemanticTypeParameters(node) {
|
|
22124
22469
|
if (!import_typescript32.default.isClassDeclaration(node) || node.typeParameters === void 0) {
|
|
22125
22470
|
return null;
|
|
@@ -22139,7 +22484,7 @@ function isTypeParameterEqual(a, b) {
|
|
|
22139
22484
|
return a.hasGenericTypeBound === b.hasGenericTypeBound;
|
|
22140
22485
|
}
|
|
22141
22486
|
|
|
22142
|
-
// bazel-out/
|
|
22487
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/api.mjs
|
|
22143
22488
|
var PerfPhase;
|
|
22144
22489
|
(function(PerfPhase2) {
|
|
22145
22490
|
PerfPhase2[PerfPhase2["Unaccounted"] = 0] = "Unaccounted";
|
|
@@ -22206,7 +22551,7 @@ var PerfCheckpoint;
|
|
|
22206
22551
|
PerfCheckpoint2[PerfCheckpoint2["LAST"] = 9] = "LAST";
|
|
22207
22552
|
})(PerfCheckpoint || (PerfCheckpoint = {}));
|
|
22208
22553
|
|
|
22209
|
-
// bazel-out/
|
|
22554
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/noop.mjs
|
|
22210
22555
|
var NoopPerfRecorder = class {
|
|
22211
22556
|
eventCount() {
|
|
22212
22557
|
}
|
|
@@ -22223,7 +22568,7 @@ var NoopPerfRecorder = class {
|
|
|
22223
22568
|
};
|
|
22224
22569
|
var NOOP_PERF_RECORDER = new NoopPerfRecorder();
|
|
22225
22570
|
|
|
22226
|
-
// bazel-out/
|
|
22571
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/clock.mjs
|
|
22227
22572
|
function mark() {
|
|
22228
22573
|
return process.hrtime();
|
|
22229
22574
|
}
|
|
@@ -22232,7 +22577,7 @@ function timeSinceInMicros(mark2) {
|
|
|
22232
22577
|
return delta[0] * 1e6 + Math.floor(delta[1] / 1e3);
|
|
22233
22578
|
}
|
|
22234
22579
|
|
|
22235
|
-
// bazel-out/
|
|
22580
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/recorder.mjs
|
|
22236
22581
|
var ActivePerfRecorder = class {
|
|
22237
22582
|
static zeroedToNow() {
|
|
22238
22583
|
return new ActivePerfRecorder(mark());
|
|
@@ -22326,14 +22671,14 @@ var DelegatingPerfRecorder = class {
|
|
|
22326
22671
|
}
|
|
22327
22672
|
};
|
|
22328
22673
|
|
|
22329
|
-
// bazel-out/
|
|
22674
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/api.mjs
|
|
22330
22675
|
var ComponentScopeKind;
|
|
22331
22676
|
(function(ComponentScopeKind2) {
|
|
22332
22677
|
ComponentScopeKind2[ComponentScopeKind2["NgModule"] = 0] = "NgModule";
|
|
22333
22678
|
ComponentScopeKind2[ComponentScopeKind2["Standalone"] = 1] = "Standalone";
|
|
22334
22679
|
})(ComponentScopeKind || (ComponentScopeKind = {}));
|
|
22335
22680
|
|
|
22336
|
-
// bazel-out/
|
|
22681
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/component_scope.mjs
|
|
22337
22682
|
var CompoundComponentScopeReader = class {
|
|
22338
22683
|
constructor(readers) {
|
|
22339
22684
|
this.readers = readers;
|
|
@@ -22358,7 +22703,7 @@ var CompoundComponentScopeReader = class {
|
|
|
22358
22703
|
}
|
|
22359
22704
|
};
|
|
22360
22705
|
|
|
22361
|
-
// bazel-out/
|
|
22706
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/dependency.mjs
|
|
22362
22707
|
var MetadataDtsModuleScopeResolver = class {
|
|
22363
22708
|
constructor(dtsMetaReader, aliasingHost) {
|
|
22364
22709
|
this.dtsMetaReader = dtsMetaReader;
|
|
@@ -22433,10 +22778,10 @@ var MetadataDtsModuleScopeResolver = class {
|
|
|
22433
22778
|
}
|
|
22434
22779
|
};
|
|
22435
22780
|
|
|
22436
|
-
// bazel-out/
|
|
22781
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/local.mjs
|
|
22437
22782
|
var import_typescript33 = __toESM(require("typescript"), 1);
|
|
22438
22783
|
|
|
22439
|
-
// bazel-out/
|
|
22784
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/util.mjs
|
|
22440
22785
|
function getDiagnosticNode(ref, rawExpr) {
|
|
22441
22786
|
return rawExpr !== null ? ref.getOriginForDiagnostics(rawExpr) : ref.node.name;
|
|
22442
22787
|
}
|
|
@@ -22459,7 +22804,7 @@ function makeUnknownComponentImportDiagnostic(ref, rawExpr) {
|
|
|
22459
22804
|
return makeDiagnostic(ErrorCode.COMPONENT_UNKNOWN_IMPORT, getDiagnosticNode(ref, rawExpr), `Component imports must be standalone components, directives, pipes, or must be NgModules.`);
|
|
22460
22805
|
}
|
|
22461
22806
|
|
|
22462
|
-
// bazel-out/
|
|
22807
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/local.mjs
|
|
22463
22808
|
var LocalModuleScopeRegistry = class {
|
|
22464
22809
|
constructor(localReader, fullReader, dependencyScopeReader, refEmitter, aliasingHost) {
|
|
22465
22810
|
this.localReader = localReader;
|
|
@@ -22798,7 +23143,7 @@ function reexportCollision(module3, refA, refB) {
|
|
|
22798
23143
|
]);
|
|
22799
23144
|
}
|
|
22800
23145
|
|
|
22801
|
-
// bazel-out/
|
|
23146
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/typecheck.mjs
|
|
22802
23147
|
var import_typescript35 = __toESM(require("typescript"), 1);
|
|
22803
23148
|
var TypeCheckScopeRegistry = class {
|
|
22804
23149
|
constructor(scopeReader, metaReader, hostDirectivesResolver) {
|
|
@@ -22866,7 +23211,7 @@ var TypeCheckScopeRegistry = class {
|
|
|
22866
23211
|
}
|
|
22867
23212
|
};
|
|
22868
23213
|
|
|
22869
|
-
// bazel-out/
|
|
23214
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/api.mjs
|
|
22870
23215
|
var CompilationMode;
|
|
22871
23216
|
(function(CompilationMode2) {
|
|
22872
23217
|
CompilationMode2[CompilationMode2["FULL"] = 0] = "FULL";
|
|
@@ -22884,7 +23229,7 @@ var HandlerFlags;
|
|
|
22884
23229
|
HandlerFlags2[HandlerFlags2["FULL_INHERITANCE"] = 1] = "FULL_INHERITANCE";
|
|
22885
23230
|
})(HandlerFlags || (HandlerFlags = {}));
|
|
22886
23231
|
|
|
22887
|
-
// bazel-out/
|
|
23232
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/alias.mjs
|
|
22888
23233
|
var import_typescript36 = __toESM(require("typescript"), 1);
|
|
22889
23234
|
function aliasTransformFactory(exportStatements) {
|
|
22890
23235
|
return () => {
|
|
@@ -22907,10 +23252,10 @@ function aliasTransformFactory(exportStatements) {
|
|
|
22907
23252
|
};
|
|
22908
23253
|
}
|
|
22909
23254
|
|
|
22910
|
-
// bazel-out/
|
|
23255
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/compilation.mjs
|
|
22911
23256
|
var import_typescript37 = __toESM(require("typescript"), 1);
|
|
22912
23257
|
|
|
22913
|
-
// bazel-out/
|
|
23258
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/trait.mjs
|
|
22914
23259
|
var TraitState;
|
|
22915
23260
|
(function(TraitState2) {
|
|
22916
23261
|
TraitState2[TraitState2["Pending"] = 0] = "Pending";
|
|
@@ -22965,7 +23310,7 @@ var TraitImpl = class {
|
|
|
22965
23310
|
}
|
|
22966
23311
|
};
|
|
22967
23312
|
|
|
22968
|
-
// bazel-out/
|
|
23313
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/compilation.mjs
|
|
22969
23314
|
var TraitCompiler = class {
|
|
22970
23315
|
constructor(handlers, reflector, perf, incrementalBuild, compileNonExportedClasses, compilationMode, dtsTransforms, semanticDepGraphUpdater, sourceFileTypeIdentifier) {
|
|
22971
23316
|
this.handlers = handlers;
|
|
@@ -23409,10 +23754,10 @@ function containsErrors(diagnostics) {
|
|
|
23409
23754
|
return diagnostics !== null && diagnostics.some((diag) => diag.category === import_typescript37.default.DiagnosticCategory.Error);
|
|
23410
23755
|
}
|
|
23411
23756
|
|
|
23412
|
-
// bazel-out/
|
|
23757
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/declaration.mjs
|
|
23413
23758
|
var import_typescript43 = __toESM(require("typescript"), 1);
|
|
23414
23759
|
|
|
23415
|
-
// bazel-out/
|
|
23760
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/context.mjs
|
|
23416
23761
|
var Context = class {
|
|
23417
23762
|
constructor(isStatement) {
|
|
23418
23763
|
this.isStatement = isStatement;
|
|
@@ -23425,7 +23770,7 @@ var Context = class {
|
|
|
23425
23770
|
}
|
|
23426
23771
|
};
|
|
23427
23772
|
|
|
23428
|
-
// bazel-out/
|
|
23773
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager.mjs
|
|
23429
23774
|
var import_typescript39 = __toESM(require("typescript"), 1);
|
|
23430
23775
|
var ImportManager = class {
|
|
23431
23776
|
constructor(rewriter = new NoopImportRewriter(), prefix = "i") {
|
|
@@ -23461,7 +23806,7 @@ var ImportManager = class {
|
|
|
23461
23806
|
}
|
|
23462
23807
|
};
|
|
23463
23808
|
|
|
23464
|
-
// bazel-out/
|
|
23809
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/translator.mjs
|
|
23465
23810
|
var UNARY_OPERATORS2 = /* @__PURE__ */ new Map([
|
|
23466
23811
|
[UnaryOperator.Minus, "-"],
|
|
23467
23812
|
[UnaryOperator.Plus, "+"]
|
|
@@ -23692,7 +24037,7 @@ function createRange(span) {
|
|
|
23692
24037
|
};
|
|
23693
24038
|
}
|
|
23694
24039
|
|
|
23695
|
-
// bazel-out/
|
|
24040
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_translator.mjs
|
|
23696
24041
|
var import_typescript40 = __toESM(require("typescript"), 1);
|
|
23697
24042
|
function translateType(type, imports) {
|
|
23698
24043
|
return type.visitType(new TypeTranslatorVisitor(imports), new Context(false));
|
|
@@ -23867,7 +24212,7 @@ var TypeTranslatorVisitor = class {
|
|
|
23867
24212
|
}
|
|
23868
24213
|
};
|
|
23869
24214
|
|
|
23870
|
-
// bazel-out/
|
|
24215
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_ast_factory.mjs
|
|
23871
24216
|
var import_typescript41 = __toESM(require("typescript"), 1);
|
|
23872
24217
|
var PureAnnotation;
|
|
23873
24218
|
(function(PureAnnotation2) {
|
|
@@ -24050,7 +24395,7 @@ function attachComments(statement, leadingComments) {
|
|
|
24050
24395
|
}
|
|
24051
24396
|
}
|
|
24052
24397
|
|
|
24053
|
-
// bazel-out/
|
|
24398
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_translator.mjs
|
|
24054
24399
|
function translateExpression(expression, imports, options = {}) {
|
|
24055
24400
|
return expression.visitExpression(new ExpressionTranslatorVisitor(new TypeScriptAstFactory(options.annotateForClosureCompiler === true), imports, options), new Context(false));
|
|
24056
24401
|
}
|
|
@@ -24058,7 +24403,7 @@ function translateStatement(statement, imports, options = {}) {
|
|
|
24058
24403
|
return statement.visitStatement(new ExpressionTranslatorVisitor(new TypeScriptAstFactory(options.annotateForClosureCompiler === true), imports, options), new Context(true));
|
|
24059
24404
|
}
|
|
24060
24405
|
|
|
24061
|
-
// bazel-out/
|
|
24406
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/utils.mjs
|
|
24062
24407
|
var import_typescript42 = __toESM(require("typescript"), 1);
|
|
24063
24408
|
function addImports(importManager, sf, extraStatements = []) {
|
|
24064
24409
|
const addedImports = importManager.getAllImports(sf.fileName).map((i) => {
|
|
@@ -24094,7 +24439,7 @@ function isImportStatement(stmt) {
|
|
|
24094
24439
|
return import_typescript42.default.isImportDeclaration(stmt) || import_typescript42.default.isImportEqualsDeclaration(stmt) || import_typescript42.default.isNamespaceImport(stmt);
|
|
24095
24440
|
}
|
|
24096
24441
|
|
|
24097
|
-
// bazel-out/
|
|
24442
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/declaration.mjs
|
|
24098
24443
|
var DtsTransformRegistry = class {
|
|
24099
24444
|
constructor() {
|
|
24100
24445
|
this.ivyDeclarationTransforms = /* @__PURE__ */ new Map();
|
|
@@ -24239,10 +24584,10 @@ function markForEmitAsSingleLine(node) {
|
|
|
24239
24584
|
import_typescript43.default.forEachChild(node, markForEmitAsSingleLine);
|
|
24240
24585
|
}
|
|
24241
24586
|
|
|
24242
|
-
// bazel-out/
|
|
24587
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/transform.mjs
|
|
24243
24588
|
var import_typescript45 = __toESM(require("typescript"), 1);
|
|
24244
24589
|
|
|
24245
|
-
// bazel-out/
|
|
24590
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/visitor.mjs
|
|
24246
24591
|
var import_typescript44 = __toESM(require("typescript"), 1);
|
|
24247
24592
|
function visit(node, visitor, context) {
|
|
24248
24593
|
return visitor._visit(node, context);
|
|
@@ -24303,7 +24648,7 @@ var Visitor = class {
|
|
|
24303
24648
|
}
|
|
24304
24649
|
};
|
|
24305
24650
|
|
|
24306
|
-
// bazel-out/
|
|
24651
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/transform.mjs
|
|
24307
24652
|
var NO_DECORATORS = /* @__PURE__ */ new Set();
|
|
24308
24653
|
var CLOSURE_FILE_OVERVIEW_REGEXP = /\s+@fileoverview\s+/i;
|
|
24309
24654
|
function ivyTransformFactory(compilation, reflector, importRewriter, defaultImportTracker, perf, isCore, isClosureCompilerEnabled) {
|
|
@@ -24511,7 +24856,7 @@ function nodeArrayFromDecoratorsArray(decorators) {
|
|
|
24511
24856
|
return array;
|
|
24512
24857
|
}
|
|
24513
24858
|
|
|
24514
|
-
// bazel-out/
|
|
24859
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/shared.mjs
|
|
24515
24860
|
var import_typescript46 = __toESM(require("typescript"), 1);
|
|
24516
24861
|
var EMPTY_OBJECT = {};
|
|
24517
24862
|
var QUERY_TYPES = /* @__PURE__ */ new Set([
|
|
@@ -24981,7 +25326,7 @@ function toHostDirectiveMetadata(hostDirective, context, refEmitter) {
|
|
|
24981
25326
|
};
|
|
24982
25327
|
}
|
|
24983
25328
|
|
|
24984
|
-
// bazel-out/
|
|
25329
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/symbol.mjs
|
|
24985
25330
|
var DirectiveSymbol = class extends SemanticSymbol {
|
|
24986
25331
|
constructor(decl, selector, inputs, outputs, exportAs, typeCheckMeta, typeParameters) {
|
|
24987
25332
|
super(decl);
|
|
@@ -25061,7 +25406,7 @@ function isBaseClassEqual(current, previous) {
|
|
|
25061
25406
|
return isSymbolEqual(current, previous);
|
|
25062
25407
|
}
|
|
25063
25408
|
|
|
25064
|
-
// bazel-out/
|
|
25409
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/handler.mjs
|
|
25065
25410
|
var FIELD_DECORATORS = [
|
|
25066
25411
|
"Input",
|
|
25067
25412
|
"Output",
|
|
@@ -25220,10 +25565,10 @@ var DirectiveDecoratorHandler = class {
|
|
|
25220
25565
|
}
|
|
25221
25566
|
};
|
|
25222
25567
|
|
|
25223
|
-
// bazel-out/
|
|
25568
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/handler.mjs
|
|
25224
25569
|
var import_typescript48 = __toESM(require("typescript"), 1);
|
|
25225
25570
|
|
|
25226
|
-
// bazel-out/
|
|
25571
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/module_with_providers.mjs
|
|
25227
25572
|
var import_typescript47 = __toESM(require("typescript"), 1);
|
|
25228
25573
|
function createModuleWithProvidersResolver(reflector, isCore) {
|
|
25229
25574
|
function _reflectModuleFromTypeParam(type, node) {
|
|
@@ -25290,7 +25635,7 @@ function isResolvedModuleWithProviders(sv) {
|
|
|
25290
25635
|
return typeof sv.value === "object" && sv.value != null && sv.value.hasOwnProperty("ngModule") && sv.value.hasOwnProperty("mwpCall");
|
|
25291
25636
|
}
|
|
25292
25637
|
|
|
25293
|
-
// bazel-out/
|
|
25638
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/handler.mjs
|
|
25294
25639
|
var NgModuleSymbol = class extends SemanticSymbol {
|
|
25295
25640
|
constructor() {
|
|
25296
25641
|
super(...arguments);
|
|
@@ -25786,7 +26131,7 @@ function isSyntheticReference(ref) {
|
|
|
25786
26131
|
return ref.synthetic;
|
|
25787
26132
|
}
|
|
25788
26133
|
|
|
25789
|
-
// bazel-out/
|
|
26134
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/diagnostics.mjs
|
|
25790
26135
|
function makeCyclicImportInfo(ref, type, cycle) {
|
|
25791
26136
|
const name = ref.debugName || "(unknown)";
|
|
25792
26137
|
const path3 = cycle.getPath().map((sf) => sf.fileName).join(" -> ");
|
|
@@ -25809,7 +26154,7 @@ function checkCustomElementSelectorForErrors(selector) {
|
|
|
25809
26154
|
return null;
|
|
25810
26155
|
}
|
|
25811
26156
|
|
|
25812
|
-
// bazel-out/
|
|
26157
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/resources.mjs
|
|
25813
26158
|
var import_typescript50 = __toESM(require("typescript"), 1);
|
|
25814
26159
|
function getTemplateDeclarationNodeForError(declaration) {
|
|
25815
26160
|
switch (declaration.isInline) {
|
|
@@ -26124,7 +26469,7 @@ function _extractTemplateStyleUrls(template) {
|
|
|
26124
26469
|
return template.styleUrls.map((url) => ({ url, source: 1, nodeForError }));
|
|
26125
26470
|
}
|
|
26126
26471
|
|
|
26127
|
-
// bazel-out/
|
|
26472
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/symbol.mjs
|
|
26128
26473
|
var ComponentSymbol = class extends DirectiveSymbol {
|
|
26129
26474
|
constructor() {
|
|
26130
26475
|
super(...arguments);
|
|
@@ -26159,7 +26504,7 @@ var ComponentSymbol = class extends DirectiveSymbol {
|
|
|
26159
26504
|
}
|
|
26160
26505
|
};
|
|
26161
26506
|
|
|
26162
|
-
// bazel-out/
|
|
26507
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/util.mjs
|
|
26163
26508
|
function collectAnimationNames(value, animationTriggerNames) {
|
|
26164
26509
|
if (value instanceof Map) {
|
|
26165
26510
|
const name = value.get("name");
|
|
@@ -26235,7 +26580,7 @@ function isLikelyModuleWithProviders(value) {
|
|
|
26235
26580
|
return false;
|
|
26236
26581
|
}
|
|
26237
26582
|
|
|
26238
|
-
// bazel-out/
|
|
26583
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/handler.mjs
|
|
26239
26584
|
var EMPTY_ARRAY2 = [];
|
|
26240
26585
|
var ComponentDecoratorHandler = class {
|
|
26241
26586
|
constructor(reflector, evaluator, metaRegistry, metaReader, scopeReader, dtsScopeReader, scopeRegistry, typeCheckScopeRegistry, resourceRegistry, isCore, strictCtorDeps, resourceLoader, rootDirs, defaultPreserveWhitespaces, i18nUseExternalIds, enableI18nLegacyMessageIdFormat, usePoisonedData, i18nNormalizeLineEndingsInICUs, moduleResolver, cycleAnalyzer, cycleHandlingStrategy, refEmitter, depTracker, injectableRegistry, semanticDepGraphUpdater, annotateForClosureCompiler, perf, hostDirectivesResolver) {
|
|
@@ -26271,13 +26616,13 @@ var ComponentDecoratorHandler = class {
|
|
|
26271
26616
|
this.elementSchemaRegistry = new DomElementSchemaRegistry();
|
|
26272
26617
|
this.preanalyzeTemplateCache = /* @__PURE__ */ new Map();
|
|
26273
26618
|
this.preanalyzeStylesCache = /* @__PURE__ */ new Map();
|
|
26619
|
+
this.precedence = HandlerPrecedence.PRIMARY;
|
|
26620
|
+
this.name = ComponentDecoratorHandler.name;
|
|
26274
26621
|
this.extractTemplateOptions = {
|
|
26275
26622
|
enableI18nLegacyMessageIdFormat: this.enableI18nLegacyMessageIdFormat,
|
|
26276
26623
|
i18nNormalizeLineEndingsInICUs: this.i18nNormalizeLineEndingsInICUs,
|
|
26277
26624
|
usePoisonedData: this.usePoisonedData
|
|
26278
26625
|
};
|
|
26279
|
-
this.precedence = HandlerPrecedence.PRIMARY;
|
|
26280
|
-
this.name = ComponentDecoratorHandler.name;
|
|
26281
26626
|
}
|
|
26282
26627
|
detect(node, decorators) {
|
|
26283
26628
|
if (!decorators) {
|
|
@@ -26881,7 +27226,7 @@ function validateStandaloneImports(importRefs, importExpr2, metaReader, scopeRea
|
|
|
26881
27226
|
return diagnostics;
|
|
26882
27227
|
}
|
|
26883
27228
|
|
|
26884
|
-
// bazel-out/
|
|
27229
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/injectable.mjs
|
|
26885
27230
|
var import_typescript53 = __toESM(require("typescript"), 1);
|
|
26886
27231
|
var InjectableDecoratorHandler = class {
|
|
26887
27232
|
constructor(reflector, evaluator, isCore, strictCtorDeps, injectableRegistry, perf, errorOnDuplicateProv = true) {
|
|
@@ -27097,7 +27442,7 @@ function getDep(dep, reflector) {
|
|
|
27097
27442
|
return meta;
|
|
27098
27443
|
}
|
|
27099
27444
|
|
|
27100
|
-
// bazel-out/
|
|
27445
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/pipe.mjs
|
|
27101
27446
|
var import_typescript54 = __toESM(require("typescript"), 1);
|
|
27102
27447
|
var PipeSymbol = class extends SemanticSymbol {
|
|
27103
27448
|
constructor(decl, name) {
|
|
@@ -27242,7 +27587,7 @@ var PipeDecoratorHandler = class {
|
|
|
27242
27587
|
}
|
|
27243
27588
|
};
|
|
27244
27589
|
|
|
27245
|
-
// bazel-out/
|
|
27590
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/cycles/src/analyzer.mjs
|
|
27246
27591
|
var CycleAnalyzer = class {
|
|
27247
27592
|
constructor(importGraph) {
|
|
27248
27593
|
this.importGraph = importGraph;
|
|
@@ -27313,7 +27658,7 @@ var Cycle = class {
|
|
|
27313
27658
|
}
|
|
27314
27659
|
};
|
|
27315
27660
|
|
|
27316
|
-
// bazel-out/
|
|
27661
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/cycles/src/imports.mjs
|
|
27317
27662
|
var import_typescript55 = __toESM(require("typescript"), 1);
|
|
27318
27663
|
var ImportGraph = class {
|
|
27319
27664
|
constructor(checker, perf) {
|
|
@@ -27405,7 +27750,7 @@ var Found = class {
|
|
|
27405
27750
|
}
|
|
27406
27751
|
};
|
|
27407
27752
|
|
|
27408
|
-
// bazel-out/
|
|
27753
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/generator.mjs
|
|
27409
27754
|
var import_typescript56 = __toESM(require("typescript"), 1);
|
|
27410
27755
|
var FlatIndexGenerator = class {
|
|
27411
27756
|
constructor(entryPoint, relativeFlatIndexPath, moduleName) {
|
|
@@ -27430,7 +27775,7 @@ export * from '${relativeEntryPoint}';
|
|
|
27430
27775
|
}
|
|
27431
27776
|
};
|
|
27432
27777
|
|
|
27433
|
-
// bazel-out/
|
|
27778
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/logic.mjs
|
|
27434
27779
|
function findFlatIndexEntryPoint(rootFiles) {
|
|
27435
27780
|
const tsFiles = rootFiles.filter((file) => isNonDeclarationTsPath(file));
|
|
27436
27781
|
let resolvedEntryPoint = null;
|
|
@@ -27446,7 +27791,7 @@ function findFlatIndexEntryPoint(rootFiles) {
|
|
|
27446
27791
|
return resolvedEntryPoint;
|
|
27447
27792
|
}
|
|
27448
27793
|
|
|
27449
|
-
// bazel-out/
|
|
27794
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/private_export_checker.mjs
|
|
27450
27795
|
var import_typescript58 = __toESM(require("typescript"), 1);
|
|
27451
27796
|
function checkForPrivateExports(entryPoint, checker, refGraph) {
|
|
27452
27797
|
const diagnostics = [];
|
|
@@ -27526,7 +27871,7 @@ function getDescriptorOfDeclaration(decl) {
|
|
|
27526
27871
|
}
|
|
27527
27872
|
}
|
|
27528
27873
|
|
|
27529
|
-
// bazel-out/
|
|
27874
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/reference_graph.mjs
|
|
27530
27875
|
var ReferenceGraph = class {
|
|
27531
27876
|
constructor() {
|
|
27532
27877
|
this.references = /* @__PURE__ */ new Map();
|
|
@@ -27580,7 +27925,7 @@ var ReferenceGraph = class {
|
|
|
27580
27925
|
}
|
|
27581
27926
|
};
|
|
27582
27927
|
|
|
27583
|
-
// bazel-out/
|
|
27928
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/api.mjs
|
|
27584
27929
|
var NgOriginalFile = Symbol("NgOriginalFile");
|
|
27585
27930
|
var UpdateMode;
|
|
27586
27931
|
(function(UpdateMode2) {
|
|
@@ -27588,13 +27933,13 @@ var UpdateMode;
|
|
|
27588
27933
|
UpdateMode2[UpdateMode2["Incremental"] = 1] = "Incremental";
|
|
27589
27934
|
})(UpdateMode || (UpdateMode = {}));
|
|
27590
27935
|
|
|
27591
|
-
// bazel-out/
|
|
27936
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/ts_create_program_driver.mjs
|
|
27592
27937
|
var import_typescript62 = __toESM(require("typescript"), 1);
|
|
27593
27938
|
|
|
27594
|
-
// bazel-out/
|
|
27939
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/adapter.mjs
|
|
27595
27940
|
var import_typescript59 = __toESM(require("typescript"), 1);
|
|
27596
27941
|
|
|
27597
|
-
// bazel-out/
|
|
27942
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/expando.mjs
|
|
27598
27943
|
var NgExtension = Symbol("NgExtension");
|
|
27599
27944
|
function isExtended(sf) {
|
|
27600
27945
|
return sf[NgExtension] !== void 0;
|
|
@@ -27654,13 +27999,13 @@ function retagTsFile(sf) {
|
|
|
27654
27999
|
}
|
|
27655
28000
|
}
|
|
27656
28001
|
|
|
27657
|
-
// bazel-out/
|
|
28002
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/util.mjs
|
|
27658
28003
|
var TS_EXTENSIONS = /\.tsx?$/i;
|
|
27659
28004
|
function makeShimFileName(fileName, suffix) {
|
|
27660
28005
|
return absoluteFrom(fileName.replace(TS_EXTENSIONS, suffix));
|
|
27661
28006
|
}
|
|
27662
28007
|
|
|
27663
|
-
// bazel-out/
|
|
28008
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/adapter.mjs
|
|
27664
28009
|
var ShimAdapter = class {
|
|
27665
28010
|
constructor(delegate, tsRootFiles, topLevelGenerators, perFileGenerators, oldProgram) {
|
|
27666
28011
|
this.delegate = delegate;
|
|
@@ -27755,7 +28100,7 @@ var ShimAdapter = class {
|
|
|
27755
28100
|
}
|
|
27756
28101
|
};
|
|
27757
28102
|
|
|
27758
|
-
// bazel-out/
|
|
28103
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/reference_tagger.mjs
|
|
27759
28104
|
var ShimReferenceTagger = class {
|
|
27760
28105
|
constructor(shimExtensions) {
|
|
27761
28106
|
this.tagged = /* @__PURE__ */ new Set();
|
|
@@ -27789,7 +28134,7 @@ var ShimReferenceTagger = class {
|
|
|
27789
28134
|
}
|
|
27790
28135
|
};
|
|
27791
28136
|
|
|
27792
|
-
// bazel-out/
|
|
28137
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/ts_create_program_driver.mjs
|
|
27793
28138
|
var DelegatingCompilerHost = class {
|
|
27794
28139
|
constructor(delegate) {
|
|
27795
28140
|
this.delegate = delegate;
|
|
@@ -27865,8 +28210,8 @@ var TsCreateProgramDriver = class {
|
|
|
27865
28210
|
this.options = options;
|
|
27866
28211
|
this.shimExtensionPrefixes = shimExtensionPrefixes;
|
|
27867
28212
|
this.sfMap = /* @__PURE__ */ new Map();
|
|
27868
|
-
this.program = this.originalProgram;
|
|
27869
28213
|
this.supportsInlineOperations = true;
|
|
28214
|
+
this.program = this.originalProgram;
|
|
27870
28215
|
}
|
|
27871
28216
|
getProgram() {
|
|
27872
28217
|
return this.program;
|
|
@@ -27902,7 +28247,7 @@ var TsCreateProgramDriver = class {
|
|
|
27902
28247
|
}
|
|
27903
28248
|
};
|
|
27904
28249
|
|
|
27905
|
-
// bazel-out/
|
|
28250
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/dependency_tracking.mjs
|
|
27906
28251
|
var FileDependencyGraph = class {
|
|
27907
28252
|
constructor() {
|
|
27908
28253
|
this.nodes = /* @__PURE__ */ new Map();
|
|
@@ -27969,7 +28314,7 @@ function isLogicallyChanged(sf, node, changedTsPaths, deletedTsPaths, changedRes
|
|
|
27969
28314
|
return false;
|
|
27970
28315
|
}
|
|
27971
28316
|
|
|
27972
|
-
// bazel-out/
|
|
28317
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/state.mjs
|
|
27973
28318
|
var IncrementalStateKind;
|
|
27974
28319
|
(function(IncrementalStateKind2) {
|
|
27975
28320
|
IncrementalStateKind2[IncrementalStateKind2["Fresh"] = 0] = "Fresh";
|
|
@@ -27977,7 +28322,7 @@ var IncrementalStateKind;
|
|
|
27977
28322
|
IncrementalStateKind2[IncrementalStateKind2["Analyzed"] = 2] = "Analyzed";
|
|
27978
28323
|
})(IncrementalStateKind || (IncrementalStateKind = {}));
|
|
27979
28324
|
|
|
27980
|
-
// bazel-out/
|
|
28325
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/incremental.mjs
|
|
27981
28326
|
var PhaseKind;
|
|
27982
28327
|
(function(PhaseKind2) {
|
|
27983
28328
|
PhaseKind2[PhaseKind2["Analysis"] = 0] = "Analysis";
|
|
@@ -28178,7 +28523,7 @@ function toOriginalSourceFile(sf) {
|
|
|
28178
28523
|
}
|
|
28179
28524
|
}
|
|
28180
28525
|
|
|
28181
|
-
// bazel-out/
|
|
28526
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/strategy.mjs
|
|
28182
28527
|
var TrackedIncrementalBuildStrategy = class {
|
|
28183
28528
|
constructor() {
|
|
28184
28529
|
this.state = null;
|
|
@@ -28199,7 +28544,7 @@ var TrackedIncrementalBuildStrategy = class {
|
|
|
28199
28544
|
};
|
|
28200
28545
|
var SYM_INCREMENTAL_STATE = Symbol("NgIncrementalState");
|
|
28201
28546
|
|
|
28202
|
-
// bazel-out/
|
|
28547
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/api.mjs
|
|
28203
28548
|
var IdentifierKind;
|
|
28204
28549
|
(function(IdentifierKind2) {
|
|
28205
28550
|
IdentifierKind2[IdentifierKind2["Property"] = 0] = "Property";
|
|
@@ -28217,7 +28562,7 @@ var AbsoluteSourceSpan2 = class {
|
|
|
28217
28562
|
}
|
|
28218
28563
|
};
|
|
28219
28564
|
|
|
28220
|
-
// bazel-out/
|
|
28565
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/context.mjs
|
|
28221
28566
|
var IndexingContext = class {
|
|
28222
28567
|
constructor() {
|
|
28223
28568
|
this.components = /* @__PURE__ */ new Set();
|
|
@@ -28227,7 +28572,7 @@ var IndexingContext = class {
|
|
|
28227
28572
|
}
|
|
28228
28573
|
};
|
|
28229
28574
|
|
|
28230
|
-
// bazel-out/
|
|
28575
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/template.mjs
|
|
28231
28576
|
var ExpressionVisitor = class extends RecursiveAstVisitor {
|
|
28232
28577
|
constructor(expressionStr, absoluteOffset, boundTemplate, targetToIdentifier) {
|
|
28233
28578
|
super();
|
|
@@ -28463,7 +28808,7 @@ function getTemplateIdentifiers(boundTemplate) {
|
|
|
28463
28808
|
return { identifiers: visitor.identifiers, errors: visitor.errors };
|
|
28464
28809
|
}
|
|
28465
28810
|
|
|
28466
|
-
// bazel-out/
|
|
28811
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/transform.mjs
|
|
28467
28812
|
function generateAnalysis(context) {
|
|
28468
28813
|
const analysis = /* @__PURE__ */ new Map();
|
|
28469
28814
|
context.components.forEach(({ declaration, selector, boundTemplate, templateMeta }) => {
|
|
@@ -28499,7 +28844,7 @@ function generateAnalysis(context) {
|
|
|
28499
28844
|
return analysis;
|
|
28500
28845
|
}
|
|
28501
28846
|
|
|
28502
|
-
// bazel-out/
|
|
28847
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/ng_module_index.mjs
|
|
28503
28848
|
var NgModuleIndexImpl = class {
|
|
28504
28849
|
constructor(metaReader, localReader) {
|
|
28505
28850
|
this.metaReader = metaReader;
|
|
@@ -28588,7 +28933,7 @@ var NgModuleIndexImpl = class {
|
|
|
28588
28933
|
}
|
|
28589
28934
|
};
|
|
28590
28935
|
|
|
28591
|
-
// bazel-out/
|
|
28936
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/resource/src/loader.mjs
|
|
28592
28937
|
var import_typescript65 = __toESM(require("typescript"), 1);
|
|
28593
28938
|
var CSS_PREPROCESSOR_EXT = /(\.scss|\.sass|\.less|\.styl)$/;
|
|
28594
28939
|
var RESOURCE_MARKER = ".$ngresource$";
|
|
@@ -28736,7 +29081,7 @@ function createLookupResolutionHost(adapter) {
|
|
|
28736
29081
|
};
|
|
28737
29082
|
}
|
|
28738
29083
|
|
|
28739
|
-
// bazel-out/
|
|
29084
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/standalone.mjs
|
|
28740
29085
|
var StandaloneComponentScopeReader = class {
|
|
28741
29086
|
constructor(metaReader, localModuleReader, dtsModuleReader) {
|
|
28742
29087
|
this.metaReader = metaReader;
|
|
@@ -28814,21 +29159,21 @@ var StandaloneComponentScopeReader = class {
|
|
|
28814
29159
|
}
|
|
28815
29160
|
};
|
|
28816
29161
|
|
|
28817
|
-
// bazel-out/
|
|
29162
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/checker.mjs
|
|
28818
29163
|
var OptimizeFor;
|
|
28819
29164
|
(function(OptimizeFor2) {
|
|
28820
29165
|
OptimizeFor2[OptimizeFor2["SingleFile"] = 0] = "SingleFile";
|
|
28821
29166
|
OptimizeFor2[OptimizeFor2["WholeProgram"] = 1] = "WholeProgram";
|
|
28822
29167
|
})(OptimizeFor || (OptimizeFor = {}));
|
|
28823
29168
|
|
|
28824
|
-
// bazel-out/
|
|
29169
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/completion.mjs
|
|
28825
29170
|
var CompletionKind;
|
|
28826
29171
|
(function(CompletionKind2) {
|
|
28827
29172
|
CompletionKind2[CompletionKind2["Reference"] = 0] = "Reference";
|
|
28828
29173
|
CompletionKind2[CompletionKind2["Variable"] = 1] = "Variable";
|
|
28829
29174
|
})(CompletionKind || (CompletionKind = {}));
|
|
28830
29175
|
|
|
28831
|
-
// bazel-out/
|
|
29176
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/scope.mjs
|
|
28832
29177
|
var PotentialImportKind;
|
|
28833
29178
|
(function(PotentialImportKind2) {
|
|
28834
29179
|
PotentialImportKind2[PotentialImportKind2["NgModule"] = 0] = "NgModule";
|
|
@@ -28840,7 +29185,7 @@ var PotentialImportMode;
|
|
|
28840
29185
|
PotentialImportMode2[PotentialImportMode2["ForceDirect"] = 1] = "ForceDirect";
|
|
28841
29186
|
})(PotentialImportMode || (PotentialImportMode = {}));
|
|
28842
29187
|
|
|
28843
|
-
// bazel-out/
|
|
29188
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/symbols.mjs
|
|
28844
29189
|
var SymbolKind;
|
|
28845
29190
|
(function(SymbolKind2) {
|
|
28846
29191
|
SymbolKind2[SymbolKind2["Input"] = 0] = "Input";
|
|
@@ -28856,7 +29201,7 @@ var SymbolKind;
|
|
|
28856
29201
|
SymbolKind2[SymbolKind2["Pipe"] = 10] = "Pipe";
|
|
28857
29202
|
})(SymbolKind || (SymbolKind = {}));
|
|
28858
29203
|
|
|
28859
|
-
// bazel-out/
|
|
29204
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/diagnostics/src/diagnostic.mjs
|
|
28860
29205
|
var import_typescript66 = __toESM(require("typescript"), 1);
|
|
28861
29206
|
function makeTemplateDiagnostic(templateId, mapping, span, category, code, messageText, relatedMessages) {
|
|
28862
29207
|
var _a;
|
|
@@ -28963,7 +29308,7 @@ function parseTemplateAsSourceFile(fileName, template) {
|
|
|
28963
29308
|
return import_typescript66.default.createSourceFile(fileName, template, import_typescript66.default.ScriptTarget.Latest, false, import_typescript66.default.ScriptKind.JSX);
|
|
28964
29309
|
}
|
|
28965
29310
|
|
|
28966
|
-
// bazel-out/
|
|
29311
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/diagnostics/src/id.mjs
|
|
28967
29312
|
var TEMPLATE_ID = Symbol("ngTemplateId");
|
|
28968
29313
|
var NEXT_TEMPLATE_ID = Symbol("ngNextTemplateId");
|
|
28969
29314
|
function getTemplateId(clazz) {
|
|
@@ -28980,10 +29325,10 @@ function allocateTemplateId(sf) {
|
|
|
28980
29325
|
return `tcb${sf[NEXT_TEMPLATE_ID]++}`;
|
|
28981
29326
|
}
|
|
28982
29327
|
|
|
28983
|
-
// bazel-out/
|
|
29328
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/completion.mjs
|
|
28984
29329
|
var import_typescript68 = __toESM(require("typescript"), 1);
|
|
28985
29330
|
|
|
28986
|
-
// bazel-out/
|
|
29331
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/comments.mjs
|
|
28987
29332
|
var import_typescript67 = __toESM(require("typescript"), 1);
|
|
28988
29333
|
var parseSpanComment = /^(\d+),(\d+)$/;
|
|
28989
29334
|
function readSpanComment(node, sourceFile = node.getSourceFile()) {
|
|
@@ -29112,7 +29457,7 @@ function hasExpressionIdentifier(sourceFile, node, identifier) {
|
|
|
29112
29457
|
}) || false;
|
|
29113
29458
|
}
|
|
29114
29459
|
|
|
29115
|
-
// bazel-out/
|
|
29460
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/completion.mjs
|
|
29116
29461
|
var CompletionEngine = class {
|
|
29117
29462
|
constructor(tcb, data, tcbPath, tcbIsShim) {
|
|
29118
29463
|
this.tcb = tcb;
|
|
@@ -29269,10 +29614,10 @@ var CompletionEngine = class {
|
|
|
29269
29614
|
}
|
|
29270
29615
|
};
|
|
29271
29616
|
|
|
29272
|
-
// bazel-out/
|
|
29617
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/context.mjs
|
|
29273
29618
|
var import_typescript83 = __toESM(require("typescript"), 1);
|
|
29274
29619
|
|
|
29275
|
-
// bazel-out/
|
|
29620
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/dom.mjs
|
|
29276
29621
|
var import_typescript69 = __toESM(require("typescript"), 1);
|
|
29277
29622
|
var REGISTRY = new DomElementSchemaRegistry();
|
|
29278
29623
|
var REMOVE_XHTML_REGEX = /^:xhtml:/;
|
|
@@ -29324,10 +29669,10 @@ var RegistryDomSchemaChecker = class {
|
|
|
29324
29669
|
}
|
|
29325
29670
|
};
|
|
29326
29671
|
|
|
29327
|
-
// bazel-out/
|
|
29672
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/environment.mjs
|
|
29328
29673
|
var import_typescript76 = __toESM(require("typescript"), 1);
|
|
29329
29674
|
|
|
29330
|
-
// bazel-out/
|
|
29675
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/ts_util.mjs
|
|
29331
29676
|
var import_typescript70 = __toESM(require("typescript"), 1);
|
|
29332
29677
|
var SAFE_TO_CAST_WITHOUT_PARENS = /* @__PURE__ */ new Set([
|
|
29333
29678
|
import_typescript70.default.SyntaxKind.ParenthesizedExpression,
|
|
@@ -29401,16 +29746,16 @@ function isAccessExpression(node) {
|
|
|
29401
29746
|
return import_typescript70.default.isPropertyAccessExpression(node) || import_typescript70.default.isElementAccessExpression(node);
|
|
29402
29747
|
}
|
|
29403
29748
|
|
|
29404
|
-
// bazel-out/
|
|
29749
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_constructor.mjs
|
|
29405
29750
|
var import_typescript75 = __toESM(require("typescript"), 1);
|
|
29406
29751
|
|
|
29407
|
-
// bazel-out/
|
|
29752
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/tcb_util.mjs
|
|
29408
29753
|
var import_typescript73 = __toESM(require("typescript"), 1);
|
|
29409
29754
|
|
|
29410
|
-
// bazel-out/
|
|
29755
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_parameter_emitter.mjs
|
|
29411
29756
|
var import_typescript72 = __toESM(require("typescript"), 1);
|
|
29412
29757
|
|
|
29413
|
-
// bazel-out/
|
|
29758
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_emitter.mjs
|
|
29414
29759
|
var import_typescript71 = __toESM(require("typescript"), 1);
|
|
29415
29760
|
var INELIGIBLE = {};
|
|
29416
29761
|
function canEmitType(type, canEmit) {
|
|
@@ -29485,7 +29830,7 @@ var TypeEmitter = class {
|
|
|
29485
29830
|
}
|
|
29486
29831
|
};
|
|
29487
29832
|
|
|
29488
|
-
// bazel-out/
|
|
29833
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_parameter_emitter.mjs
|
|
29489
29834
|
var TypeParameterEmitter = class {
|
|
29490
29835
|
constructor(typeParameters, reflector) {
|
|
29491
29836
|
this.typeParameters = typeParameters;
|
|
@@ -29562,7 +29907,7 @@ var TypeParameterEmitter = class {
|
|
|
29562
29907
|
}
|
|
29563
29908
|
};
|
|
29564
29909
|
|
|
29565
|
-
// bazel-out/
|
|
29910
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/tcb_util.mjs
|
|
29566
29911
|
var TcbInliningRequirement;
|
|
29567
29912
|
(function(TcbInliningRequirement2) {
|
|
29568
29913
|
TcbInliningRequirement2[TcbInliningRequirement2["MustInline"] = 0] = "MustInline";
|
|
@@ -29642,7 +29987,7 @@ function checkIfGenericTypeBoundsCanBeEmitted(node, reflector, env) {
|
|
|
29642
29987
|
return emitter.canEmit((ref) => env.canReferenceType(ref));
|
|
29643
29988
|
}
|
|
29644
29989
|
|
|
29645
|
-
// bazel-out/
|
|
29990
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_constructor.mjs
|
|
29646
29991
|
function generateTypeCtorDeclarationFn(node, meta, nodeTypeRef, typeParams) {
|
|
29647
29992
|
const rawTypeArgs = typeParams !== void 0 ? generateGenericArgs(typeParams) : void 0;
|
|
29648
29993
|
const rawType = import_typescript75.default.factory.createTypeReferenceNode(nodeTypeRef, rawTypeArgs);
|
|
@@ -29754,7 +30099,7 @@ function typeParametersWithDefaultTypes(params) {
|
|
|
29754
30099
|
});
|
|
29755
30100
|
}
|
|
29756
30101
|
|
|
29757
|
-
// bazel-out/
|
|
30102
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/environment.mjs
|
|
29758
30103
|
var Environment = class {
|
|
29759
30104
|
constructor(config, importManager, refEmitter, reflector, contextFile) {
|
|
29760
30105
|
this.config = config;
|
|
@@ -29846,7 +30191,7 @@ var Environment = class {
|
|
|
29846
30191
|
}
|
|
29847
30192
|
};
|
|
29848
30193
|
|
|
29849
|
-
// bazel-out/
|
|
30194
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/oob.mjs
|
|
29850
30195
|
var import_typescript77 = __toESM(require("typescript"), 1);
|
|
29851
30196
|
var OutOfBandDiagnosticRecorderImpl = class {
|
|
29852
30197
|
constructor(resolver) {
|
|
@@ -29981,7 +30326,7 @@ function makeInlineDiagnostic(templateId, code, node, messageText, relatedInform
|
|
|
29981
30326
|
});
|
|
29982
30327
|
}
|
|
29983
30328
|
|
|
29984
|
-
// bazel-out/
|
|
30329
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/shim.mjs
|
|
29985
30330
|
var import_typescript78 = __toESM(require("typescript"), 1);
|
|
29986
30331
|
var TypeCheckShimGenerator = class {
|
|
29987
30332
|
constructor() {
|
|
@@ -29999,10 +30344,10 @@ var TypeCheckShimGenerator = class {
|
|
|
29999
30344
|
}
|
|
30000
30345
|
};
|
|
30001
30346
|
|
|
30002
|
-
// bazel-out/
|
|
30347
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_block.mjs
|
|
30003
30348
|
var import_typescript81 = __toESM(require("typescript"), 1);
|
|
30004
30349
|
|
|
30005
|
-
// bazel-out/
|
|
30350
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/diagnostics.mjs
|
|
30006
30351
|
var import_typescript79 = __toESM(require("typescript"), 1);
|
|
30007
30352
|
function wrapForDiagnostics(expr) {
|
|
30008
30353
|
return import_typescript79.default.factory.createParenthesizedExpression(expr);
|
|
@@ -30047,7 +30392,7 @@ function translateDiagnostic(diagnostic, resolver) {
|
|
|
30047
30392
|
return makeTemplateDiagnostic(sourceLocation.id, templateSourceMapping, span, diagnostic.category, diagnostic.code, diagnostic.messageText);
|
|
30048
30393
|
}
|
|
30049
30394
|
|
|
30050
|
-
// bazel-out/
|
|
30395
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/expression.mjs
|
|
30051
30396
|
var import_typescript80 = __toESM(require("typescript"), 1);
|
|
30052
30397
|
var NULL_AS_ANY = import_typescript80.default.factory.createAsExpression(import_typescript80.default.factory.createNull(), import_typescript80.default.factory.createKeywordTypeNode(import_typescript80.default.SyntaxKind.AnyKeyword));
|
|
30053
30398
|
var UNDEFINED = import_typescript80.default.factory.createIdentifier("undefined");
|
|
@@ -30305,9 +30650,9 @@ var AstTranslator = class {
|
|
|
30305
30650
|
return tsCastToAny(import_typescript80.default.factory.createCallExpression(import_typescript80.default.factory.createNonNullExpression(expr), void 0, args));
|
|
30306
30651
|
}
|
|
30307
30652
|
};
|
|
30308
|
-
var
|
|
30653
|
+
var _VeSafeLhsInferenceBugDetector = class {
|
|
30309
30654
|
static veWillInferAnyFor(ast) {
|
|
30310
|
-
const visitor =
|
|
30655
|
+
const visitor = _VeSafeLhsInferenceBugDetector.SINGLETON;
|
|
30311
30656
|
return ast instanceof Call ? ast.visit(visitor) : ast.receiver.visit(visitor);
|
|
30312
30657
|
}
|
|
30313
30658
|
visitUnary(ast) {
|
|
@@ -30374,9 +30719,12 @@ var VeSafeLhsInferenceBugDetector = class {
|
|
|
30374
30719
|
return false;
|
|
30375
30720
|
}
|
|
30376
30721
|
};
|
|
30377
|
-
VeSafeLhsInferenceBugDetector
|
|
30722
|
+
var VeSafeLhsInferenceBugDetector = _VeSafeLhsInferenceBugDetector;
|
|
30723
|
+
(() => {
|
|
30724
|
+
_VeSafeLhsInferenceBugDetector.SINGLETON = new _VeSafeLhsInferenceBugDetector();
|
|
30725
|
+
})();
|
|
30378
30726
|
|
|
30379
|
-
// bazel-out/
|
|
30727
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/template_semantics.mjs
|
|
30380
30728
|
var ExpressionSemanticVisitor = class extends RecursiveAstVisitor {
|
|
30381
30729
|
constructor(templateId, boundTarget, oob) {
|
|
30382
30730
|
super();
|
|
@@ -30399,7 +30747,7 @@ var ExpressionSemanticVisitor = class extends RecursiveAstVisitor {
|
|
|
30399
30747
|
}
|
|
30400
30748
|
};
|
|
30401
30749
|
|
|
30402
|
-
// bazel-out/
|
|
30750
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_block.mjs
|
|
30403
30751
|
var TcbGenericContextBehavior;
|
|
30404
30752
|
(function(TcbGenericContextBehavior2) {
|
|
30405
30753
|
TcbGenericContextBehavior2[TcbGenericContextBehavior2["UseEmitter"] = 0] = "UseEmitter";
|
|
@@ -31514,7 +31862,7 @@ var TcbEventHandlerTranslator = class extends TcbExpressionTranslator {
|
|
|
31514
31862
|
}
|
|
31515
31863
|
};
|
|
31516
31864
|
|
|
31517
|
-
// bazel-out/
|
|
31865
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_file.mjs
|
|
31518
31866
|
var import_typescript82 = __toESM(require("typescript"), 1);
|
|
31519
31867
|
var TypeCheckFile = class extends Environment {
|
|
31520
31868
|
constructor(fileName, config, refEmitter, reflector, compilerHost) {
|
|
@@ -31550,7 +31898,7 @@ var TypeCheckFile = class extends Environment {
|
|
|
31550
31898
|
}
|
|
31551
31899
|
};
|
|
31552
31900
|
|
|
31553
|
-
// bazel-out/
|
|
31901
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/context.mjs
|
|
31554
31902
|
var InliningMode;
|
|
31555
31903
|
(function(InliningMode2) {
|
|
31556
31904
|
InliningMode2[InliningMode2["InlineOps"] = 0] = "InlineOps";
|
|
@@ -31788,7 +32136,7 @@ function splitStringAtPoints(str, points) {
|
|
|
31788
32136
|
return splits;
|
|
31789
32137
|
}
|
|
31790
32138
|
|
|
31791
|
-
// bazel-out/
|
|
32139
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/line_mappings.mjs
|
|
31792
32140
|
var LF_CHAR = 10;
|
|
31793
32141
|
var CR_CHAR = 13;
|
|
31794
32142
|
var LINE_SEP_CHAR = 8232;
|
|
@@ -31829,7 +32177,7 @@ function findClosestLineStartPosition(linesMap, position, low = 0, high = linesM
|
|
|
31829
32177
|
return low - 1;
|
|
31830
32178
|
}
|
|
31831
32179
|
|
|
31832
|
-
// bazel-out/
|
|
32180
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/source.mjs
|
|
31833
32181
|
var TemplateSource = class {
|
|
31834
32182
|
constructor(mapping, file) {
|
|
31835
32183
|
this.mapping = mapping;
|
|
@@ -31880,7 +32228,7 @@ var TemplateSourceManager = class {
|
|
|
31880
32228
|
}
|
|
31881
32229
|
};
|
|
31882
32230
|
|
|
31883
|
-
// bazel-out/
|
|
32231
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/template_symbol_builder.mjs
|
|
31884
32232
|
var import_typescript84 = __toESM(require("typescript"), 1);
|
|
31885
32233
|
var SymbolBuilder = class {
|
|
31886
32234
|
constructor(tcbPath, tcbIsShim, typeCheckBlock, templateData, componentScopeReader, getTypeChecker) {
|
|
@@ -32357,7 +32705,7 @@ function sourceSpanEqual(a, b) {
|
|
|
32357
32705
|
return a.start.offset === b.start.offset && a.end.offset === b.end.offset;
|
|
32358
32706
|
}
|
|
32359
32707
|
|
|
32360
|
-
// bazel-out/
|
|
32708
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/checker.mjs
|
|
32361
32709
|
var REGISTRY2 = new DomElementSchemaRegistry();
|
|
32362
32710
|
var TemplateTypeCheckerImpl = class {
|
|
32363
32711
|
constructor(originalProgram, programDriver, typeCheckAdapter, config, refEmitter, reflector, compilerHost, priorBuild, metaReader, localMetaReader, ngModuleIndex, componentScopeReader, typeCheckScopeRegistry, perf) {
|
|
@@ -33050,7 +33398,7 @@ var SingleShimTypeCheckingHost = class extends SingleFileTypeCheckingHost {
|
|
|
33050
33398
|
}
|
|
33051
33399
|
};
|
|
33052
33400
|
|
|
33053
|
-
// bazel-out/
|
|
33401
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/api/api.mjs
|
|
33054
33402
|
var TemplateCheckWithVisitor = class {
|
|
33055
33403
|
run(ctx, component, template) {
|
|
33056
33404
|
const visitor = new TemplateVisitor2(ctx, component, this);
|
|
@@ -33126,7 +33474,7 @@ var TemplateVisitor2 = class extends RecursiveAstVisitor {
|
|
|
33126
33474
|
}
|
|
33127
33475
|
};
|
|
33128
33476
|
|
|
33129
|
-
// bazel-out/
|
|
33477
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/invalid_banana_in_box/index.mjs
|
|
33130
33478
|
var InvalidBananaInBoxCheck = class extends TemplateCheckWithVisitor {
|
|
33131
33479
|
constructor() {
|
|
33132
33480
|
super(...arguments);
|
|
@@ -33151,7 +33499,7 @@ var factory = {
|
|
|
33151
33499
|
create: () => new InvalidBananaInBoxCheck()
|
|
33152
33500
|
};
|
|
33153
33501
|
|
|
33154
|
-
// bazel-out/
|
|
33502
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/missing_control_flow_directive/index.mjs
|
|
33155
33503
|
var KNOWN_CONTROL_FLOW_DIRECTIVES = /* @__PURE__ */ new Map([
|
|
33156
33504
|
["ngIf", "NgIf"],
|
|
33157
33505
|
["ngFor", "NgFor"],
|
|
@@ -33195,7 +33543,7 @@ var factory2 = {
|
|
|
33195
33543
|
}
|
|
33196
33544
|
};
|
|
33197
33545
|
|
|
33198
|
-
// bazel-out/
|
|
33546
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/missing_ngforof_let/index.mjs
|
|
33199
33547
|
var MissingNgForOfLetCheck = class extends TemplateCheckWithVisitor {
|
|
33200
33548
|
constructor() {
|
|
33201
33549
|
super(...arguments);
|
|
@@ -33227,7 +33575,7 @@ var factory3 = {
|
|
|
33227
33575
|
create: () => new MissingNgForOfLetCheck()
|
|
33228
33576
|
};
|
|
33229
33577
|
|
|
33230
|
-
// bazel-out/
|
|
33578
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/nullish_coalescing_not_nullable/index.mjs
|
|
33231
33579
|
var import_typescript87 = __toESM(require("typescript"), 1);
|
|
33232
33580
|
var NullishCoalescingNotNullableCheck = class extends TemplateCheckWithVisitor {
|
|
33233
33581
|
constructor() {
|
|
@@ -33271,7 +33619,7 @@ var factory4 = {
|
|
|
33271
33619
|
}
|
|
33272
33620
|
};
|
|
33273
33621
|
|
|
33274
|
-
// bazel-out/
|
|
33622
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/optional_chain_not_nullable/index.mjs
|
|
33275
33623
|
var import_typescript88 = __toESM(require("typescript"), 1);
|
|
33276
33624
|
var OptionalChainNotNullableCheck = class extends TemplateCheckWithVisitor {
|
|
33277
33625
|
constructor() {
|
|
@@ -33316,7 +33664,7 @@ var factory5 = {
|
|
|
33316
33664
|
}
|
|
33317
33665
|
};
|
|
33318
33666
|
|
|
33319
|
-
// bazel-out/
|
|
33667
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/suffix_not_supported/index.mjs
|
|
33320
33668
|
var STYLE_SUFFIXES = ["px", "%", "em"];
|
|
33321
33669
|
var SuffixNotSupportedCheck = class extends TemplateCheckWithVisitor {
|
|
33322
33670
|
constructor() {
|
|
@@ -33339,7 +33687,7 @@ var factory6 = {
|
|
|
33339
33687
|
create: () => new SuffixNotSupportedCheck()
|
|
33340
33688
|
};
|
|
33341
33689
|
|
|
33342
|
-
// bazel-out/
|
|
33690
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/text_attribute_not_binding/index.mjs
|
|
33343
33691
|
var TextAttributeNotBindingSpec = class extends TemplateCheckWithVisitor {
|
|
33344
33692
|
constructor() {
|
|
33345
33693
|
super(...arguments);
|
|
@@ -33377,10 +33725,10 @@ var factory7 = {
|
|
|
33377
33725
|
create: () => new TextAttributeNotBindingSpec()
|
|
33378
33726
|
};
|
|
33379
33727
|
|
|
33380
|
-
// bazel-out/
|
|
33728
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/src/extended_template_checker.mjs
|
|
33381
33729
|
var import_typescript89 = __toESM(require("typescript"), 1);
|
|
33382
33730
|
|
|
33383
|
-
// bazel-out/
|
|
33731
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/api/src/public_options.mjs
|
|
33384
33732
|
var DiagnosticCategoryLabel;
|
|
33385
33733
|
(function(DiagnosticCategoryLabel2) {
|
|
33386
33734
|
DiagnosticCategoryLabel2["Warning"] = "warning";
|
|
@@ -33388,7 +33736,7 @@ var DiagnosticCategoryLabel;
|
|
|
33388
33736
|
DiagnosticCategoryLabel2["Suppress"] = "suppress";
|
|
33389
33737
|
})(DiagnosticCategoryLabel || (DiagnosticCategoryLabel = {}));
|
|
33390
33738
|
|
|
33391
|
-
// bazel-out/
|
|
33739
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/src/extended_template_checker.mjs
|
|
33392
33740
|
var ExtendedTemplateCheckerImpl = class {
|
|
33393
33741
|
constructor(templateTypeChecker, typeChecker, templateCheckFactories, options) {
|
|
33394
33742
|
var _a, _b, _c, _d, _e;
|
|
@@ -33440,7 +33788,7 @@ function assertNever(value) {
|
|
|
33440
33788
|
${value}`);
|
|
33441
33789
|
}
|
|
33442
33790
|
|
|
33443
|
-
// bazel-out/
|
|
33791
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/index.mjs
|
|
33444
33792
|
var ALL_DIAGNOSTIC_FACTORIES = [
|
|
33445
33793
|
factory,
|
|
33446
33794
|
factory4,
|
|
@@ -33451,7 +33799,7 @@ var ALL_DIAGNOSTIC_FACTORIES = [
|
|
|
33451
33799
|
factory6
|
|
33452
33800
|
];
|
|
33453
33801
|
|
|
33454
|
-
// bazel-out/
|
|
33802
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/compiler.mjs
|
|
33455
33803
|
var CompilationTicketKind;
|
|
33456
33804
|
(function(CompilationTicketKind2) {
|
|
33457
33805
|
CompilationTicketKind2[CompilationTicketKind2["Fresh"] = 0] = "Fresh";
|
|
@@ -34138,7 +34486,7 @@ function versionMapFromProgram(program, driver) {
|
|
|
34138
34486
|
return versions;
|
|
34139
34487
|
}
|
|
34140
34488
|
|
|
34141
|
-
// bazel-out/
|
|
34489
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/host.mjs
|
|
34142
34490
|
var import_typescript92 = __toESM(require("typescript"), 1);
|
|
34143
34491
|
var DelegatingCompilerHost2 = class {
|
|
34144
34492
|
constructor(delegate) {
|
|
@@ -34271,7 +34619,7 @@ var NgCompilerHost = class extends DelegatingCompilerHost2 {
|
|
|
34271
34619
|
}
|
|
34272
34620
|
};
|
|
34273
34621
|
|
|
34274
|
-
// bazel-out/
|
|
34622
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/program.mjs
|
|
34275
34623
|
var NgtscProgram = class {
|
|
34276
34624
|
constructor(rootNames, options, delegateHost, oldProgram) {
|
|
34277
34625
|
this.options = options;
|
|
@@ -34489,21 +34837,21 @@ function mergeEmitResults(emitResults) {
|
|
|
34489
34837
|
return { diagnostics, emitSkipped, emittedFiles };
|
|
34490
34838
|
}
|
|
34491
34839
|
|
|
34492
|
-
// bazel-out/
|
|
34840
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/transformers/program.mjs
|
|
34493
34841
|
function createProgram({ rootNames, options, host, oldProgram }) {
|
|
34494
34842
|
return new NgtscProgram(rootNames, options, host, oldProgram);
|
|
34495
34843
|
}
|
|
34496
34844
|
|
|
34497
|
-
// bazel-out/
|
|
34845
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/perform_compile.mjs
|
|
34498
34846
|
var import_typescript96 = __toESM(require("typescript"), 1);
|
|
34499
34847
|
|
|
34500
|
-
// bazel-out/
|
|
34848
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/transformers/util.mjs
|
|
34501
34849
|
var import_typescript95 = __toESM(require("typescript"), 1);
|
|
34502
34850
|
|
|
34503
|
-
// bazel-out/
|
|
34851
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/transformers/downlevel_decorators_transform/downlevel_decorators_transform.mjs
|
|
34504
34852
|
var import_typescript97 = __toESM(require("typescript"), 1);
|
|
34505
34853
|
|
|
34506
|
-
// bazel-out/
|
|
34854
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/private/tooling.mjs
|
|
34507
34855
|
var GLOBAL_DEFS_FOR_TERSER = {
|
|
34508
34856
|
ngDevMode: false,
|
|
34509
34857
|
ngI18nClosureMode: false
|
|
@@ -34512,7 +34860,7 @@ var GLOBAL_DEFS_FOR_TERSER_WITH_AOT = __spreadProps(__spreadValues({}, GLOBAL_DE
|
|
|
34512
34860
|
ngJitMode: false
|
|
34513
34861
|
});
|
|
34514
34862
|
|
|
34515
|
-
// bazel-out/
|
|
34863
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/logging/src/logger.mjs
|
|
34516
34864
|
var LogLevel;
|
|
34517
34865
|
(function(LogLevel2) {
|
|
34518
34866
|
LogLevel2[LogLevel2["debug"] = 0] = "debug";
|
|
@@ -34521,7 +34869,7 @@ var LogLevel;
|
|
|
34521
34869
|
LogLevel2[LogLevel2["error"] = 3] = "error";
|
|
34522
34870
|
})(LogLevel || (LogLevel = {}));
|
|
34523
34871
|
|
|
34524
|
-
// bazel-out/
|
|
34872
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/logging/src/console_logger.mjs
|
|
34525
34873
|
var RESET = "\x1B[0m";
|
|
34526
34874
|
var RED = "\x1B[31m";
|
|
34527
34875
|
var YELLOW = "\x1B[33m";
|
|
@@ -34530,29 +34878,31 @@ var DEBUG = `${BLUE}Debug:${RESET}`;
|
|
|
34530
34878
|
var WARN = `${YELLOW}Warning:${RESET}`;
|
|
34531
34879
|
var ERROR = `${RED}Error:${RESET}`;
|
|
34532
34880
|
|
|
34533
|
-
// bazel-out/
|
|
34881
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/index.mjs
|
|
34534
34882
|
setFileSystem(new NodeJSFileSystem());
|
|
34535
34883
|
|
|
34536
|
-
// bazel-out/
|
|
34884
|
+
// bazel-out/darwin-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
|
|
34537
34885
|
var import_fs2 = require("fs");
|
|
34538
34886
|
var import_path8 = require("path");
|
|
34539
34887
|
var import_typescript110 = __toESM(require("typescript"), 1);
|
|
34540
34888
|
|
|
34541
|
-
// bazel-out/
|
|
34889
|
+
// bazel-out/darwin-fastbuild/bin/packages/core/schematics/utils/change_tracker.mjs
|
|
34542
34890
|
var import_typescript99 = __toESM(require("typescript"), 1);
|
|
34543
34891
|
|
|
34544
|
-
// bazel-out/
|
|
34892
|
+
// bazel-out/darwin-fastbuild/bin/packages/core/schematics/utils/import_manager.mjs
|
|
34545
34893
|
var import_path4 = require("path");
|
|
34546
34894
|
var import_typescript98 = __toESM(require("typescript"), 1);
|
|
34547
34895
|
var ImportManager2 = class {
|
|
34548
34896
|
constructor(getUpdateRecorder, printer) {
|
|
34897
|
+
__publicField(this, "getUpdateRecorder");
|
|
34898
|
+
__publicField(this, "printer");
|
|
34899
|
+
__publicField(this, "updatedImports", /* @__PURE__ */ new Map());
|
|
34900
|
+
__publicField(this, "usedIdentifierNames", /* @__PURE__ */ new Map());
|
|
34901
|
+
__publicField(this, "newImports", /* @__PURE__ */ new Map());
|
|
34902
|
+
__publicField(this, "quoteStyles", {});
|
|
34903
|
+
__publicField(this, "importCache", []);
|
|
34549
34904
|
this.getUpdateRecorder = getUpdateRecorder;
|
|
34550
34905
|
this.printer = printer;
|
|
34551
|
-
this.updatedImports = /* @__PURE__ */ new Map();
|
|
34552
|
-
this.usedIdentifierNames = /* @__PURE__ */ new Map();
|
|
34553
|
-
this.newImports = /* @__PURE__ */ new Map();
|
|
34554
|
-
this.quoteStyles = {};
|
|
34555
|
-
this.importCache = [];
|
|
34556
34906
|
}
|
|
34557
34907
|
addImportToSourceFile(sourceFile, symbolName, moduleName, alias = null, typeImport = false) {
|
|
34558
34908
|
const sourceDir = (0, import_path4.dirname)(sourceFile.fileName);
|
|
@@ -34723,12 +35073,15 @@ ${text}`;
|
|
|
34723
35073
|
}
|
|
34724
35074
|
};
|
|
34725
35075
|
|
|
34726
|
-
// bazel-out/
|
|
35076
|
+
// bazel-out/darwin-fastbuild/bin/packages/core/schematics/utils/change_tracker.mjs
|
|
34727
35077
|
var ChangeTracker = class {
|
|
34728
35078
|
constructor(_printer, _importRemapper) {
|
|
35079
|
+
__publicField(this, "_printer");
|
|
35080
|
+
__publicField(this, "_importRemapper");
|
|
35081
|
+
__publicField(this, "_changes", /* @__PURE__ */ new Map());
|
|
35082
|
+
__publicField(this, "_importManager");
|
|
34729
35083
|
this._printer = _printer;
|
|
34730
35084
|
this._importRemapper = _importRemapper;
|
|
34731
|
-
this._changes = /* @__PURE__ */ new Map();
|
|
34732
35085
|
this._importManager = new ImportManager2((currentFile) => ({
|
|
34733
35086
|
addNewImport: (start, text) => this.insertText(currentFile, start, text),
|
|
34734
35087
|
updateExistingImport: (namedBindings, text) => this.replaceText(currentFile, namedBindings.getStart(), namedBindings.getWidth(), text)
|
|
@@ -34776,7 +35129,7 @@ function normalizePath(path3) {
|
|
|
34776
35129
|
return path3.replace(/\\/g, "/");
|
|
34777
35130
|
}
|
|
34778
35131
|
|
|
34779
|
-
// bazel-out/
|
|
35132
|
+
// bazel-out/darwin-fastbuild/bin/packages/core/schematics/utils/project_tsconfig_paths.mjs
|
|
34780
35133
|
var import_core13 = require("@angular-devkit/core");
|
|
34781
35134
|
function getProjectTsConfigPaths(tree) {
|
|
34782
35135
|
return __async(this, null, function* () {
|
|
@@ -34856,11 +35209,11 @@ function getWorkspace(tree) {
|
|
|
34856
35209
|
});
|
|
34857
35210
|
}
|
|
34858
35211
|
|
|
34859
|
-
// bazel-out/
|
|
35212
|
+
// bazel-out/darwin-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
|
|
34860
35213
|
var import_path5 = require("path");
|
|
34861
35214
|
var import_typescript101 = __toESM(require("typescript"), 1);
|
|
34862
35215
|
|
|
34863
|
-
// bazel-out/
|
|
35216
|
+
// bazel-out/darwin-fastbuild/bin/packages/core/schematics/utils/typescript/parse_tsconfig.mjs
|
|
34864
35217
|
var path2 = __toESM(require("path"), 1);
|
|
34865
35218
|
var import_typescript100 = __toESM(require("typescript"), 1);
|
|
34866
35219
|
function parseTsconfigFile(tsconfigPath, basePath) {
|
|
@@ -34877,7 +35230,7 @@ function parseTsconfigFile(tsconfigPath, basePath) {
|
|
|
34877
35230
|
return import_typescript100.default.parseJsonConfigFileContent(config, parseConfigHost, basePath, {});
|
|
34878
35231
|
}
|
|
34879
35232
|
|
|
34880
|
-
// bazel-out/
|
|
35233
|
+
// bazel-out/darwin-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
|
|
34881
35234
|
function createProgramOptions(tree, tsconfigPath, basePath, fakeFileRead, additionalFiles, optionOverrides) {
|
|
34882
35235
|
tsconfigPath = (0, import_path5.resolve)(basePath, tsconfigPath);
|
|
34883
35236
|
const parsed = parseTsconfigFile(tsconfigPath, (0, import_path5.dirname)(tsconfigPath));
|
|
@@ -34906,13 +35259,13 @@ function canMigrateFile(basePath, sourceFile, program) {
|
|
|
34906
35259
|
return !(0, import_path5.relative)(basePath, sourceFile.fileName).startsWith("..");
|
|
34907
35260
|
}
|
|
34908
35261
|
|
|
34909
|
-
// bazel-out/
|
|
35262
|
+
// bazel-out/darwin-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/prune-modules.mjs
|
|
34910
35263
|
var import_typescript106 = __toESM(require("typescript"), 1);
|
|
34911
35264
|
|
|
34912
|
-
// bazel-out/
|
|
35265
|
+
// bazel-out/darwin-fastbuild/bin/packages/core/schematics/utils/typescript/decorators.mjs
|
|
34913
35266
|
var import_typescript103 = __toESM(require("typescript"), 1);
|
|
34914
35267
|
|
|
34915
|
-
// bazel-out/
|
|
35268
|
+
// bazel-out/darwin-fastbuild/bin/packages/core/schematics/utils/typescript/imports.mjs
|
|
34916
35269
|
var import_typescript102 = __toESM(require("typescript"), 1);
|
|
34917
35270
|
function getImportOfIdentifier(typeChecker, node) {
|
|
34918
35271
|
const symbol = typeChecker.getSymbolAtLocation(node);
|
|
@@ -34935,19 +35288,26 @@ function getImportOfIdentifier(typeChecker, node) {
|
|
|
34935
35288
|
}
|
|
34936
35289
|
function getImportSpecifier(sourceFile, moduleName, specifierName) {
|
|
34937
35290
|
var _a;
|
|
35291
|
+
return (_a = getImportSpecifiers(sourceFile, moduleName, [specifierName])[0]) != null ? _a : null;
|
|
35292
|
+
}
|
|
35293
|
+
function getImportSpecifiers(sourceFile, moduleName, specifierNames) {
|
|
35294
|
+
var _a;
|
|
35295
|
+
const matches = [];
|
|
34938
35296
|
for (const node of sourceFile.statements) {
|
|
34939
35297
|
if (import_typescript102.default.isImportDeclaration(node) && import_typescript102.default.isStringLiteral(node.moduleSpecifier)) {
|
|
34940
35298
|
const isMatch = typeof moduleName === "string" ? node.moduleSpecifier.text === moduleName : moduleName.test(node.moduleSpecifier.text);
|
|
34941
35299
|
const namedBindings = (_a = node.importClause) == null ? void 0 : _a.namedBindings;
|
|
34942
35300
|
if (isMatch && namedBindings && import_typescript102.default.isNamedImports(namedBindings)) {
|
|
34943
|
-
const
|
|
34944
|
-
|
|
34945
|
-
|
|
35301
|
+
for (const specifierName of specifierNames) {
|
|
35302
|
+
const match = findImportSpecifier(namedBindings.elements, specifierName);
|
|
35303
|
+
if (match) {
|
|
35304
|
+
matches.push(match);
|
|
35305
|
+
}
|
|
34946
35306
|
}
|
|
34947
35307
|
}
|
|
34948
35308
|
}
|
|
34949
35309
|
}
|
|
34950
|
-
return
|
|
35310
|
+
return matches;
|
|
34951
35311
|
}
|
|
34952
35312
|
function findImportSpecifier(nodes, specifierName) {
|
|
34953
35313
|
return nodes.find((element) => {
|
|
@@ -34956,7 +35316,7 @@ function findImportSpecifier(nodes, specifierName) {
|
|
|
34956
35316
|
});
|
|
34957
35317
|
}
|
|
34958
35318
|
|
|
34959
|
-
// bazel-out/
|
|
35319
|
+
// bazel-out/darwin-fastbuild/bin/packages/core/schematics/utils/typescript/decorators.mjs
|
|
34960
35320
|
function getCallDecoratorImport(typeChecker, decorator) {
|
|
34961
35321
|
if (!import_typescript103.default.isCallExpression(decorator.expression) || !import_typescript103.default.isIdentifier(decorator.expression.expression)) {
|
|
34962
35322
|
return null;
|
|
@@ -34965,7 +35325,7 @@ function getCallDecoratorImport(typeChecker, decorator) {
|
|
|
34965
35325
|
return getImportOfIdentifier(typeChecker, identifier);
|
|
34966
35326
|
}
|
|
34967
35327
|
|
|
34968
|
-
// bazel-out/
|
|
35328
|
+
// bazel-out/darwin-fastbuild/bin/packages/core/schematics/utils/ng_decorators.mjs
|
|
34969
35329
|
function getAngularDecorators(typeChecker, decorators) {
|
|
34970
35330
|
return decorators.map((node) => ({ node, importData: getCallDecoratorImport(typeChecker, node) })).filter(({ importData }) => importData && importData.importModule.startsWith("@angular/")).map(({ node, importData }) => ({
|
|
34971
35331
|
node,
|
|
@@ -34975,7 +35335,7 @@ function getAngularDecorators(typeChecker, decorators) {
|
|
|
34975
35335
|
}));
|
|
34976
35336
|
}
|
|
34977
35337
|
|
|
34978
|
-
// bazel-out/
|
|
35338
|
+
// bazel-out/darwin-fastbuild/bin/packages/core/schematics/utils/typescript/nodes.mjs
|
|
34979
35339
|
var import_typescript104 = __toESM(require("typescript"), 1);
|
|
34980
35340
|
function closestNode(node, predicate) {
|
|
34981
35341
|
let current = node.parent;
|
|
@@ -34988,12 +35348,12 @@ function closestNode(node, predicate) {
|
|
|
34988
35348
|
return null;
|
|
34989
35349
|
}
|
|
34990
35350
|
|
|
34991
|
-
// bazel-out/
|
|
35351
|
+
// bazel-out/darwin-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/util.mjs
|
|
34992
35352
|
var import_path6 = require("path");
|
|
34993
35353
|
var import_typescript105 = __toESM(require("typescript"), 1);
|
|
34994
35354
|
var UniqueItemTracker = class {
|
|
34995
35355
|
constructor() {
|
|
34996
|
-
this
|
|
35356
|
+
__publicField(this, "_nodes", /* @__PURE__ */ new Map());
|
|
34997
35357
|
}
|
|
34998
35358
|
track(key, item) {
|
|
34999
35359
|
const set = this._nodes.get(key);
|
|
@@ -35012,12 +35372,18 @@ var UniqueItemTracker = class {
|
|
|
35012
35372
|
};
|
|
35013
35373
|
var ReferenceResolver = class {
|
|
35014
35374
|
constructor(_program, _host, _rootFileNames, _basePath, _excludedFiles) {
|
|
35375
|
+
__publicField(this, "_program");
|
|
35376
|
+
__publicField(this, "_host");
|
|
35377
|
+
__publicField(this, "_rootFileNames");
|
|
35378
|
+
__publicField(this, "_basePath");
|
|
35379
|
+
__publicField(this, "_excludedFiles");
|
|
35380
|
+
__publicField(this, "_languageService");
|
|
35381
|
+
__publicField(this, "_tempOnlyFile", null);
|
|
35015
35382
|
this._program = _program;
|
|
35016
35383
|
this._host = _host;
|
|
35017
35384
|
this._rootFileNames = _rootFileNames;
|
|
35018
35385
|
this._basePath = _basePath;
|
|
35019
35386
|
this._excludedFiles = _excludedFiles;
|
|
35020
|
-
this._tempOnlyFile = null;
|
|
35021
35387
|
}
|
|
35022
35388
|
findReferencesInProject(node) {
|
|
35023
35389
|
const languageService = this._getLanguageService();
|
|
@@ -35158,7 +35524,7 @@ function isClassReferenceInAngularModule(node, className, moduleName, typeChecke
|
|
|
35158
35524
|
}));
|
|
35159
35525
|
}
|
|
35160
35526
|
|
|
35161
|
-
// bazel-out/
|
|
35527
|
+
// bazel-out/darwin-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/prune-modules.mjs
|
|
35162
35528
|
function pruneNgModules(program, host, basePath, rootFileNames, sourceFiles, printer, importRemapper, referenceLookupExcludedFiles) {
|
|
35163
35529
|
const filesToRemove = /* @__PURE__ */ new Set();
|
|
35164
35530
|
const tracker = new ChangeTracker(printer, importRemapper);
|
|
@@ -35357,14 +35723,14 @@ function findNgModuleDecorator(node, typeChecker) {
|
|
|
35357
35723
|
return decorators.find((decorator) => decorator.name === "NgModule") || null;
|
|
35358
35724
|
}
|
|
35359
35725
|
|
|
35360
|
-
// bazel-out/
|
|
35726
|
+
// bazel-out/darwin-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/standalone-bootstrap.mjs
|
|
35361
35727
|
var import_path7 = require("path");
|
|
35362
35728
|
var import_typescript109 = __toESM(require("typescript"), 1);
|
|
35363
35729
|
|
|
35364
|
-
// bazel-out/
|
|
35730
|
+
// bazel-out/darwin-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/to-standalone.mjs
|
|
35365
35731
|
var import_typescript108 = __toESM(require("typescript"), 1);
|
|
35366
35732
|
|
|
35367
|
-
// bazel-out/
|
|
35733
|
+
// bazel-out/darwin-fastbuild/bin/packages/core/schematics/utils/typescript/symbol.mjs
|
|
35368
35734
|
var import_typescript107 = __toESM(require("typescript"), 1);
|
|
35369
35735
|
function isReferenceToImport(typeChecker, node, importSpecifier) {
|
|
35370
35736
|
var _a, _b;
|
|
@@ -35373,7 +35739,7 @@ function isReferenceToImport(typeChecker, node, importSpecifier) {
|
|
|
35373
35739
|
return !!(((_a = nodeSymbol == null ? void 0 : nodeSymbol.declarations) == null ? void 0 : _a[0]) && ((_b = importSymbol == null ? void 0 : importSymbol.declarations) == null ? void 0 : _b[0])) && nodeSymbol.declarations[0] === importSymbol.declarations[0];
|
|
35374
35740
|
}
|
|
35375
35741
|
|
|
35376
|
-
// bazel-out/
|
|
35742
|
+
// bazel-out/darwin-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/to-standalone.mjs
|
|
35377
35743
|
function toStandalone(sourceFiles, program, printer, fileImportRemapper, componentImportRemapper) {
|
|
35378
35744
|
const templateTypeChecker = program.compiler.getTemplateTypeChecker();
|
|
35379
35745
|
const typeChecker = program.getTsProgram().getTypeChecker();
|
|
@@ -35736,7 +36102,7 @@ function isStandaloneDeclaration(node, declarationsInMigration, templateTypeChec
|
|
|
35736
36102
|
return metadata != null && metadata.isStandalone;
|
|
35737
36103
|
}
|
|
35738
36104
|
|
|
35739
|
-
// bazel-out/
|
|
36105
|
+
// bazel-out/darwin-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/standalone-bootstrap.mjs
|
|
35740
36106
|
function toStandaloneBootstrap(program, host, basePath, rootFileNames, sourceFiles, printer, importRemapper, referenceLookupExcludedFiles, componentImportRemapper) {
|
|
35741
36107
|
const tracker = new ChangeTracker(printer, importRemapper);
|
|
35742
36108
|
const typeChecker = program.getTsProgram().getTypeChecker();
|
|
@@ -36113,7 +36479,7 @@ function hasImport(program, rootFileNames, moduleName) {
|
|
|
36113
36479
|
return false;
|
|
36114
36480
|
}
|
|
36115
36481
|
|
|
36116
|
-
// bazel-out/
|
|
36482
|
+
// bazel-out/darwin-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
|
|
36117
36483
|
var MigrationMode;
|
|
36118
36484
|
(function(MigrationMode2) {
|
|
36119
36485
|
MigrationMode2["toStandalone"] = "convert-to-standalone";
|