mirror of
https://github.com/servo/servo
synced 2026-05-12 18:06:32 +02:00
Moves node interfaces into script/dom/node/ module from script/dom/. Testing: Just a refactor shouldn't need any testing. Fixes: Part of #38901 Signed-off-by: Jayanta Pradhan <pradhanjayanta91@gmail.com>
10 lines
386 B
Rust
10 lines
386 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) use self::node::*;
|
|
#[allow(clippy::module_inception, reason = "The interface name is node")]
|
|
pub(crate) mod node;
|
|
pub(crate) mod nodeiterator;
|
|
pub(crate) mod nodelist;
|