Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request removes the entire TASM Visualizer project, including its documentation, configuration, and source code. The changes span multiple files and involve the deletion of all components, scripts, and assets associated with the Electron-based TASM Visualizer application.
Removed Project Documentation and Configuration:
ElectronTASM/README.md: Deleted the README file, which included an overview, features, development setup, architecture, and project structure of the TASM Visualizer.ElectronTASM/package.json: Removed thepackage.jsonfile, which contained metadata, scripts, dependencies, and build configurations for the project.Removed Main Process Code:
ElectronTASM/src/main/main.ts: Deleted the Electron main process file, which handled window creation, app lifecycle events, and IPC communication for memory system operations.ElectronTASM/src/main/preload.ts: Removed the preload script that exposed IPC methods to the renderer process via thecontextBridgeAPI.Removed Renderer Process Code:
ElectronTASM/src/renderer/App.tsx: Deleted the main React application file, which implemented the VS Code-like interface and managed the application's state and layout.ElectronTASM/src/renderer/components/ActivityBar.tsx: Removed the Activity Bar component, which provided navigation for views like Explorer, Memory Browser, and Settings.ElectronTASM/src/renderer/components/EditorArea.tsx: Deleted the Editor Area component, which displayed the maze environment, memory content, and performance metrics.ElectronTASM/src/renderer/components/Sidebar.tsx: Removed the Sidebar component, which dynamically rendered content for the Explorer, Memory Browser, and Settings views.