Skip to content

Commit

Permalink
Revert "refactor(core): Use ActionResolver in Dispatcher. (angula…
Browse files Browse the repository at this point in the history
…r#56369)" (angular#56440)

This reverts commit 4ebd285.

PR Close angular#56440
  • Loading branch information
AndrewKushnir committed Jun 13, 2024
1 parent 0b867e8 commit fca5764
Show file tree
Hide file tree
Showing 6 changed files with 1,011 additions and 877 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export interface EarlyJsactionDataContainer {

// @public
export class EventContract implements UnrenamedEventContract {
constructor(containerManager: EventContractContainerManager, useActionResolver: false);
constructor(containerManager: EventContractContainerManager, useActionResolver?: boolean);
// (undocumented)
static A11Y_CLICK_SUPPORT: boolean;
addA11yClickSupport(): void;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ export class EventContract implements UnrenamedEventContract {

constructor(
containerManager: EventContractContainerManager,
private readonly useActionResolver: false,
private readonly useActionResolver = true,
) {
this.containerManager = containerManager;
if (this.useActionResolver) {
Expand Down
Loading

0 comments on commit fca5764

Please sign in to comment.