Ejemplo n.º 1
0
void CVTypeDumperImpl::visitNestedType(TypeLeafKind Leaf,
                                       NestedTypeRecord &Nested) {
    DictScope S(W, "NestedType");
    printTypeIndex("Type", Nested.getNestedType());
    W.printString("Name", Nested.getName());
    Name = Nested.getName();
}
Ejemplo n.º 2
0
Error TypeDumpVisitor::visitKnownMember(CVMemberRecord &CVR,
                                        NestedTypeRecord &Nested) {
  printTypeIndex("Type", Nested.getNestedType());
  W->printString("Name", Nested.getName());
  return Error::success();
}