/
githubmirror
/
servo
Обзор
Документация
Войти
/
githubmirror
/
servo
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
components/script/dom/node/mod.rs
19 строк
711 B
Tim van der Lippe
script: Move TreeWalker and VirtualMethods to node/ (#45811)
19 июн 2026, 14:56
Не верифицирован
19 июн 2026, 14:56
9966be2
Код
Авторство
О чём код?
/* 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::*; pub(crate) mod children_mutation; pub(crate) mod context; pub(crate) mod focus; pub(crate) mod iterators; pub(crate) mod layout_dom; #[allow(clippy::module_inception, reason = "The interface name is node")] pub(crate) mod node; pub(crate) mod nodeiterator; pub(crate) mod nodelist; pub(crate) mod treewalker; pub(crate) mod virtualmethods; pub(crate) use children_mutation::ChildrenMutation; pub(crate) use context::{BindContext, IsShadowTree, MoveContext, UnbindContext};