예제 #1
0
 public static void Check(ScopeStatement scope)
 {
     if (scope.Variables != null)
     {
         FlowChecker fc = new FlowChecker(scope);
         scope.Walk(fc);
     }
 }
예제 #2
0
 public FlowDefiner(FlowChecker fc)
 {
     _fc = fc;
 }