refactor(ivy): remove markDirty from global utilities (#34453)
Removes `markDirty` from the global debugging utilities API since we've already exposed `detectChanges`. PR Close #34453
This commit is contained in:

committed by
Andrew Kushnir

parent
471375adbe
commit
cd9ae66b35
@ -7,8 +7,6 @@
|
||||
*/
|
||||
import {assertDefined} from '../../util/assert';
|
||||
import {global} from '../../util/global';
|
||||
import {markDirty} from '../instructions/all';
|
||||
|
||||
import {applyChanges} from './change_detection_utils';
|
||||
import {getComponent, getContext, getDirectives, getHostElement, getInjector, getListeners, getOwningComponent, getRootComponents} from './discovery_utils';
|
||||
|
||||
@ -50,7 +48,6 @@ export function publishDefaultGlobalUtils() {
|
||||
publishGlobalUtil('getInjector', getInjector);
|
||||
publishGlobalUtil('getRootComponents', getRootComponents);
|
||||
publishGlobalUtil('getDirectives', getDirectives);
|
||||
publishGlobalUtil('markDirty', markDirty);
|
||||
publishGlobalUtil('applyChanges', applyChanges);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user