コード例 #1
0
ファイル: FlowChecker.cs プロジェクト: Alxandr/IronTotem
 public static void Check(ScopeStatement scope)
 {
     if (scope.Variables != null)
     {
         FlowChecker fc = new FlowChecker(scope);
         scope.Walk(fc);
     }
 }
コード例 #2
0
ファイル: FlowChecker.cs プロジェクト: Alxandr/IronTotem
 public FlowDefiner(FlowChecker fc)
 {
     _fc = fc;
 }