Skip to content

Commit

Permalink
fix(core): add needed closure compiler warning suppression
Browse files Browse the repository at this point in the history
  • Loading branch information
alexeagle authored and matsko committed Jun 30, 2017
1 parent 79b6346 commit f31b0d6
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/core/src/view/view.ts
Original file line number Diff line number Diff line change
Expand Up @@ -487,6 +487,10 @@ function checkNoChangesNodeDynamic(view: ViewData, nodeDef: NodeDef, values: any
}
}

/**
* Workaround https://github.com/angular/tsickle/issues/497
* @suppress {misplacedTypeAnnotation}
*/
function checkNoChangesQuery(view: ViewData, nodeDef: NodeDef) {
const queryList = asQueryList(view, nodeDef.index);
if (queryList.dirty) {
Expand Down

0 comments on commit f31b0d6

Please sign in to comment.