File tree 14 files changed +72
-17
lines changed
14 files changed +72
-17
lines changed Original file line number Diff line number Diff line change @@ -61,10 +61,17 @@ struct EnumValueInfo
61
61
llvm::SmallString<16 > ValueExpr;
62
62
};
63
63
64
+ // ------------------------------------------------
65
+
64
66
// TODO: Expand to allow for documenting templating.
65
67
// Info for types.
66
68
struct EnumInfo : SymbolInfo
67
69
{
70
+ // Indicates whether this enum is scoped (e.g. enum class).
71
+ bool Scoped = false ;
72
+
73
+ // --------------------------------------------
74
+
68
75
static constexpr InfoType type_id = InfoType::IT_enum;
69
76
70
77
EnumInfo ()
@@ -81,9 +88,6 @@ struct EnumInfo : SymbolInfo
81
88
82
89
void merge (EnumInfo&& I);
83
90
84
- // Indicates whether this enum is scoped (e.g. enum class).
85
- bool Scoped = false ;
86
-
87
91
// Set to nonempty to the type when this is an explicitly typed enum. For
88
92
// enum Foo : short { ... };
89
93
// this will be "short".
Original file line number Diff line number Diff line change @@ -172,6 +172,13 @@ struct XMLGenerator::Writer::
172
172
, pred(id != EmptySID)
173
173
{
174
174
}
175
+
176
+ Attr (llvm::Optional<TypeInfo> const & opt)
177
+ : name(" type" )
178
+ , value(opt ? opt->Type.Name.str() : std::string())
179
+ , pred(opt)
180
+ {
181
+ }
175
182
};
176
183
177
184
// ------------------------------------------------
@@ -513,10 +520,13 @@ visit(
513
520
514
521
openTag (" enum" , {
515
522
{ " name" , I.Name },
523
+ { " class" , " scoped" , I.Scoped },
524
+ { I.BaseType },
516
525
{ I.id }
517
526
});
518
527
519
528
writeInfo (I);
529
+ writeSymbol (I);
520
530
for (auto const & v : I.Members )
521
531
writeTag (" element" , {}, {
522
532
{ " name" , v.Name },
Original file line number Diff line number Diff line change @@ -30,6 +30,18 @@ Examples
30
30
, Overview(
31
31
R"( Test the output of MrDox against a set of input vectors.)" )
32
32
33
+ , badOption(
34
+ " bad" ,
35
+ llvm::cl::desc (" Write a .bad.xml file for each test failure" ),
36
+ llvm::cl::init(true ),
37
+ llvm::cl::cat(TestCategory))
38
+
39
+ , adocOption(
40
+ " adoc" ,
41
+ llvm::cl::desc (" Write the corresponding Asciidoc (adoc) file for each input test file" ),
42
+ llvm::cl::init(false ),
43
+ llvm::cl::cat(TestCategory))
44
+
33
45
, TestAction(
34
46
" action" ,
35
47
llvm::cl::desc (R"( Which action should be performed)" ),
@@ -39,12 +51,6 @@ R"(Test the output of MrDox against a set of input vectors.)")
39
51
clEnumVal(refresh, " Update all expected xml files" )),
40
52
llvm::cl::cat(TestCategory))
41
53
42
- , BadOption(
43
- " bad" ,
44
- llvm::cl::desc (" Write a .bad.xml file for each input file test failure" ),
45
- llvm::cl::init(true ),
46
- llvm::cl::cat(TestCategory))
47
-
48
54
, InputPaths(
49
55
" inputs" ,
50
56
llvm::cl::Sink,
Original file line number Diff line number Diff line change @@ -29,8 +29,9 @@ class Options
29
29
30
30
public:
31
31
char const * Overview;
32
+ llvm::cl::opt<bool > badOption;
33
+ llvm::cl::opt<bool > adocOption;
32
34
llvm::cl::opt<Action> TestAction;
33
- llvm::cl::opt<bool > BadOption;
34
35
llvm::cl::list<std::string> InputPaths;
35
36
36
37
Options ();
Original file line number Diff line number Diff line change @@ -239,10 +239,10 @@ handleFile(
239
239
results_.numberOfFailures ++;
240
240
R_.print (" Failed: '" , filePath, " '\n " );
241
241
242
- if (options_.BadOption .getValue ())
242
+ if (options_.badOption .getValue ())
243
243
{
244
- // Write the a .bad.xml file
245
- path::replace_extension (outputPath, " . bad.xml" );
244
+ // Write the .bad.xml file
245
+ path::replace_extension (outputPath, " bad.xml" );
246
246
std::error_code ec;
247
247
llvm::raw_fd_ostream os (outputPath, ec, llvm::sys::fs::OF_None);
248
248
if (ec)
@@ -251,6 +251,10 @@ handleFile(
251
251
return makeError (" raw_fd_ostream returned " , ec);
252
252
}
253
253
os << generatedXml;
254
+
255
+ // Fix the path for the code that follows
256
+ outputPath.pop_back_n (8 );
257
+ path::replace_extension (outputPath, " xml" );
254
258
}
255
259
}
256
260
else
@@ -268,7 +272,8 @@ handleFile(
268
272
}
269
273
}
270
274
271
- if (adocGen)
275
+ // Write Asciidoc if requested
276
+ if (options_.adocOption .getValue ())
272
277
{
273
278
path::replace_extension (outputPath, adocGen->extension ());
274
279
if (R_.error (
Original file line number Diff line number Diff line change
1
+ #pragma clang diagnostic ignored "-Wmissing-declarations"
1
2
enum {};
Original file line number Diff line number Diff line change 3
3
<mrdox >
4
4
<namespace name =" " >
5
5
<enum name =" " id =" 6WkHtky3/fMz+BLxKzQ7nsMgc4Y=" >
6
+ <file path =" dcl.enum/1.cpp" line =" 2" class =" def" />
6
7
</enum >
7
8
</namespace >
8
9
</mrdox >
Original file line number Diff line number Diff line change 2
2
<!DOCTYPE mrdox SYSTEM "mrdox.dtd">
3
3
<mrdox >
4
4
<namespace name =" " >
5
- <enum name =" X" id =" ST00Km++J5YixGbh0q74JrYHXAc=" >
5
+ <enum name =" X" class =" scoped" type =" int" id =" ST00Km++J5YixGbh0q74JrYHXAc=" >
6
+ <file path =" dcl.enum/2.cpp" line =" 1" />
6
7
</enum >
7
8
</namespace >
8
9
</mrdox >
Original file line number Diff line number Diff line change 1
- enum E : char ;
1
+ enum struct X ;
2
+ enum struct X {};
2
3
Original file line number Diff line number Diff line change 2
2
<!DOCTYPE mrdox SYSTEM "mrdox.dtd">
3
3
<mrdox >
4
4
<namespace name =" " >
5
- <enum name =" E" id =" xf6YhxRw8JpsHMwP6Tgyroti2gw=" >
5
+ <enum name =" X" class =" scoped" type =" int" id =" ST00Km++J5YixGbh0q74JrYHXAc=" >
6
+ <file path =" dcl.enum/3.cpp" line =" 2" class =" def" />
7
+ <file path =" dcl.enum/3.cpp" line =" 1" />
6
8
</enum >
7
9
</namespace >
8
10
</mrdox >
Original file line number Diff line number Diff line change
1
+ enum E : char ;
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <!DOCTYPE mrdox SYSTEM "mrdox.dtd">
3
+ <mrdox >
4
+ <namespace name =" " >
5
+ <enum name =" E" type =" char" id =" xf6YhxRw8JpsHMwP6Tgyroti2gw=" >
6
+ <file path =" dcl.enum/4.cpp" line =" 1" />
7
+ </enum >
8
+ </namespace >
9
+ </mrdox >
Original file line number Diff line number Diff line change
1
+ enum E : char ;
2
+ enum E : char {};
3
+
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <!DOCTYPE mrdox SYSTEM "mrdox.dtd">
3
+ <mrdox >
4
+ <namespace name =" " >
5
+ <enum name =" E" type =" char" id =" xf6YhxRw8JpsHMwP6Tgyroti2gw=" >
6
+ <file path =" dcl.enum/5.cpp" line =" 2" class =" def" />
7
+ <file path =" dcl.enum/5.cpp" line =" 1" />
8
+ </enum >
9
+ </namespace >
10
+ </mrdox >
You can’t perform that action at this time.
0 commit comments