/
glscene
/
pasdoc
Обзор
Документация
Войти
/
glscene
/
pasdoc
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
tests/testcases/ok_class_function.pas
34 строки
632 B
Fr0sT-Brutal
* changed 4 testcases so that being processed in "parse implementation section" mode they would produce exactly the same output
18 сен 2019, 18:40
18 сен 2019, 18:40
47ed311
Код
Авторство
О чём код?
// Test for handling class functions in PasDoc unit ok_class_function; interface type // @abstract(This class is designed to see if PasDoc can // parse class functions correctly.) TDummy = class(TObject) public // Test To see if PasDoc can handle this. Class Function MyFunction: integer; // Test To see if PasDoc can handle this. class procedure MyProcedure; end; implementation { TDummy } // Override comment above so that "parse implementation section" mode wouldn't change a thing { } class function TDummy.MyFunction: integer; begin end; class procedure TDummy.MyProcedure; begin end; end.