We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
stripLabelLikeStatements
1 parent 926e8ab commit e0875c7Copy full SHA for e0875c7
1 file changed
src/CppParser/Bootstrap/Bootstrap.cs
@@ -359,6 +359,14 @@ public override bool VisitClassDecl(Class @class)
359
return base.VisitClassDecl(@class);
360
}
361
362
+ public override bool VisitProperty(Property property)
363
+ {
364
+ if (property.Name == "stripLabelLikeStatements")
365
+ property.ExplicitlyIgnore();
366
+
367
+ return base.VisitProperty(property);
368
+ }
369
370
public override bool VisitEnumDecl(Enumeration @enum)
371
{
372
if (AlreadyVisited(@enum))
0 commit comments