diff options
| author | bors <bors@rust-lang.org> | 2023-05-02 09:41:35 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2023-05-02 09:41:35 +0000 |
| commit | 98c33e47a495fbd7b22bce9ce32f2815991bc414 (patch) | |
| tree | 5a29fad853f7fe163f7d7c70e31d0993039da2eb /compiler/rustc_session/src/parse.rs | |
| parent | 7b99493492ad59c7a44c65373558175db42b4151 (diff) | |
| parent | 5d1796a608d387be784f17c28ec7c81f178a81eb (diff) | |
| download | rust-98c33e47a495fbd7b22bce9ce32f2815991bc414.tar.gz rust-98c33e47a495fbd7b22bce9ce32f2815991bc414.zip | |
Auto merge of #109128 - chenyukang:yukang/remove-type-ascription, r=estebank
Remove type ascription from parser and diagnostics Mostly based on https://github.com/rust-lang/rust/pull/106826 Part of #101728 r? `@estebank`
Diffstat (limited to 'compiler/rustc_session/src/parse.rs')
| -rw-r--r-- | compiler/rustc_session/src/parse.rs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/compiler/rustc_session/src/parse.rs b/compiler/rustc_session/src/parse.rs index 15e27952cf5..5cc9c62617d 100644 --- a/compiler/rustc_session/src/parse.rs +++ b/compiler/rustc_session/src/parse.rs @@ -214,8 +214,6 @@ pub struct ParseSess { pub env_depinfo: Lock<FxHashSet<(Symbol, Option<Symbol>)>>, /// File paths accessed during the build. pub file_depinfo: Lock<FxHashSet<Symbol>>, - /// All the type ascriptions expressions that have had a suggestion for likely path typo. - pub type_ascription_path_suggestions: Lock<FxHashSet<Span>>, /// Whether cfg(version) should treat the current release as incomplete pub assume_incomplete_release: bool, /// Spans passed to `proc_macro::quote_span`. Each span has a numerical @@ -258,7 +256,6 @@ impl ParseSess { reached_eof: AtomicBool::new(false), env_depinfo: Default::default(), file_depinfo: Default::default(), - type_ascription_path_suggestions: Default::default(), assume_incomplete_release: false, proc_macro_quoted_spans: Default::default(), attr_id_generator: AttrIdGenerator::new(), |
