Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Inserting newlines in the middle of a statement will appear as a change in most diff tools. But for most languages there are points of a code where you can insert newlines without altering the behavior, or the binary.

Is there any diff tool that can identify which changes really alter the code?

Such tool for HTML, XML, XAML, C# and other languages I use would be very nice.

share|improve this question
3  
I use Beyond Compare, it is language-aware, but still displays changes wrt newlines added in the middle of a line, even when you configure it to ignore whitespace changes. – Chris O Apr 25 '11 at 14:15
This Q might be better suited to the programmers SE site? – Twelve47 Apr 25 '11 at 14:24
1  
@Chris Beyond Compare is language aware only in the Syntax Highlighting sense. It isn't aware of languages when performing the comparison. – Jader Dias Apr 25 '11 at 16:45
Related question superuser.com/questions/275219/… – Jader Dias Apr 25 '11 at 16:49
There are diff tools which can ignore whitespace and line breaks. This is often enough. In fact I'm sure the standard diff tool on some *nix systems I've used recently had just these features. – hippietrail Aug 8 '12 at 10:16
show 1 more comment

7 Answers

up vote 3 down vote accepted

See our Smart Differencer family of source-code aware diff tools.

These tools compare code using the syntax of the programming language rather than source lines. They are insensitive to language-specific whitespace and comments. Diffs are reported in terms of langauge elements (identifiers, expressions, statements, blocks, methods, ...) and plausible abstract editing actions (insert, delete, move, copy, replace, rename-identifier-in-block) which makes understanding the deltas easier (in our opinion) than line-based diffs.

There are SmartDifferencer tools for a variety of langauges, including C, C++, COBOL, C#, Java, JSON, XML. We haven't built an HTML differencer to date. I think XAML is a kind of XML?

share|improve this answer
yes, XAML is a subset of the XML language – Jader Dias Apr 25 '11 at 16:30
@Jader OK, using an XML Smart Differencer is probably enough. We've talked about building XML differencers that take into account the DTDs and/or Schema definitions, but I don't think that will happen soon. – Ira Baxter Apr 25 '11 at 16:54
I haven't found the XML Smart Differencer in your site. – Jader Dias Apr 25 '11 at 16:58
@Jader probably just not listed. See my bio; contact me that way. – Ira Baxter Apr 25 '11 at 16:59

Also take a look at http://www.schneidersoft.com/Products/OOP-DIFF/OOP-DIFF.aspx

OOP-DIFF attempts to do exactly this.

share|improve this answer

I wrote a tool called Pretty Diff. It is language aware but only for JavaScript, JSON, CSS, SCSS, XML, JSTL, HTML, and CSV. It is written in JavaScript so you can test it out in your browser or visit the samples page to see some demos.

share|improve this answer

I'm super-happy with the free WinMerge, which is language-aware enough for me; and which understands that white space is a lot more than just 0x20.

I came from *nux diff and Windows WinDiff; WinMerge is orders of magnitude more helpful.

share|improve this answer
1  
I like WinMerge, too. However, its diff engine isn't really language-aware, is it? The only language-specific feature I've seen is syntax highlighting. – Justin Apr 25 '11 at 15:00
@Justin Language awareness would be better, but broader whitespace specification would be enough. – Jader Dias Apr 25 '11 at 16:29
@Justin -- yes, syntax highlighting is what I meant. – Pete Wilson Apr 25 '11 at 21:05

I use Compare++ which is language-aware for C#, C/C++, Java, Javascript, ... In the tool, after enabling 'Ignore code style changes', all newlines without altering the behavior will be ignored. You can try.

share|improve this answer

DiffJ (java): https://github.com/jpace/diffj , open source, free

share|improve this answer

This should also be easy for languages where indent-like tools exist, like for C, C++, perl, ... The strategy then is to

  1. Canonicalize the sources to compare with the indenter
  2. Run a line based diff on the indented results

Might not be quite as good as specialized tools, but beats having none any day.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.