* Create a `Map` that will store all the autoNumeric elements that are initialized from this current element. * @private
()
| 3686 | * @private |
| 3687 | */ |
| 3688 | _createLocalList() { |
| 3689 | this.autoNumericLocalList = new Map(); |
| 3690 | this._addToLocalList(this.domElement); |
| 3691 | } |
| 3692 | |
| 3693 | /** |
| 3694 | * In some rare cases, you could want to delete the local list generated during the element initialization (in order to use another one instead for instance). |
no test coverage detected