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