Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | import IDiscoveredFile from "../data/types/IDiscoveredFile";
import IPipelineFile from "./IPipelineFile";
/**
* Input to the unified transpilation pipeline (_executePipeline).
*
* Both run() and transpileSource() construct this and delegate to the pipeline.
*/
interface IPipelineInput {
/** C-Next files to process (in dependency order) */
readonly cnextFiles: IPipelineFile[];
/** C/C++ header files for symbol collection */
readonly headerFiles: IDiscoveredFile[];
/** Whether to write generated output to disk */
readonly writeOutputToDisk: boolean;
/** Skip Stage 4 (symbol conflict check) — standalone mode doesn't need it */
readonly skipConflictCheck?: boolean;
}
export default IPipelineInput;
|