mirror of
https://github.com/servo/servo
synced 2026-05-12 18:06:32 +02:00
Moves code related to the Web Worker spec to a new mod. Testing: A successful build is enough Part of #38901 Signed-off-by: Gae24 <96017547+Gae24@users.noreply.github.com>
19 lines
655 B
Rust
19 lines
655 B
Rust
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
|
|
|
|
pub(crate) mod abstractworker;
|
|
pub(crate) mod abstractworkerglobalscope;
|
|
pub(crate) mod dedicatedworkerglobalscope;
|
|
#[allow(dead_code)]
|
|
pub(crate) mod serviceworker;
|
|
pub(crate) mod serviceworkercontainer;
|
|
pub(crate) mod serviceworkerglobalscope;
|
|
#[allow(dead_code)]
|
|
pub(crate) mod serviceworkerregistration;
|
|
pub(crate) mod worker;
|
|
#[allow(dead_code)]
|
|
pub(crate) mod workerglobalscope;
|
|
pub(crate) mod workerlocation;
|
|
pub(crate) mod workernavigator;
|