build(npm): update to typescript@1.7.3 + fix broccoli-typescript + fix src
This commit is contained in:
@ -932,7 +932,7 @@ export class Injector {
|
||||
/** @internal */
|
||||
_getByKeyHost(key: Key, optional: boolean, providerVisibility: Visibility,
|
||||
lowerBoundVisibility: Object): any {
|
||||
var inj = this;
|
||||
var inj: Injector = this;
|
||||
|
||||
if (lowerBoundVisibility instanceof SkipSelfMetadata) {
|
||||
if (inj._isHost) {
|
||||
@ -965,7 +965,7 @@ export class Injector {
|
||||
/** @internal */
|
||||
_getByKeyDefault(key: Key, optional: boolean, providerVisibility: Visibility,
|
||||
lowerBoundVisibility: Object): any {
|
||||
var inj = this;
|
||||
var inj: Injector = this;
|
||||
|
||||
if (lowerBoundVisibility instanceof SkipSelfMetadata) {
|
||||
providerVisibility = inj._isHost ? Visibility.PublicAndPrivate : Visibility.Public;
|
||||
|
@ -571,7 +571,7 @@ export class ElementInjector extends TreeNode<ElementInjector> implements Depend
|
||||
ngAfterContentChecked(): void { this._queryStrategy.updateContentQueries(); }
|
||||
|
||||
traverseAndSetQueriesAsDirty(): void {
|
||||
var inj = this;
|
||||
var inj: ElementInjector = this;
|
||||
while (isPresent(inj)) {
|
||||
inj._setQueriesAsDirty();
|
||||
inj = inj.parent;
|
||||
|
Reference in New Issue
Block a user