You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
XML generation is broken with "&=" and "<<=" operators. It does not escape them into "&=" and "<<=". So it generates invalid XML.
./dscanner --ast example.d > example.xml
// example.d
int main() {
size_t a, b;
a &= b; // is: <assignExpression operator="&=">
// should be: <assignExpression operator="&=">
a <<= b; // is: <assignExpression operator="<<=">
// should be: <assignExpression operator="<<=">
return 0;