+ allow dyn. arrays to be published, resolves #10493

git-svn-id: trunk@10870 -
This commit is contained in:
florian 2008-05-02 21:15:10 +00:00
parent f85d57037c
commit c56c6e976c
3 changed files with 23 additions and 0 deletions

1
.gitattributes vendored
View File

@ -8099,6 +8099,7 @@ tests/webtbs/tw1044.pp svneol=native#text/plain
tests/webtbs/tw10454.pp svneol=native#text/plain
tests/webtbs/tw1046.pp svneol=native#text/plain
tests/webtbs/tw10489.pp svneol=native#text/plain
tests/webtbs/tw10493.pp svneol=native#text/plain
tests/webtbs/tw10495.pp svneol=native#text/plain
tests/webtbs/tw1050.pp svneol=native#text/plain
tests/webtbs/tw10519.pp svneol=native#text/plain

View File

@ -301,6 +301,7 @@ interface
{ returns the label of the range check string }
function needs_inittable : boolean;override;
property elementdef : tdef read _elementdef write setelementdef;
function is_publishable : boolean;override;
end;
torddef = class(tstoreddef)
@ -2402,6 +2403,11 @@ implementation
end;
function tarraydef.is_publishable : boolean;
begin
Result:=ado_IsDynamicArray in arrayoptions;
end;
{***************************************************************************
tabstractrecorddef
***************************************************************************}

16
tests/webtbs/tw10493.pp Normal file
View File

@ -0,0 +1,16 @@
{$mode objfpc}
program test;
type
TStringArray = array of String;
TBug = class
private
fSA: TStringArray;
published
property SA: TStringArray read fSA write fSA;
end;
begin
end.