This commit is contained in:
Бондарев Иван 2019-04-09 21:59:45 +02:00
parent 359a37ebe3
commit 40be3ccb30

View file

@ -588,7 +588,7 @@ namespace PascalABCCompiler.Parsers
}
else
sb.Append(prepare_member_name(t.Name));
sb.Append(" = " + GetClassKeyword(t));
sb.Append(" = " + (t.IsSealed && t.IsAbstract ? "static ":"")+GetClassKeyword(t));
bool bracket = false;
if (t.IsEnum)
{