package vaporize.library; import cs132.vapor.ast.*; import st.*; import misc.*; import java.util.*; public class CFGSimp extends VInstr.VisitorPR { ControlFlowGraph cfg; public CFGSimp(ControlFlowGraph cfg) { this.cfg = cfg; } public R visit(P p, VMemRead n) throws RuntimeException { return null; } public R visit(P p, VMemWrite n) throws RuntimeException { return null; } public R visit(P p, VAssign n) throws RuntimeException { return null; } public R visit(P p, VBranch n) throws RuntimeException { return null; } public R visit(P p, VGoto n) throws RuntimeException { return null; } public R visit(P p, VCall n) throws RuntimeException { return null; } public R visit(P p, VBuiltIn n) throws RuntimeException { return null; } public R visit(P p, VReturn n) throws RuntimeException { return null; } }