aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/bindings/codegen/CodegenRust.py
diff options
context:
space:
mode:
authorRémy SAISSY <remy.saissy@gmail.com>2024-07-26 12:15:02 +0200
committerGitHub <noreply@github.com>2024-07-26 10:15:02 +0000
commiteac54183c154ca044f98e9d74aa51892f73c0085 (patch)
tree967c59d4b59fe39436df58b12f4927e533226d8c /components/script/dom/bindings/codegen/CodegenRust.py
parentbc1c71bd4df9424e4cceed9dc8cc38efc591095b (diff)
downloadservo-eac54183c154ca044f98e9d74aa51892f73c0085.tar.gz
servo-eac54183c154ca044f98e9d74aa51892f73c0085.zip
clippy: components/script/realms (#32859)
Signed-off-by: Rémy Saissy <remy.saissy@gmail.com>
Diffstat (limited to 'components/script/dom/bindings/codegen/CodegenRust.py')
-rw-r--r--components/script/dom/bindings/codegen/CodegenRust.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/bindings/codegen/CodegenRust.py b/components/script/dom/bindings/codegen/CodegenRust.py
index b59c3e7003d..cc564a83745 100644
--- a/components/script/dom/bindings/codegen/CodegenRust.py
+++ b/components/script/dom/bindings/codegen/CodegenRust.py
@@ -3744,7 +3744,7 @@ class CGCallGenerator(CGThing):
if "cx" not in argsPre and needsCx:
args.prepend(CGGeneric("cx"))
if nativeMethodName in descriptor.inRealmMethods:
- args.append(CGGeneric("InRealm::in_realm(&AlreadyInRealm::assert_for_cx(cx))"))
+ args.append(CGGeneric("InRealm::already(&AlreadyInRealm::assert_for_cx(cx))"))
# Build up our actual call
self.cgRoot = CGList([], "\n")