@specs-feup/clava
Version:
A C/C++ source-to-source compiler written in Typescript
7 lines • 332 B
TypeScript
import { BinaryOp } from "../../Joinpoints.js";
/**
* Simplifies assignments of the type `a += b` into the equivalent expression `a = a + b`
* @param $complexAssignment - The expression to simplify
*/
export default function SimplifyAssignment($complexAssignment: BinaryOp): void;
//# sourceMappingURL=SimplifyAssignment.d.ts.map