/
glscene
/
pasdoc
Обзор
Документация
Войти
/
glscene
/
pasdoc
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
tests/testcases/ok_array_property.pas
19 строк
700 B
Michalis Kamburelis
Autotest FullDeclaration fixes for array property
13 фев 2021, 01:29
13 фев 2021, 01:29
17905ab
Код
Авторство
О чём код?
unit ok_array_property; interface type TAbstractNode = class strict private function GetMetadataBooleanArray(const Key: String; const Index: Cardinal): Boolean; procedure SetMetadataBooleanArray(const Key: String; const Index: Cardinal; const Value: Boolean); function GetMetadataBoolean(const Key: String): Boolean; procedure SetMetadataBoolean(const Key: String; const Value: Boolean); public property MetadataBoolean[const Key: String]: Boolean read GetMetadataBoolean write SetMetadataBoolean; property MetadataBooleanArray[const Key: String; const Index: Cardinal]: Boolean read GetMetadataBooleanArray write SetMetadataBooleanArray; end; implementation end.