@syntest/cfg-core
Version:
A Control Flow Graph package
20 lines • 357 B
TypeScript
/**
* Interface for a Node.
*
* @author Dimitri Stallenberg
*/
export interface Node {
type: NodeType;
id: string;
lines: number[];
statements: string[];
description?: string;
}
export declare enum NodeType {
Intermediary = 0,
Branch = 1,
Placeholder = 2,
Root = 3,
Normal = 4
}
//# sourceMappingURL=Node.d.ts.map