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
<html>
<body>
<!-- This is a comment -->
<!-- <p>This is a paragraph. No content should be displayed</p> -->
<!-- Comments are not displayed in the browser -->
</body>
</html>
The program will crash with the following error:
XID_map.cpp:256 getXIDbyNode() :Node(Impl) not found
Given the following file:
The program will crash with the following error:
This is because the traversal and registering of xids in https://github.com/fdintino/xydiff/blob/master/src/XID_map.cpp#L351 does not match https://github.com/fdintino/xydiff/blob/master/src/Diff_NodesManager.cpp#L225, the comment nodes are ignored in the second traversal but not the first hence there is a mismatch in the nodes that are processed. The solution to this would be to have consistent processing of nodes in both methods.
The text was updated successfully, but these errors were encountered: