Step 129: dependency management UI

This commit is contained in:
Bill
2026-02-09 16:25:20 -07:00
parent 284c5b53fc
commit f88a129a7b
8 changed files with 609 additions and 6 deletions

View File

@@ -43,6 +43,7 @@
#include "TerminalPanel.h"
#include "WebSocketServer.h"
#include "BuildSystem.h"
#include "DependencyPanel.h"
#include "IncrementalOptimizer.h"
#include "ast/Serialization.h"
#include "ast/Generator.h"
@@ -163,6 +164,8 @@ struct EditorState {
std::vector<BuildError> buildErrors;
std::string lastBuildOutput;
std::string lastBuildCommand;
bool showDependencyPanel = true;
DependencyPanelState dependencyPanel;
// Custom editor widget state
bool showWhitespace = false;