(progressCallback)
| 919 | } |
| 920 | |
| 921 | enqueue(progressCallback) { |
| 922 | return Task.enqueueNew(this, RenderTask, progressCallback) |
| 923 | } |
| 924 | *start(progressCallback) { |
| 925 | if (typeof progressCallback !== "undefined" && typeof progressCallback !== "function") { |
| 926 | throw new Error("progressCallback is not a function. progressCallback type: " + typeof progressCallback) |
nothing calls this directly
no test coverage detected