-
Notifications
You must be signed in to change notification settings - Fork 348
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bug in text differ #90
Comments
Thanks for the report. I think this is a bug with alignment and display, and isn't specific to text diffing. |
Fixes a crash when testing #90 against trunk.
FWIW it's not too surprising that this case ended up with two hunks. The files have nothing at all in common, so difftastic struggles to work out if the first hunk (changing the left) and the second hunk (changing the right) are near enough to merge. It's now a single hunk on master though. |
IMO either way would make sense. |
This causes us to match up unrelated lines, and doesn't make sense for a line parser. Improves #90.
… enables heredoc as function argument (#90) * Adds more libraries to test suite and fixes identified errors in the grammar * Adds tests for fixed bugs in array destructuring and tests using heredoc as function argument * Remove unneeded optional(',') * Fixes bug with mis-placed value field in Enum implementation as well as an annoying typo * Adds support for arbitrary amount of whitespace after heredoc end tag
…gument Fix null pointer as argument
Made body optional for method_declaration
In this example, the added line "bar" is not visible in the diff. Instead, "baz" is printed twice.
Also, shouldn't this be just one hunk?
The text was updated successfully, but these errors were encountered: