Пример #1
0
void CVTypeDumperImpl::visitVFTableShape(TypeLeafKind Leaf,
        VFTableShapeRecord &Shape) {
    W.printNumber("VFEntryCount", Shape.getEntryCount());
}
Пример #2
0
Error TypeNameComputer::visitKnownRecord(CVType &CVR,
                                         VFTableShapeRecord &Shape) {
  Name = formatv("<vftable {0} methods>", Shape.getEntryCount());
  return Error::success();
}
Пример #3
0
Error TypeDumpVisitor::visitKnownRecord(CVType &CVR,
                                        VFTableShapeRecord &Shape) {
  W->printNumber("VFEntryCount", Shape.getEntryCount());
  return Error::success();
}