* Increment the AutoNumeric form children count for the given form element, or if none are passed, the current `this.parentForm` one. * * @param {HTMLFormElement|null} formElement * @private
(formElement = null)
| 1370 | * @private |
| 1371 | */ |
| 1372 | _incrementParentFormCounter(formElement = null) { |
| 1373 | this._getFormElement(formElement).dataset.anCount++; |
| 1374 | } |
| 1375 | |
| 1376 | /** |
| 1377 | * Decrement the AutoNumeric form children count for the current `this.parentForm` form element. |
no test coverage detected