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