Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
rictic committed Apr 22, 2019
1 parent 3437334 commit 6960c2b
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion lib/mixins/template-stamp.js
Expand Up @@ -209,7 +209,15 @@ export const TemplateStamp = dedupingMixin(
return template._templateInfo;
}

/** @nocollapse */
/**
* See docs for _parseTemplateNode.
*
* @param {!HTMLTemplateElement} template .
* @param {!TemplateInfo} templateInfo .
* @param {!NodeInfo} nodeInfo .
* @return {boolean} .
* @nocollapse
*/
static _parseTemplateContent(template, templateInfo, nodeInfo) {
return this._parseTemplateNode(template.content, templateInfo, nodeInfo);
}
Expand Down

0 comments on commit 6960c2b

Please sign in to comment.