22 lines
742 B
C
22 lines
742 B
C
|
|
#pragma once
|
|||
|
|
// Sprint 285 Integration Summary
|
|||
|
|
// Steps 1953–1957: poly-everything
|
|||
|
|
//
|
|||
|
|
// 1953: PolyglotFunctionMap — (language, functionName) → tag registry
|
|||
|
|
// 1954: PolyglotExecutionContext — per-language runtime config (timeout/env/workdir)
|
|||
|
|
// 1955: PolyglotResultAggregator — FunctionResult collection + AggregateReport
|
|||
|
|
// 1956: PolyglotOrchestrator — ties map + context + aggregator
|
|||
|
|
// 1957: Integration — 8 languages, one function each, full run
|
|||
|
|
|
|||
|
|
#include <string>
|
|||
|
|
|
|||
|
|
namespace whetstone {
|
|||
|
|
|
|||
|
|
struct Sprint285IntegrationSummary {
|
|||
|
|
int stepsCompleted = 5;
|
|||
|
|
bool success = true;
|
|||
|
|
std::string sprintName() const { return "Sprint 285: poly-everything"; }
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
} // namespace whetstone
|