From a1531664a2a4e7c7e95ab4f3a9999bdc02ee5891 Mon Sep 17 00:00:00 2001 From: Matthew Woodcraft Date: Sat, 17 Feb 2024 19:18:11 +0000 Subject: [PATCH] Remove reference to -Z ast-json and -Z ast-json-noexpand These were removed in 2021. https://github.com/rust-lang/rust/pull/85993 --- src/doc/rustc-dev-guide/src/serialization.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/doc/rustc-dev-guide/src/serialization.md b/src/doc/rustc-dev-guide/src/serialization.md index c796281060ca..74c56007188b 100644 --- a/src/doc/rustc-dev-guide/src/serialization.md +++ b/src/doc/rustc-dev-guide/src/serialization.md @@ -8,8 +8,6 @@ Specifically: crate, these are then deserialized by crates that depend on that library. - Certain query outputs are serialized in a binary format to [persist incremental compilation results]. -- The `-Z ast-json` and `-Z ast-json-noexpand` flags serialize the [AST] to json - and output the result to stdout. - [`CrateInfo`] is serialized to json when the `-Z no-link` flag is used, and deserialized from json when the `-Z link-only` flag is used.