blob: 22ea6d4fb51598bea91c798c8c4442f0cc018f96 [file] [log] [blame]
onmessage = function(evt)
{
throw(new Error(evt.data));
}
onerror = function(message, location, line, col)
{
postMessage( {"message": message, "filename": location, "lineno": line, "colno": col} );
return false; // "not handled" so the error propagates up to the Worker object
}