use js::context::JSContext;
use crate::dom::bindings::codegen::Bindings::TestBindingBinding::TestNS_Binding;
use crate::dom::bindings::root::DomRoot;
use crate::dom::globalscope::GlobalScope;
use crate::dom::testbinding::TestBinding;
#[cfg_attr(crown, crown::unrooted_must_root_lint::must_root)]
pub(crate) struct TestNS(());
impl TestNS_Binding::TestNSMethods<crate::DomTypeHolder> for TestNS {
fn TestAttribute(cx: &mut JSContext, global_scope: &GlobalScope) -> DomRoot<TestBinding> {
TestBinding::new(cx, global_scope, None)
}
}