package vaporize.library; import cs132.vapor.ast.*; import st.*; import misc.*; import java.util.*; public class ControlFlowGraph
extends VInstr.VisitorPR
{ public R visit(P p, VMemRead r) throws RuntimeException { return null; } public R visit(P p, VMemWrite w) throws RuntimeException { return null; } public R visit(P p, VAssign a) throws RuntimeException { return null; } public R visit(P p, VBranch b) throws RuntimeException { return null; } public R visit(P p, VGoto g) throws RuntimeException { return null; } public R visit(P p, VCall c) throws RuntimeException { return null; } public R visit(P p, VBuiltIn c) throws RuntimeException { return null; } public R visit(P p, VReturn r) throws RuntimeException { return null; } }