refactor(ivy): use ɵɵ instead of Δ for now (#29850)
The `Δ` caused issue with other infrastructure, and we are temporarily changing it to `ɵɵ`. This commit also patches ts_api_guardian_test and AIO to understand `ɵɵ`. PR Close #29850
This commit is contained in:
@ -7,7 +7,7 @@
|
||||
*/
|
||||
|
||||
import {DOCUMENT} from '@angular/common';
|
||||
import {Inject, Injectable, Δinject} from '@angular/core';
|
||||
import {Inject, Injectable, ɵɵinject} from '@angular/core';
|
||||
|
||||
import {getDOM} from '../dom/dom_adapter';
|
||||
|
||||
@ -15,7 +15,7 @@ import {getDOM} from '../dom/dom_adapter';
|
||||
* Factory to create Title service.
|
||||
*/
|
||||
export function createTitle() {
|
||||
return new Title(Δinject(DOCUMENT));
|
||||
return new Title(ɵɵinject(DOCUMENT));
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user