Skip to content
Snippets Groups Projects
Commit 0970a8e6 authored by Erik Verbruggen's avatar Erik Verbruggen
Browse files

Moved quick-exit check back to the indenter.

Reviewed-by: ckamm
parent ac517807
No related branches found
No related tags found
No related merge requests found
...@@ -569,6 +569,9 @@ int QmlJSIndenter::indentForStandaloneLine() ...@@ -569,6 +569,9 @@ int QmlJSIndenter::indentForStandaloneLine()
*/ */
int QmlJSIndenter::indentForBottomLine(QTextBlock begin, QTextBlock end, QChar typedIn) int QmlJSIndenter::indentForBottomLine(QTextBlock begin, QTextBlock end, QChar typedIn)
{ {
if (begin == end)
return 0;
const QTextBlock last = end.previous(); const QTextBlock last = end.previous();
initialize(begin, last); initialize(begin, last);
......
...@@ -564,9 +564,6 @@ bool LineInfo::isContinuationLine() ...@@ -564,9 +564,6 @@ bool LineInfo::isContinuationLine()
void LineInfo::initialize(QTextBlock begin, QTextBlock end) void LineInfo::initialize(QTextBlock begin, QTextBlock end)
{ {
if (begin == end)
return;
yyProgram = Program(begin, end); yyProgram = Program(begin, end);
startLinizer(); startLinizer();
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment