@specs-feup/clava
Version:
A C/C++ source-to-source compiler written in Typescript
23 lines • 615 B
TypeScript
/**
* Enumeration of CFG edge types.
*/
export default class CfgEdgeType {
static TRUE: CfgEdgeType;
static FALSE: CfgEdgeType;
static UNCONDITIONAL: CfgEdgeType;
private instanceName;
/**
* Creates a new instance of the CfgEdgeType class
* @param name - The name of the CFG edge type
*/
constructor(name: string);
/**
* @returns The name of the CFG edge type
*/
get name(): string;
/**
* @returns String representation of the CFG edge type, which corresponds to its name
*/
toString(): string;
}
//# sourceMappingURL=CfgEdgeType.d.ts.map