示例#1
0
Error TypeDumpVisitor::visitKnownMember(CVMemberRecord &CVR,
                                        OverloadedMethodRecord &Method) {
  W->printHex("MethodCount", Method.getNumOverloads());
  printTypeIndex("MethodListIndex", Method.getMethodList());
  W->printString("Name", Method.getName());
  return Error::success();
}
示例#2
0
void CVTypeDumperImpl::visitOverloadedMethod(TypeLeafKind Leaf,
        OverloadedMethodRecord &Method) {
    DictScope S(W, "OverloadedMethod");
    W.printHex("MethodCount", Method.getNumOverloads());
    printTypeIndex("MethodListIndex", Method.getMethodList());
    W.printString("Name", Method.getName());
    Name = Method.getName();
}