Fix diff parser: error dedents in between nodes should be ignored for now when copying

This commit is contained in:
Dave Halter
2019-01-18 02:43:12 +01:00
parent 197391dc53
commit f3015efb2d
2 changed files with 27 additions and 0 deletions

View File

@@ -617,6 +617,8 @@ class _NodesTree(object):
# Endmarkers just distort all the checks below. Remove them.
break
if node.type == 'error_leaf' and node.token_type == 'ERROR_DEDENT':
break
# TODO this check might take a bit of time for large files. We
# might want to change this to do more intelligent guessing or
# binary search.