mirror of
https://github.com/tc39/test262.git
synced 2025-07-30 09:24:41 +02:00
9 lines
206 B
Plaintext
9 lines
206 B
Plaintext
// Worker script used by d8-worker-script.js.
|
|
// This file is named `.txt` to prevent it being treated as a test itself.
|
|
|
|
onmessage = function(m) {
|
|
postMessage('DONE');
|
|
}
|
|
|
|
postMessage('Starting worker');
|