fix(compiler): codegen view query generic types

This commit is contained in:
Rob Wormald
2016-05-25 14:29:06 -07:00
committed by Victor Berchet
parent 41ef4b3d4a
commit e157a065b0
4 changed files with 55 additions and 8 deletions

View File

@ -70,15 +70,11 @@ export class QueryList<T> {
toString(): string { return this._results.toString(); }
/**
* @internal
*/
reset(res: Array<T|any[]>): void {
this._results = ListWrapper.flatten(res);
this._dirty = false;
}
/** @internal */
notifyOnChanges(): void { this._emitter.emit(this); }
/** internal */