Skip to content

Commit 40b1917

Browse files
1 parent 743fe3b commit 40b1917

File tree

37 files changed

+25
-334
lines changed

37 files changed

+25
-334
lines changed

Source/Command/mod.rs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,9 @@
99

1010
// --- Trait Definition ---
1111
pub mod CommandExecutor;
12-
// pub use self::CommandExecutor::CommandExecutor;
1312

1413
// --- Effect Constructors ---
1514
pub mod ExecuteCommand;
1615
pub mod GetAllCommands;
1716
pub mod RegisterCommand;
1817
pub mod UnregisterCommand;
19-
20-
// pub use self::ExecuteCommand::ExecuteCommand;
21-
// pub use self::GetAllCommands::GetAllCommands;
22-
// pub use self::RegisterCommand::RegisterCommand;
23-
// pub use self::UnregisterCommand::UnregisterCommand;

Source/Configuration/DTO/mod.rs

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,3 @@ pub mod ConfigurationOverridesDTO;
1111
pub mod ConfigurationScope;
1212
pub mod ConfigurationTarget;
1313
pub mod InspectResultDataDTO;
14-
15-
// --- Public Re-exports ---
16-
// pub use self::{
17-
// ConfigurationInitializationDTO::ConfigurationInitializationDTO,
18-
// ConfigurationOverridesDTO::ConfigurationOverridesDTO,
19-
// ConfigurationScope::ConfigurationScope,
20-
// ConfigurationTarget::ConfigurationTarget,
21-
// InspectResultDataDTO::InspectResultDataDTO,
22-
// };

Source/Configuration/mod.rs

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,10 @@
1717
pub mod ConfigurationInspector;
1818
pub mod ConfigurationProvider;
1919

20-
// pub use self::{ConfigurationInspector::ConfigurationInspector,
21-
// ConfigurationProvider::ConfigurationProvider};
22-
2320
// --- Data Transfer Objects ---
2421
pub mod DTO;
2522

2623
// --- Effect Constructors ---
2724
pub mod GetConfiguration;
2825
pub mod InspectConfiguration;
2926
pub mod UpdateConfiguration;
30-
31-
// pub use self::{
32-
// GetConfiguration::GetConfiguration,
33-
// InspectConfiguration::InspectConfiguration,
34-
// UpdateConfiguration::UpdateConfiguration,
35-
// };

Source/CustomEditor/mod.rs

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -14,20 +14,3 @@
1414

1515
// --- Trait Definition ---
1616
pub mod CustomEditorProvider;
17-
// pub use self::CustomEditorProvider::CustomEditorProvider;
18-
19-
// --- Data Transfer Objects ---
20-
// pub mod DTO;
21-
22-
// --- Effect Constructors ---
23-
// pub mod OnSaveCustomDocument;
24-
// pub mod RegisterCustomEditor;
25-
// pub mod ResolveCustomEditor;
26-
// pub mod UnregisterCustomEditor;
27-
28-
// pub use self::{
29-
// OnSaveCustomDocument::OnSaveCustomDocument,
30-
// RegisterCustomEditor::RegisterCustomEditor,
31-
// ResolveCustomEditor::ResolveCustomEditor,
32-
// UnregisterCustomEditor::UnregisterCustomEditor,
33-
// };

Source/DTO/WorkSpaceEditDTO.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,4 @@ pub struct WorkSpaceEditDTO {
1515
/// A list of text edits to apply, grouped by resource URI.
1616
/// The structure is `[ [uri_dto, [text_edit_dto, ...]], ... ]`
1717
pub Edits:Vec<(Value, Vec<Value>)>,
18-
// Future fields for file operations would go here:
19-
// pub file_operations: Vec<FileOperationDTO>,
2018
}

Source/Diagnostic/mod.rs

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,8 @@
1515

1616
// --- Trait Definition ---
1717
pub mod DiagnosticManager;
18-
// pub use self::DiagnosticManager::DiagnosticManager;
1918

2019
// --- Effect Constructors ---
2120
pub mod ClearDiagnostics;
2221
pub mod GetAllDiagnostics;
2322
pub mod SetDiagnostics;
24-
25-
// pub use self::{
26-
// ClearDiagnostics::ClearDiagnostics,
27-
// GetAllDiagnostics::GetAllDiagnostics,
28-
// SetDiagnostics::SetDiagnostics,
29-
// };

Source/Document/mod.rs

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,10 @@
99

1010
// --- Trait Definition ---
1111
pub mod DocumentProvider;
12-
// pub use self::DocumentProvider::DocumentProvider;
1312

1413
// --- Effect Constructors ---
1514
pub mod ApplyDocumentChanges;
1615
pub mod OpenDocument;
1716
pub mod SaveAllDocuments;
1817
pub mod SaveDocument;
1918
pub mod SaveDocumentAs;
20-
21-
// pub use self::{
22-
// ApplyDocumentChanges::ApplyDocumentChanges,
23-
// OpenDocument::OpenDocument,
24-
// SaveAllDocuments::SaveAllDocuments,
25-
// SaveDocument::SaveDocument,
26-
// SaveDocumentAs::SaveDocumentAs,
27-
// };

Source/Effect/mod.rs

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,3 @@
1010
pub mod ActionEffect;
1111
pub mod ApplicationRunTime;
1212
pub mod ExecuteEffect;
13-
14-
// --- Public Re-exports ---
15-
16-
// /// The core struct representing an asynchronous operation as a first-class
17-
// /// value.
18-
// /// @see ActionEffect
19-
// pub use self::ActionEffect::ActionEffect;
20-
// /// The core trait for any "engine" capable of executing `ActionEffect`s.
21-
// /// @see ApplicationRunTime
22-
// pub use self::ApplicationRunTime::ApplicationRunTime;
23-
// /// A generic helper function for a more ergonomic way to run
24-
// `ActionEffect`s. /// @see ExecuteEffect
25-
// pub use self::ExecuteEffect::ExecuteEffect;

Source/Environment/mod.rs

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,3 @@
1212
pub mod Environment;
1313
pub mod HasEnvironment;
1414
pub mod Requires;
15-
16-
// --- Public Re-exports ---
17-
18-
// /// A marker trait for any struct that represents an application's
19-
// environment. /// @see Environment
20-
// pub use self::Environment::Environment::Environment;
21-
// /// A trait for any type that holds and provides access to an `Environment`.
22-
// /// @see HasEnvironment
23-
// pub use self::HasEnvironment::HasEnvironment;
24-
// /// The core dependency injection trait that allows an `Environment` to
25-
// provide /// a specific capability.
26-
// /// @see Requires
27-
// pub use self::Requires::Requires;

Source/Error/mod.rs

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,3 @@
77
#![allow(non_snake_case, non_camel_case_types)]
88

99
pub mod CommonError;
10-
11-
// --- Public Re-exports ---
12-
13-
// /// The primary, comprehensive error enum for all operations within the
14-
// Common /// crate and the applications that use it.
15-
// /// @see CommonError
16-
// pub use self::CommonError::CommonError::CommonError;

0 commit comments

Comments
 (0)