Revert "[SyntaxColor] Improve highligting of multiline strings"

This reverts commit 86d0fc37bc.
This was causing a performance regression.

Resolves rdar://problem/32434045
This commit is contained in:
Nathan Hawes
2017-05-26 16:46:03 -07:00
parent e43084cb50
commit e5426ecfa5
9 changed files with 81 additions and 435 deletions

View File

@@ -81,11 +81,6 @@ public:
else if (Line >= StartLine + Length) {
Length = Line - StartLine + 1;
}
else if (Line < StartLine) {
unsigned Delta = StartLine - Line;
StartLine -= Delta;
Length += Delta;
}
}
};