mirror of https://gitlab.com/basile.b/dexed.git
This reverts commit 9be04dd9d0
.
This commit is contained in:
parent
4353e43bb0
commit
2d91c8f5b7
|
@ -495,10 +495,10 @@ begin
|
||||||
else
|
else
|
||||||
fCurrRange.rangeKinds += [rkBlockCom1];
|
fCurrRange.rangeKinds += [rkBlockCom1];
|
||||||
readLine(reader, fTokStop);
|
readLine(reader, fTokStop);
|
||||||
if (fTokKind = tkCommt) and (fkComments1 in fFoldKinds) then
|
if (fTokKind = tkCommt) then
|
||||||
StartCodeFoldBlock(nil)
|
StartCodeFoldBlock(nil, fkComments1 in fFoldKinds)
|
||||||
else if (fTokKind = tkDDocs) and (fkDDoc in fFoldKinds) then
|
else if (fTokKind = tkDDocs) then
|
||||||
StartCodeFoldBlock(nil);
|
StartCodeFoldBlock(nil, fkDDoc in fFoldKinds);
|
||||||
exit;
|
exit;
|
||||||
end else readerReset;
|
end else readerReset;
|
||||||
if (rkBlockCom1 in fCurrRange.rangeKinds) or (rkBlockDoc1 in fCurrRange.rangeKinds) then
|
if (rkBlockCom1 in fCurrRange.rangeKinds) or (rkBlockDoc1 in fCurrRange.rangeKinds) then
|
||||||
|
@ -507,10 +507,10 @@ begin
|
||||||
else fTokKind := tkCommt;
|
else fTokKind := tkCommt;
|
||||||
if readUntil(reader, fTokStop, '*/') then
|
if readUntil(reader, fTokStop, '*/') then
|
||||||
begin
|
begin
|
||||||
if (fTokKind = tkCommt) and (fkComments1 in fFoldKinds) then
|
if (fTokKind = tkCommt) then
|
||||||
EndCodeFoldBlock()
|
EndCodeFoldBlock(fkComments1 in fFoldKinds)
|
||||||
else if (fTokKind = tkDDocs) and (fkDDoc in fFoldKinds) then
|
else if (fTokKind = tkDDocs) then
|
||||||
EndCodeFoldBlock();
|
EndCodeFoldBlock(fkDDoc in fFoldKinds);
|
||||||
fCurrRange.rangeKinds -= [rkBlockDoc1, rkBlockCom1];
|
fCurrRange.rangeKinds -= [rkBlockDoc1, rkBlockCom1];
|
||||||
exit;
|
exit;
|
||||||
end;
|
end;
|
||||||
|
@ -556,10 +556,10 @@ begin
|
||||||
fCurrRange.rangeKinds += [rkBlockDoc2]
|
fCurrRange.rangeKinds += [rkBlockDoc2]
|
||||||
else
|
else
|
||||||
fCurrRange.rangeKinds += [rkBlockCom2];
|
fCurrRange.rangeKinds += [rkBlockCom2];
|
||||||
if (fTokKind = tkCommt) and (fkComments2 in fFoldKinds) then
|
if (fTokKind = tkCommt) then
|
||||||
StartCodeFoldBlock(nil)
|
StartCodeFoldBlock(nil, fkComments2 in fFoldKinds)
|
||||||
else if (fTokKind = tkDDocs) and (fkDDoc in fFoldKinds) then
|
else if (fTokKind = tkDDocs) then
|
||||||
StartCodeFoldBlock(nil);
|
StartCodeFoldBlock(nil, fkDDoc in fFoldKinds);
|
||||||
end;
|
end;
|
||||||
exit;
|
exit;
|
||||||
end else readerReset;
|
end else readerReset;
|
||||||
|
@ -590,10 +590,10 @@ begin
|
||||||
end;
|
end;
|
||||||
if fCurrRange.nestedCommentsCount = 0 then
|
if fCurrRange.nestedCommentsCount = 0 then
|
||||||
begin
|
begin
|
||||||
if (fTokKind = tkCommt) and (fkComments2 in fFoldKinds) then
|
if (fTokKind = tkCommt) then
|
||||||
EndCodeFoldBlock()
|
EndCodeFoldBlock(fkComments2 in fFoldKinds)
|
||||||
else if (fTokKind = tkDDocs) and (fkDDoc in fFoldKinds) then
|
else if (fTokKind = tkDDocs) then
|
||||||
EndCodeFoldBlock();
|
EndCodeFoldBlock(fkDDoc in fFoldKinds);
|
||||||
fCurrRange.rangeKinds -= [rkBlockDoc2, rkBlockCom2];
|
fCurrRange.rangeKinds -= [rkBlockDoc2, rkBlockCom2];
|
||||||
end;
|
end;
|
||||||
exit;
|
exit;
|
||||||
|
@ -635,8 +635,7 @@ begin
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
fCurrRange.rangeKinds += [rkString1];
|
fCurrRange.rangeKinds += [rkString1];
|
||||||
if fkStrings in fFoldKinds then
|
StartCodeFoldBlock(nil, fkStrings in fFoldKinds);
|
||||||
StartCodeFoldBlock(nil);
|
|
||||||
exit;
|
exit;
|
||||||
end else _notRawStrng: readerReset;
|
end else _notRawStrng: readerReset;
|
||||||
if rkString1 in fCurrRange.rangeKinds then
|
if rkString1 in fCurrRange.rangeKinds then
|
||||||
|
@ -660,8 +659,7 @@ begin
|
||||||
fCurrRange.rangeKinds -= [rkString1];
|
fCurrRange.rangeKinds -= [rkString1];
|
||||||
readDelim(reader, fTokStop, stringPostfixes);
|
readDelim(reader, fTokStop, stringPostfixes);
|
||||||
fCurrRange.rString := false;
|
fCurrRange.rString := false;
|
||||||
if fkStrings in fFoldKinds then
|
EndCodeFoldBlock(fkStrings in fFoldKinds);
|
||||||
EndCodeFoldBlock(fkStrings in fFoldKinds);
|
|
||||||
exit;
|
exit;
|
||||||
end
|
end
|
||||||
else break;
|
else break;
|
||||||
|
@ -681,8 +679,7 @@ begin
|
||||||
end;
|
end;
|
||||||
fCurrRange.rangeKinds += [rkString2];
|
fCurrRange.rangeKinds += [rkString2];
|
||||||
readLine(reader, fTokStop);
|
readLine(reader, fTokStop);
|
||||||
if fkStrings in fFoldKinds then
|
StartCodeFoldBlock(nil, fkStrings in fFoldKinds);
|
||||||
StartCodeFoldBlock(nil);
|
|
||||||
exit;
|
exit;
|
||||||
end else readerReset;
|
end else readerReset;
|
||||||
if rkString2 in fCurrRange.rangeKinds then
|
if rkString2 in fCurrRange.rangeKinds then
|
||||||
|
@ -691,8 +688,7 @@ begin
|
||||||
if readUntil(reader, fTokStop, '`') then
|
if readUntil(reader, fTokStop, '`') then
|
||||||
begin
|
begin
|
||||||
fCurrRange.rangeKinds -= [rkString2];
|
fCurrRange.rangeKinds -= [rkString2];
|
||||||
if fkStrings in fFoldKinds then
|
EndCodeFoldBlock(fkStrings in fFoldKinds);
|
||||||
EndCodeFoldBlock();
|
|
||||||
readDelim(reader, fTokStop, stringPostfixes);
|
readDelim(reader, fTokStop, stringPostfixes);
|
||||||
exit;
|
exit;
|
||||||
end;
|
end;
|
||||||
|
@ -838,12 +834,10 @@ begin
|
||||||
begin
|
begin
|
||||||
fTokKind := tkSymbl;
|
fTokKind := tkSymbl;
|
||||||
case reader^ of
|
case reader^ of
|
||||||
'{': if fkBrackets in fFoldKinds then
|
'{': StartCodeFoldBlock(nil, fkBrackets in fFoldKinds);
|
||||||
StartCodeFoldBlock(nil);
|
|
||||||
'}':
|
'}':
|
||||||
begin
|
begin
|
||||||
if fkBrackets in fFoldKinds then
|
EndCodeFoldBlock(fkBrackets in fFoldKinds);
|
||||||
EndCodeFoldBlock();
|
|
||||||
if (reader^ = '}') and (rkAsm in fCurrRange.rangeKinds) then
|
if (reader^ = '}') and (rkAsm in fCurrRange.rangeKinds) then
|
||||||
fCurrRange.rangeKinds -= [rkAsm]; ;
|
fCurrRange.rangeKinds -= [rkAsm]; ;
|
||||||
if (reader+1)^ in stringPostfixes then
|
if (reader+1)^ in stringPostfixes then
|
||||||
|
|
Loading…
Reference in New Issue