예제 #1
0
파일: Node.cs 프로젝트: richardbang83/GNet
 public static bool Matches(Block lhs, Block rhs)
 {
     return(lhs == null ? rhs == null || rhs.IsEmpty : lhs.Matches(rhs));
 }
예제 #2
0
 public static bool Matches(Block lhs, Block rhs)
 {
     return(lhs == null ? rhs == null || !rhs.HasStatements : lhs.Matches(rhs));
 }