예제 #1
0
파일: CFG.cs 프로젝트: sidecut/xaeios
 public CFGNode(int id, CFG graph)
     : base(id)
 {
     if (graph == null)
     {
         throw new ArgumentNullException();
     }
     Graph = graph;
 }
예제 #2
0
 public virtual bool Match(CFG graph, CFGPatternMatchFlags flags)
 {
     return Root.Match(graph.Root, flags);
 }