mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-30 23:03:06 +03:00
fd02c83bfe
resolve: Simplify built-in macro table We don't use full `SyntaxExtension`s from the table, only `SyntaxExtensionKind`s, and `Ident` in `register_builtin_macro` always had dummy span. This PR removes unnecessary data from the table and related function signatures. Noticed when reviewing #80850.