mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-09-07 15:20:30 +02:00
Jedi code format: recognize "sealed" / "abstract" for inheriting objects.
This commit is contained in:
parent
2c1472b435
commit
3ff5d50aaa
@ -4597,6 +4597,12 @@ begin
|
||||
|
||||
Recognise(ttObject);
|
||||
|
||||
if fcTokenList.FirstSolidTokenType = ttSealed then
|
||||
Recognise(ttSealed);
|
||||
|
||||
if fcTokenList.FirstSolidTokenType = ttAbstract then
|
||||
Recognise(ttAbstract);
|
||||
|
||||
if fcTokenList.FirstSolidTokenType = ttOpenBracket then
|
||||
RecogniseObjHeritage;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user