コード例 #1
0
 public Dataflow([NonNull] CFG cfg, [NonNull] IDataflowAnalysis analysis)
 {
     this.cfg      = cfg;
     this.analysis = analysis;
     this.inFact   = new Hashtable();
     this.outFact  = new Hashtable();
 }
コード例 #2
0
ファイル: Dataflow.cs プロジェクト: alfredodev/mono-tools
 public Dataflow([NonNull] CFG cfg, [NonNull] IDataflowAnalysis analysis)
 {
     this.cfg = cfg;
     this.analysis = analysis;
     this.inFact = new Hashtable();
     this.outFact = new Hashtable();
 }