public static bool Matches(Block lhs, Block rhs) { return(lhs == null ? rhs == null || rhs.IsEmpty : lhs.Matches(rhs)); }
public static bool Matches(Block lhs, Block rhs) { return(lhs == null ? rhs == null || !rhs.HasStatements : lhs.Matches(rhs)); }