mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-23 21:01:08 +00:00
49e7f477b9
Differential Revision: https://phabricator.services.mozilla.com/D178696
17 lines
433 B
JavaScript
17 lines
433 B
JavaScript
/**
|
|
* Any copyright is dedicated to the Public Domain.
|
|
* http://creativecommons.org/publicdomain/zero/1.0/
|
|
*/
|
|
|
|
// our onmessage handler lives in the module.
|
|
import _ from "./chromeWorker_worker_submod.sys.mjs";
|
|
|
|
if (!("ctypes" in self)) {
|
|
throw "No ctypes!";
|
|
}
|
|
|
|
// Go ahead and verify that the ctypes lazy getter actually works.
|
|
if (ctypes.toString() != "[object ctypes]") {
|
|
throw "Bad ctypes object: " + ctypes.toString();
|
|
}
|