(documentId:string, code:string)
| 191 | } |
| 192 | |
| 193 | save(documentId:string, code:string) { |
| 194 | this.sendControl(JSON.stringify({type: "save", path: documentId, code})); |
| 195 | if(this.worker) { |
| 196 | this.worker.postMessage(JSON.stringify({type: "save", path: documentId, code})); |
| 197 | } |
| 198 | } |
| 199 | |
| 200 | sendEvent(records:any[]) { |
| 201 | if(!records || !records.length) return; |
nothing calls this directly
no test coverage detected