2018-01-09 18:38:17 -08:00
|
|
|
/**
|
|
|
|
* @license
|
|
|
|
* Copyright Google Inc. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
|
|
* found in the LICENSE file at https://angular.io/license
|
|
|
|
*/
|
|
|
|
|
2018-04-12 15:54:16 -07:00
|
|
|
import {Injector} from '../../di/injector';
|
2018-05-09 15:30:16 -07:00
|
|
|
import {Sanitizer} from '../../sanitization/security';
|
|
|
|
|
2018-01-09 18:38:17 -08:00
|
|
|
import {LContainer} from './container';
|
2018-04-13 23:02:29 -07:00
|
|
|
import {ComponentTemplate, DirectiveDef, DirectiveDefList, PipeDef, PipeDefList} from './definition';
|
2018-01-09 18:38:17 -08:00
|
|
|
import {LElementNode, LViewNode, TNode} from './node';
|
2018-01-29 14:51:37 +01:00
|
|
|
import {LQueries} from './query';
|
2018-01-09 18:38:17 -08:00
|
|
|
import {Renderer3} from './renderer';
|
|
|
|
|
|
|
|
|
2018-03-21 15:10:34 -07:00
|
|
|
|
2018-01-09 18:38:17 -08:00
|
|
|
/**
|
|
|
|
* `LView` stores all of the information needed to process the instructions as
|
|
|
|
* they are invoked from the template. Each embedded view and component view has its
|
|
|
|
* own `LView`. When processing a particular view, we set the `currentView` to that
|
|
|
|
* `LView`. When that view is done processing, the `currentView` is set back to
|
2018-02-02 14:59:31 -08:00
|
|
|
* whatever the original `currentView` was before (the parent `LView`).
|
2018-01-09 18:38:17 -08:00
|
|
|
*
|
|
|
|
* Keeping separate state for each view facilities view insertion / deletion, so we
|
|
|
|
* don't have to edit the data array based on which views are present.
|
|
|
|
*/
|
|
|
|
export interface LView {
|
2018-02-23 13:17:20 -08:00
|
|
|
/** Flags for this view (see LViewFlags for definition of each bit). */
|
2018-02-20 13:31:31 -08:00
|
|
|
flags: LViewFlags;
|
2018-01-09 18:38:17 -08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The parent view is needed when we exit the view and must restore the previous
|
|
|
|
* `LView`. Without this, the render method would have to keep a stack of
|
|
|
|
* views as it is recursively rendering templates.
|
|
|
|
*/
|
|
|
|
readonly parent: LView|null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Pointer to the `LViewNode` or `LElementNode` which represents the root of the view.
|
|
|
|
*
|
|
|
|
* If `LViewNode`, this is an embedded view of a container. We need this to be able to
|
|
|
|
* efficiently find the `LViewNode` when inserting the view into an anchor.
|
|
|
|
*
|
|
|
|
* If `LElementNode`, this is the LView of a component.
|
|
|
|
*/
|
2018-05-16 05:56:01 -07:00
|
|
|
// TODO(kara): Remove when we have parent/child on TNodes
|
2018-01-09 18:38:17 -08:00
|
|
|
readonly node: LViewNode|LElementNode;
|
|
|
|
|
|
|
|
/** Renderer to be used for this view. */
|
|
|
|
readonly renderer: Renderer3;
|
|
|
|
|
2018-04-10 20:57:20 -07:00
|
|
|
/**
|
|
|
|
* The binding index we should access next.
|
|
|
|
*
|
|
|
|
* This is stored so that bindings can continue where they left off
|
|
|
|
* if a view is left midway through processing bindings (e.g. if there is
|
|
|
|
* a setter that creates an embedded view, like in ngIf).
|
|
|
|
*/
|
|
|
|
bindingIndex: number;
|
2018-01-09 18:38:17 -08:00
|
|
|
|
|
|
|
/**
|
2018-01-23 10:57:48 -08:00
|
|
|
* When a view is destroyed, listeners need to be released and outputs need to be
|
|
|
|
* unsubscribed. This cleanup array stores both listener data (in chunks of 4)
|
|
|
|
* and output data (in chunks of 2) for a particular view. Combining the arrays
|
2018-01-09 18:38:17 -08:00
|
|
|
* saves on memory (70 bytes per array) and on a few bytes of code size (for two
|
|
|
|
* separate for loops).
|
|
|
|
*
|
|
|
|
* If it's a listener being stored:
|
|
|
|
* 1st index is: event name to remove
|
|
|
|
* 2nd index is: native element
|
|
|
|
* 3rd index is: listener function
|
|
|
|
* 4th index is: useCapture boolean
|
|
|
|
*
|
2018-01-23 10:57:48 -08:00
|
|
|
* If it's an output subscription:
|
|
|
|
* 1st index is: unsubscribe function
|
|
|
|
* 2nd index is: context for function
|
2018-01-09 18:38:17 -08:00
|
|
|
*/
|
|
|
|
cleanup: any[]|null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The last LView or LContainer beneath this LView in the hierarchy.
|
|
|
|
*
|
|
|
|
* The tail allows us to quickly add a new state to the end of the view list
|
|
|
|
* without having to propagate starting from the first child.
|
|
|
|
*/
|
|
|
|
tail: LView|LContainer|null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The next sibling LView or LContainer.
|
|
|
|
*
|
|
|
|
* Allows us to propagate between sibling view states that aren't in the same
|
|
|
|
* container. Embedded views already have a node.next, but it is only set for
|
|
|
|
* views in the same container. We need a way to link component views and views
|
|
|
|
* across containers as well.
|
|
|
|
*/
|
|
|
|
next: LView|LContainer|null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This array stores all element/text/container nodes created inside this view
|
|
|
|
* and their bindings. Stored as an array rather than a linked list so we can
|
|
|
|
* look up nodes directly in the case of forward declaration or bindings
|
2018-03-21 15:10:34 -07:00
|
|
|
* (e.g. E(1)).
|
2018-01-09 18:38:17 -08:00
|
|
|
*
|
|
|
|
* All bindings for a given view are stored in the order in which they
|
|
|
|
* appear in the template, starting with `bindingStartIndex`.
|
|
|
|
* We use `bindingIndex` to internally keep track of which binding
|
|
|
|
* is currently active.
|
|
|
|
*/
|
|
|
|
readonly data: any[];
|
|
|
|
|
2018-03-21 15:10:34 -07:00
|
|
|
/**
|
|
|
|
* An array of directive instances in the current view.
|
|
|
|
*
|
|
|
|
* These must be stored separately from LNodes because their presence is
|
|
|
|
* unknown at compile-time and thus space cannot be reserved in data[].
|
|
|
|
*/
|
|
|
|
directives: any[]|null;
|
|
|
|
|
2018-01-09 18:38:17 -08:00
|
|
|
/**
|
2018-01-10 18:19:16 -08:00
|
|
|
* The static data for this view. We need a reference to this so we can easily walk up the
|
|
|
|
* node tree in DI and get the TView.data array associated with a node (where the
|
|
|
|
* directive defs are stored).
|
2018-01-09 18:38:17 -08:00
|
|
|
*/
|
2018-01-10 18:19:16 -08:00
|
|
|
tView: TView;
|
2018-01-17 10:09:05 -08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* For dynamically inserted views, the template function to refresh the view.
|
|
|
|
*/
|
|
|
|
template: ComponentTemplate<{}>|null;
|
|
|
|
|
|
|
|
/**
|
2018-02-03 20:34:30 -08:00
|
|
|
* - For embedded views, the context with which to render the template.
|
|
|
|
* - For root view of the root component the context contains change detection data.
|
|
|
|
* - `null` otherwise.
|
2018-01-17 10:09:05 -08:00
|
|
|
*/
|
2018-02-03 20:34:30 -08:00
|
|
|
context: {}|RootContext|null;
|
2018-01-17 10:09:05 -08:00
|
|
|
|
2018-01-17 17:55:55 +01:00
|
|
|
/**
|
|
|
|
* Queries active for this view - nodes from a view are reported to those queries
|
|
|
|
*/
|
2018-01-29 14:51:37 +01:00
|
|
|
queries: LQueries|null;
|
2018-04-12 15:54:16 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* An optional Module Injector to be used as fall back after Element Injectors are consulted.
|
|
|
|
*/
|
|
|
|
injector: Injector|null;
|
2018-05-09 15:30:16 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* An optional custom sanitizer
|
|
|
|
*/
|
|
|
|
sanitizer: Sanitizer|null;
|
2018-01-09 18:38:17 -08:00
|
|
|
}
|
|
|
|
|
2018-02-23 13:17:20 -08:00
|
|
|
/** Flags associated with an LView (saved in LView.flags) */
|
|
|
|
export const enum LViewFlags {
|
|
|
|
/**
|
|
|
|
* Whether or not the view is in creationMode.
|
|
|
|
*
|
|
|
|
* This must be stored in the view rather than using `data` as a marker so that
|
|
|
|
* we can properly support embedded views. Otherwise, when exiting a child view
|
|
|
|
* back into the parent view, `data` will be defined and `creationMode` will be
|
|
|
|
* improperly reported as false.
|
|
|
|
*/
|
2018-05-31 15:45:46 +02:00
|
|
|
CreationMode = 0b000001,
|
2018-02-23 13:17:20 -08:00
|
|
|
|
|
|
|
/** Whether this view has default change detection strategy (checks always) or onPush */
|
2018-05-31 15:45:46 +02:00
|
|
|
CheckAlways = 0b000010,
|
2018-02-23 13:17:20 -08:00
|
|
|
|
|
|
|
/** Whether or not this view is currently dirty (needing check) */
|
2018-05-31 15:45:46 +02:00
|
|
|
Dirty = 0b000100,
|
2018-03-08 16:55:47 -08:00
|
|
|
|
|
|
|
/** Whether or not this view is currently attached to change detection tree. */
|
2018-05-31 15:45:46 +02:00
|
|
|
Attached = 0b001000,
|
2018-06-01 18:54:23 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Whether or not the init hooks have run.
|
|
|
|
*
|
|
|
|
* If on, the init hooks haven't yet been run and should be executed by the first component that
|
|
|
|
* runs OR the first cR() instruction that runs (so inits are run for the top level view before
|
|
|
|
* any embedded views).
|
|
|
|
*/
|
2018-05-31 15:45:46 +02:00
|
|
|
RunInit = 0b010000,
|
|
|
|
|
|
|
|
/** Whether or not this view is destroyed. */
|
|
|
|
Destroyed = 0b100000,
|
2018-02-20 13:31:31 -08:00
|
|
|
}
|
|
|
|
|
2018-01-09 18:38:17 -08:00
|
|
|
/** Interface necessary to work with view tree traversal */
|
|
|
|
export interface LViewOrLContainer {
|
|
|
|
next: LView|LContainer|null;
|
|
|
|
views?: LViewNode[];
|
2018-05-30 13:43:14 -07:00
|
|
|
tView?: TView;
|
2018-01-09 18:38:17 -08:00
|
|
|
parent: LView|null;
|
|
|
|
}
|
|
|
|
|
2018-01-10 18:19:16 -08:00
|
|
|
/**
|
|
|
|
* The static data for an LView (shared between all templates of a
|
|
|
|
* given type).
|
|
|
|
*
|
|
|
|
* Stored on the template function as ngPrivateData.
|
|
|
|
*/
|
2018-01-22 17:43:52 -08:00
|
|
|
export interface TView {
|
2018-06-01 19:28:20 -07:00
|
|
|
/**
|
|
|
|
* ID for inline views to determine whether a view is the same as the previous view
|
|
|
|
* in a certain position. If it's not, we know the new view needs to be inserted
|
|
|
|
* and the one that exists needs to be removed (e.g. if/else statements)
|
|
|
|
*
|
|
|
|
* If this is -1, then this is a component view or a dynamically created view.
|
|
|
|
*/
|
|
|
|
readonly id: number;
|
|
|
|
|
2018-05-16 05:56:01 -07:00
|
|
|
/**
|
|
|
|
* Pointer to the `TNode` that represents the root of the view.
|
|
|
|
*
|
|
|
|
* If this is a `TNode` for an `LViewNode`, this is an embedded view of a container.
|
|
|
|
* We need this pointer to be able to efficiently find this node when inserting the view
|
|
|
|
* into an anchor.
|
|
|
|
*
|
|
|
|
* If this is a `TNode` for an `LElementNode`, this is the TView of a component.
|
|
|
|
*/
|
|
|
|
node: TNode;
|
|
|
|
|
2018-03-25 21:32:39 -07:00
|
|
|
/** Whether or not this template has been processed. */
|
|
|
|
firstTemplatePass: boolean;
|
|
|
|
|
2018-03-21 15:10:34 -07:00
|
|
|
/** Static data equivalent of LView.data[]. Contains TNodes. */
|
2018-01-22 17:43:52 -08:00
|
|
|
data: TData;
|
|
|
|
|
2018-06-01 18:14:05 -07:00
|
|
|
/**
|
|
|
|
* The binding start index is the index at which the data array
|
|
|
|
* starts to store bindings only. Saving this value ensures that we
|
|
|
|
* will begin reading bindings at the correct point in the array when
|
|
|
|
* we are in update mode.
|
|
|
|
*/
|
|
|
|
bindingStartIndex: number;
|
|
|
|
|
2018-05-30 13:43:14 -07:00
|
|
|
/**
|
|
|
|
* Index of the host node of the first LView or LContainer beneath this LView in
|
|
|
|
* the hierarchy.
|
|
|
|
*
|
|
|
|
* Necessary to store this so views can traverse through their nested views
|
|
|
|
* to remove listeners and call onDestroy callbacks.
|
|
|
|
*
|
|
|
|
* For embedded views, we store the index of an LContainer's host rather than the first
|
|
|
|
* LView to avoid managing splicing when views are added/removed.
|
|
|
|
*/
|
|
|
|
childIndex: number;
|
|
|
|
|
2018-04-04 21:21:12 -07:00
|
|
|
/**
|
|
|
|
* Selector matches for a node are temporarily cached on the TView so the
|
|
|
|
* DI system can eagerly instantiate directives on the same node if they are
|
|
|
|
* created out of order. They are overwritten after each node.
|
|
|
|
*
|
|
|
|
* <div dirA dirB></div>
|
|
|
|
*
|
|
|
|
* e.g. DirA injects DirB, but DirA is created first. DI should instantiate
|
|
|
|
* DirB when it finds that it's on the same node, but not yet created.
|
|
|
|
*
|
|
|
|
* Even indices: Directive defs
|
|
|
|
* Odd indices:
|
|
|
|
* - Null if the associated directive hasn't been instantiated yet
|
|
|
|
* - Directive index, if associated directive has been created
|
|
|
|
* - String, temporary 'CIRCULAR' token set while dependencies are being resolved
|
|
|
|
*/
|
|
|
|
currentMatches: CurrentMatchesList|null;
|
|
|
|
|
2018-03-21 15:10:34 -07:00
|
|
|
/**
|
2018-03-25 21:32:39 -07:00
|
|
|
* Directive and component defs that have already been matched to nodes on
|
|
|
|
* this view.
|
2018-03-21 15:10:34 -07:00
|
|
|
*
|
|
|
|
* Defs are stored at the same index in TView.directives[] as their instances
|
|
|
|
* are stored in LView.directives[]. This simplifies lookup in DI.
|
|
|
|
*/
|
2018-03-25 21:32:39 -07:00
|
|
|
directives: DirectiveDefList|null;
|
2018-03-21 15:10:34 -07:00
|
|
|
|
2018-03-25 21:32:39 -07:00
|
|
|
/**
|
|
|
|
* Full registry of directives and components that may be found in this view.
|
|
|
|
*
|
|
|
|
* It's necessary to keep a copy of the full def list on the TView so it's possible
|
|
|
|
* to render template functions without a host component.
|
|
|
|
*/
|
|
|
|
directiveRegistry: DirectiveDefList|null;
|
2018-01-22 17:43:52 -08:00
|
|
|
|
2018-03-27 15:53:48 -07:00
|
|
|
/**
|
|
|
|
* Full registry of pipes that may be found in this view.
|
|
|
|
*
|
|
|
|
* The property is either an array of `PipeDefs`s or a function which returns the array of
|
|
|
|
* `PipeDefs`s. The function is necessary to be able to support forward declarations.
|
|
|
|
*
|
|
|
|
* It's necessary to keep a copy of the full def list on the TView so it's possible
|
|
|
|
* to render template functions without a host component.
|
|
|
|
*/
|
|
|
|
pipeRegistry: PipeDefList|null;
|
|
|
|
|
2018-01-22 17:43:52 -08:00
|
|
|
/**
|
2018-01-25 20:41:57 -08:00
|
|
|
* Array of ngOnInit and ngDoCheck hooks that should be executed for this view in
|
|
|
|
* creation mode.
|
2018-01-22 17:43:52 -08:00
|
|
|
*
|
2018-01-25 20:41:57 -08:00
|
|
|
* Even indices: Directive index
|
2018-01-22 17:43:52 -08:00
|
|
|
* Odd indices: Hook function
|
|
|
|
*/
|
|
|
|
initHooks: HookData|null;
|
2018-01-22 19:19:47 -08:00
|
|
|
|
|
|
|
/**
|
2018-01-25 20:41:57 -08:00
|
|
|
* Array of ngDoCheck hooks that should be executed for this view in update mode.
|
2018-01-22 19:19:47 -08:00
|
|
|
*
|
2018-01-25 20:41:57 -08:00
|
|
|
* Even indices: Directive index
|
|
|
|
* Odd indices: Hook function
|
|
|
|
*/
|
|
|
|
checkHooks: HookData|null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Array of ngAfterContentInit and ngAfterContentChecked hooks that should be executed
|
|
|
|
* for this view in creation mode.
|
|
|
|
*
|
|
|
|
* Even indices: Directive index
|
2018-01-22 19:19:47 -08:00
|
|
|
* Odd indices: Hook function
|
|
|
|
*/
|
|
|
|
contentHooks: HookData|null;
|
|
|
|
|
2018-01-25 20:41:57 -08:00
|
|
|
/**
|
|
|
|
* Array of ngAfterContentChecked hooks that should be executed for this view in update
|
|
|
|
* mode.
|
|
|
|
*
|
|
|
|
* Even indices: Directive index
|
|
|
|
* Odd indices: Hook function
|
|
|
|
*/
|
|
|
|
contentCheckHooks: HookData|null;
|
|
|
|
|
2018-01-22 19:19:47 -08:00
|
|
|
/**
|
|
|
|
* Array of ngAfterViewInit and ngAfterViewChecked hooks that should be executed for
|
2018-01-25 20:41:57 -08:00
|
|
|
* this view in creation mode.
|
2018-01-22 19:19:47 -08:00
|
|
|
*
|
2018-01-25 20:41:57 -08:00
|
|
|
* Even indices: Directive index
|
2018-01-22 19:19:47 -08:00
|
|
|
* Odd indices: Hook function
|
|
|
|
*/
|
|
|
|
viewHooks: HookData|null;
|
2018-01-23 10:57:48 -08:00
|
|
|
|
2018-01-25 20:41:57 -08:00
|
|
|
/**
|
|
|
|
* Array of ngAfterViewChecked hooks that should be executed for this view in
|
|
|
|
* update mode.
|
|
|
|
*
|
|
|
|
* Even indices: Directive index
|
|
|
|
* Odd indices: Hook function
|
|
|
|
*/
|
|
|
|
viewCheckHooks: HookData|null;
|
|
|
|
|
2018-01-23 10:57:48 -08:00
|
|
|
/**
|
|
|
|
* Array of ngOnDestroy hooks that should be executed when this view is destroyed.
|
|
|
|
*
|
|
|
|
* Even indices: Directive index
|
|
|
|
* Odd indices: Hook function
|
|
|
|
*/
|
|
|
|
destroyHooks: HookData|null;
|
2018-03-13 11:48:09 -07:00
|
|
|
|
|
|
|
/**
|
2018-03-21 15:10:34 -07:00
|
|
|
* Array of pipe ngOnDestroy hooks that should be executed when this view is destroyed.
|
|
|
|
*
|
|
|
|
* Even indices: Index of pipe in data
|
|
|
|
* Odd indices: Hook function
|
|
|
|
*
|
|
|
|
* These must be stored separately from directive destroy hooks because their contexts
|
|
|
|
* are stored in data.
|
|
|
|
*/
|
|
|
|
pipeDestroyHooks: HookData|null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A list of directive and element indices for child components that will need to be
|
|
|
|
* refreshed when the current view has finished its check.
|
|
|
|
*
|
|
|
|
* Even indices: Directive indices
|
|
|
|
* Odd indices: Element indices
|
2018-03-13 11:48:09 -07:00
|
|
|
*/
|
|
|
|
components: number[]|null;
|
2018-03-16 16:42:13 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* A list of indices for child directives that have host bindings.
|
|
|
|
*
|
|
|
|
* Even indices: Directive indices
|
|
|
|
* Odd indices: Element indices
|
|
|
|
*/
|
|
|
|
hostBindings: number[]|null;
|
2018-01-22 17:43:52 -08:00
|
|
|
}
|
|
|
|
|
2018-02-03 20:34:30 -08:00
|
|
|
/**
|
|
|
|
* RootContext contains information which is shared for all components which
|
|
|
|
* were bootstrapped with {@link renderComponent}.
|
|
|
|
*/
|
|
|
|
export interface RootContext {
|
|
|
|
/**
|
|
|
|
* A function used for scheduling change detection in the future. Usually
|
|
|
|
* this is `requestAnimationFrame`.
|
|
|
|
*/
|
|
|
|
scheduler: (workFn: () => void) => void;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A promise which is resolved when all components are considered clean (not dirty).
|
|
|
|
*
|
|
|
|
* This promise is overwritten every time a first call to {@link markDirty} is invoked.
|
|
|
|
*/
|
|
|
|
clean: Promise<null>;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* RootComponent - The component which was instantiated by the call to
|
|
|
|
* {@link renderComponent}.
|
|
|
|
*/
|
|
|
|
component: {};
|
|
|
|
}
|
|
|
|
|
2018-01-22 17:43:52 -08:00
|
|
|
/**
|
2018-01-23 10:57:48 -08:00
|
|
|
* Array of hooks that should be executed for a view and their directive indices.
|
2018-01-22 17:43:52 -08:00
|
|
|
*
|
2018-01-25 20:41:57 -08:00
|
|
|
* Even indices: Directive index
|
2018-01-22 17:43:52 -08:00
|
|
|
* Odd indices: Hook function
|
|
|
|
*/
|
|
|
|
export type HookData = (number | (() => void))[];
|
2018-01-10 18:19:16 -08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Static data that corresponds to the instance-specific data array on an LView.
|
|
|
|
*
|
|
|
|
* Each node's static data is stored in tData at the same index that it's stored
|
2018-03-21 15:10:34 -07:00
|
|
|
* in the data array. Each pipe's definition is stored here at the same index
|
|
|
|
* as its pipe instance in the data array. Any nodes that do not have static
|
2018-01-10 18:19:16 -08:00
|
|
|
* data store a null value in tData to avoid a sparse array.
|
|
|
|
*/
|
2018-04-13 23:02:29 -07:00
|
|
|
export type TData = (TNode | PipeDef<any>| null)[];
|
2018-01-10 18:19:16 -08:00
|
|
|
|
2018-04-04 21:21:12 -07:00
|
|
|
/** Type for TView.currentMatches */
|
2018-04-13 23:02:29 -07:00
|
|
|
export type CurrentMatchesList = [DirectiveDef<any>, (string | number | null)];
|
2018-04-04 21:21:12 -07:00
|
|
|
|
2018-01-09 18:38:17 -08:00
|
|
|
// Note: This hack is necessary so we don't erroneously get a circular dependency
|
|
|
|
// failure based on types.
|
|
|
|
export const unusedValueExportToPlacateAjd = 1;
|