SynEdit: Pascal-Highlighter add cppdecl and oldfpccall. Issue #41051

(cherry picked from commit 45b079d896)
This commit is contained in:
Martin 2024-09-24 16:58:51 +02:00
parent 63abb38c15
commit 49bf7a6262

View File

@ -1608,7 +1608,7 @@ end;
function TSynPasSyn.Func59: TtkTokenKind;
begin
if KeyComp('Safecall') and
if (KeyComp('Safecall') or KeyComp('cppdecl')) and
(PasCodeFoldRange.BracketNestLevel in [0, 1]) and
(fRange * [rsInProcHeader, rsProperty, rsAfterEqualOrColon, rsWasInProcHeader] = [rsWasInProcHeader]) and
(TopPascalCodeFoldBlockType in ProcModifierAllowed)
@ -1966,6 +1966,14 @@ begin
StartPascalCodeFoldBlock(cfbtClass);
end;
end
else if KeyComp('oldfpccall') and
(PasCodeFoldRange.BracketNestLevel in [0, 1]) and
(fRange * [rsInProcHeader, rsProperty, rsAfterEqualOrColon, rsWasInProcHeader] = [rsWasInProcHeader]) and
(TopPascalCodeFoldBlockType in ProcModifierAllowed)
then begin
Result := tkModifier;
FRange := FRange + [rsInProcHeader];
end
else
Result := tkIdentifier;
end;