File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -268,6 +268,9 @@ class DomIfBase extends PolymerElement {
268
268
}
269
269
}
270
270
271
+ // Ideally these would be annotated as abstract methods in an abstract class,
272
+ // but closure compiler is finnicky
273
+ /* eslint-disable valid-jsdoc */
271
274
/**
272
275
* Abstract API to be implemented by subclass: Returns true if a template
273
276
* instance has been created and inserted.
@@ -295,7 +298,7 @@ class DomIfBase extends PolymerElement {
295
298
* @param {Node } parentNode The parent node to insert the instance into
296
299
* @return {void }
297
300
*/
298
- __createAndInsertInstance ( parentNode ) { }
301
+ __createAndInsertInstance ( parentNode ) { } // eslint-disable-line no-unused-vars
299
302
300
303
/**
301
304
* Abstract API to be implemented by subclass: Removes nodes created by an
@@ -315,6 +318,7 @@ class DomIfBase extends PolymerElement {
315
318
* @return {void }
316
319
*/
317
320
_showHideChildren ( ) { }
321
+ /* eslint-enable valid-jsdoc */
318
322
}
319
323
320
324
/**
You can’t perform that action at this time.
0 commit comments