public static void Check(ScopeStatement scope) { if (scope.Variables != null) { FlowChecker fc = new FlowChecker(scope); scope.Walk(fc); } }
public FlowDefiner(FlowChecker fc) { _fc = fc; }