diff options
Diffstat (limited to 'components/script/dom/bindings/codegen/CodegenRust.py')
-rw-r--r-- | components/script/dom/bindings/codegen/CodegenRust.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script/dom/bindings/codegen/CodegenRust.py b/components/script/dom/bindings/codegen/CodegenRust.py index 471c152040b..361d6d60edb 100644 --- a/components/script/dom/bindings/codegen/CodegenRust.py +++ b/components/script/dom/bindings/codegen/CodegenRust.py @@ -6906,7 +6906,7 @@ class CGDictionary(CGThing): derive = ["JSTraceable"] mustRoot = "" if self.membersNeedTracing(): - mustRoot = "#[unrooted_must_root_lint::must_root]\n" + mustRoot = "#[crown::unrooted_must_root_lint::must_root]\n" if not self.hasRequiredFields(self.dictionary): derive += ["Default"] @@ -7450,7 +7450,7 @@ class CGCallback(CGClass): constructors=self.getConstructors(), methods=realMethods, decorators="#[derive(JSTraceable, PartialEq)]\n" - "#[unrooted_must_root_lint::allow_unrooted_interior]") + "#[crown::unrooted_must_root_lint::allow_unrooted_interior]") def getConstructors(self): return [ClassConstructor( |