示例#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);
 }