diff options
Diffstat (limited to 'gcc/rust/rust-session-manager.h')
-rw-r--r-- | gcc/rust/rust-session-manager.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/gcc/rust/rust-session-manager.h b/gcc/rust/rust-session-manager.h index 2352267..11bece8 100644 --- a/gcc/rust/rust-session-manager.h +++ b/gcc/rust/rust-session-manager.h @@ -162,6 +162,7 @@ struct CompileOptions EXPANSION_DUMP, NAME_RESOLUTION_DUMP, TARGET_OPTION_DUMP, + RESOLUTION_DUMP, // TODO: add more? } dump_option; @@ -225,11 +226,12 @@ private: * macros, maybe build test harness in future, AST validation, maybe create * macro crate (if not rustdoc).*/ void expansion (AST::Crate &crate); - /* Name resolution pipeline stage. TODO maybe move to another object. Performs - * name resolution, maybe complete gated feature checking, maybe create - * buffered lints in future. + + /* Resolution pipeline stage. TODO maybe move to another object. + * Performs name resolution and type resolution, maybe complete gated + * feature checking, maybe create buffered lints in future. */ - void name_resolution (AST::Crate &crate); + void resolution (AST::Crate &crate); }; } // namespace Rust |