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 15c732c240
commit 25e9ca0113
5 changed files with 0 additions and 12 deletions

View File

@ -5,7 +5,6 @@
* 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
*/
import {ɵmarkDirty as markDirty} from '@angular/core';
import {applyChanges} from '../../src/render3/util/change_detection_utils';
import {getComponent, getContext, getDirectives, getHostElement, getInjector, getListeners, getOwningComponent, getRootComponents} from '../../src/render3/util/discovery_utils';
@ -45,8 +44,6 @@ describe('global utils', () => {
it('should publish getInjector', () => { assertPublished('getInjector', getInjector); });
it('should publish markDirty', () => { assertPublished('markDirty', markDirty); });
it('should publish applyChanges', () => { assertPublished('applyChanges', applyChanges); });
});
});