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:
Kristiyan Kostadinov
2020-01-13 20:23:35 +01:00
committed by Andrew Kushnir
parent 471375adbe
commit cd9ae66b35
5 changed files with 0 additions and 12 deletions

View File

@ -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);
}
}