From c7947a0afa00a46bd117285a234fd204c85c0a15 Mon Sep 17 00:00:00 2001 From: Geoffrey White <40627776+geoffw0@users.noreply.github.com> Date: Tue, 26 Aug 2025 18:01:33 +0100 Subject: [PATCH] Rust: Remove built-in methods from Addressable in the schema. --- rust/schema/prelude.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/rust/schema/prelude.py b/rust/schema/prelude.py index c7928910094..0b1b57ea089 100644 --- a/rust/schema/prelude.py +++ b/rust/schema/prelude.py @@ -82,13 +82,6 @@ class Addressable(AstNode): TODO: This does not yet include all possible cases. """ - extended_canonical_path: optional[string] | desc(""" - Either a canonical path (see https://doc.rust-lang.org/reference/paths.html#canonical-paths), - or `{}::name` for addressable items defined in an anonymous block (and only - addressable there-in). - """) | rust.detach | ql.internal - crate_origin: optional[string] | desc( - "One of `rustc:`, `repo::` or `lang:`.") | rust.detach | ql.internal class PathAstNode(AstNode):