Jedi code format: Fix issue #41011, bad format of comments before class var

(cherry picked from commit 109012f8f7)
This commit is contained in:
DomingoGP 2024-07-03 21:09:14 +02:00
parent 501f6f9ab6
commit a82057a3cf

View File

@ -283,6 +283,10 @@ begin
if (pt.TokenType = ttClass) and pt.HasParentNode([nProperty],1) then
exit(True);
{start of class var/threadvar}
if (pt.TokenType = ttClass) and (pt.NextSolidTokenType in [ttVar, ttThreadVar] ) then
exit(True);
{ start of class function decl in class }
if (pt.TokenType = ttClass) and pt.HasParentNode([nProcedureDecl, nFunctionDecl, nProperty]) and
(not IsGenericFunctionOrProperty(pt)) and