Skip to content

Commit

Permalink
Rename collection_context module to symbol_collection_context.
Browse files Browse the repository at this point in the history
  • Loading branch information
tritao committed May 6, 2024
1 parent 20b8ff0 commit 6da47dc
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion sway-core/src/semantic_analysis.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
pub mod ast_node;
pub(crate) mod cei_pattern_analysis;
pub(crate) mod coins_analysis;
pub mod collection_context;
pub mod symbol_collection_context;
mod module;
pub mod namespace;
mod node_dependencies;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use crate::{
},
namespace::{IsExtendingExistingImpl, IsImplSelf},
semantic_analysis::{
collection_context::SymbolCollectionContext, type_check_context::EnforceTypeArguments,
symbol_collection_context::SymbolCollectionContext, type_check_context::EnforceTypeArguments,
ConstShadowingMode, GenericShadowingMode, TypeCheckAnalysis, TypeCheckAnalysisContext,
TypeCheckContext, TypeCheckFinalization, TypeCheckFinalizationContext,
},
Expand Down
2 changes: 1 addition & 1 deletion sway-core/src/semantic_analysis/ast_node/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ use sway_error::{
};
use sway_types::{span::Span, Spanned};

use super::collection_context::SymbolCollectionContext;
use super::symbol_collection_context::SymbolCollectionContext;

impl ty::TyAstNode {
pub(crate) fn collect(
Expand Down
2 changes: 1 addition & 1 deletion sway-core/src/semantic_analysis/module.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ use crate::{
};

use super::{
collection_context::SymbolCollectionContext,
symbol_collection_context::SymbolCollectionContext,
declaration::auto_impl::{self, EncodingAutoImplContext},
};

Expand Down
4 changes: 2 additions & 2 deletions sway-core/src/semantic_analysis/program.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ use sway_error::handler::{ErrorEmitted, Handler};
use sway_ir::{Context, Module};

use super::{
collection_context::SymbolCollectionContext, TypeCheckAnalysis, TypeCheckAnalysisContext,
TypeCheckFinalization, TypeCheckFinalizationContext,
symbol_collection_context::SymbolCollectionContext, TypeCheckAnalysis,
TypeCheckAnalysisContext, TypeCheckFinalization, TypeCheckFinalizationContext,
};

impl TyProgram {
Expand Down

0 comments on commit 6da47dc

Please sign in to comment.