* @private
(args)
| 1039 | * @private |
| 1040 | */ |
| 1041 | _sync(args) { |
| 1042 | if (this._parsing) { |
| 1043 | this._syncList.push(args); |
| 1044 | } else { |
| 1045 | const [method, arg1, arg2] = args; |
| 1046 | this[method](arg1, arg2); |
| 1047 | } |
| 1048 | this.chart._dataChanges.push([this.index, ...args]); |
| 1049 | } |
| 1050 | |
| 1051 | _onDataPush() { |
| 1052 | const count = arguments.length; |
no outgoing calls
no test coverage detected