chromium-codereview
chromium-codereview copied to clipboard
Syntax state from old and new lines can conflict
ex. https://codereview.chromium.org/554283003
Here a line with the start of a multi line comment was removed, and then a code line was added, but the syntax state from the removal line is reused for the new code lines making it look like a comment.
Should probably have two syntax state objects, one for old lines and one for new lines.