areBothBlockquotesWithSameAdi static method

bool areBothBlockquotesWithSameAdi(
  1. BlockGroup g,
  2. BlockGroup gOther
)

Implementation

static bool areBothBlockquotesWithSameAdi(BlockGroup g, BlockGroup gOther) {
  return (g.op.isBlockquote() && gOther.op.isBlockquote() && g.op.hasSameAdiAs(gOther.op));
}