Skip to content

Commit f77d946

Browse files
committed
chore: fix missing renames
1 parent 5f10eef commit f77d946

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

packages/@lwc/engine-core/src/framework/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,4 +72,4 @@ export { default as wire } from './decorators/wire';
7272
export { readonly } from './readonly';
7373

7474
export { setFeatureFlag, setFeatureFlagForTest } from '@lwc/features';
75-
export { setSignalValidator } from '@lwc/shared';
75+
export { setTrustedSignalSet } from '@lwc/shared';

packages/@lwc/engine-dom/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export {
3030
isComponentConstructor,
3131
parseFragment,
3232
parseSVGFragment,
33-
setSignalValidator,
33+
setTrustedSignalSet,
3434
swapComponent,
3535
swapStyle,
3636
swapTemplate,

packages/@lwc/integration-karma/helpers/test-utils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -643,7 +643,7 @@ window.TestUtils = (function (lwc, jasmine, beforeAll) {
643643
};
644644

645645
const signalValidator = new WeakSet();
646-
lwc.setSignalValidator(signalValidator);
646+
lwc.setTrustedSignalSet(signalValidator);
647647

648648
function addTrustedSignal(signal) {
649649
signalValidator.add(signal);

packages/@lwc/signals/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
*/
77

88
import { addTrustedSignal } from '@lwc/shared';
9-
export { setSignalValidator } from '@lwc/shared';
9+
export { setTrustedSignalSet } from '@lwc/shared';
1010

1111
export type OnUpdate = () => void;
1212
export type Unsubscribe = () => void;

0 commit comments

Comments
 (0)