this._worker.onmessage = function()

in web/src/evaluator.js [8:16]


        this._worker.onmessage = function(msg) {
            this._runningJob = false;
            if (this._queuedJob) {
                this._queuedJob = null;
                this.evaluate(tensors);
            } else {
                this.onResult(msg.data);
            }
        }.bind(this);