* check for read/write after a newly declared property (mantis #26011)

o this reverts the support that was added for such declarations when
     mantis #4676 was fixed, but this was done for Delphi compatibility
     and
    a) current Delphi versions don't accept such declarations anymore either
    b) such declarations are meaningless
   o fixed a number of such invalid property declarations in packages

git-svn-id: trunk@27966 -
This commit is contained in:
Jonas Maebe 2014-06-15 10:59:47 +00:00
parent 5795daf2cd
commit 159a35da4e
5 changed files with 19 additions and 4 deletions

2
.gitattributes vendored
View File

@ -12753,6 +12753,7 @@ tests/webtbf/tw25915.pp svneol=native#text/pascal
tests/webtbf/tw25951.pp svneol=native#text/pascal
tests/webtbf/tw26176.pp svneol=native#text/pascal
tests/webtbf/tw26193.pp svneol=native#text/pascal
tests/webtbf/tw2650.pp svneol=native#text/plain
tests/webtbf/tw2657.pp svneol=native#text/plain
tests/webtbf/tw2670.pp svneol=native#text/plain
tests/webtbf/tw2719.pp svneol=native#text/plain
@ -13971,7 +13972,6 @@ tests/webtbs/tw2643.pp svneol=native#text/plain
tests/webtbs/tw2645.pp svneol=native#text/plain
tests/webtbs/tw2647.pp svneol=native#text/plain
tests/webtbs/tw2649.pp svneol=native#text/plain
tests/webtbs/tw2650.pp svneol=native#text/plain
tests/webtbs/tw2651.pp svneol=native#text/plain
tests/webtbs/tw2656.pp svneol=native#text/plain
tests/webtbs/tw2659.pp svneol=native#text/plain

View File

@ -335,7 +335,8 @@ implementation
paranr : word;
i : longint;
ImplIntf : TImplementedInterface;
found : boolean;
found,
gotreadorwrite: boolean;
hreadparavs,
hparavs : tparavarsym;
storedprocdef: tprocvardef;
@ -509,9 +510,11 @@ implementation
if not(is_dispinterface(astruct)) then
begin
gotreadorwrite:=false;
{ parse accessors }
if try_to_consume(_READ) then
begin
gotreadorwrite:=true;
p.propaccesslist[palt_read].clear;
if parse_symlist(p.propaccesslist[palt_read],def) then
begin
@ -530,6 +533,7 @@ implementation
p.inherit_accessor(palt_read);
if try_to_consume(_WRITE) then
begin
gotreadorwrite:=true;
p.propaccesslist[palt_write].clear;
if parse_symlist(p.propaccesslist[palt_write],def) then
begin
@ -550,6 +554,12 @@ implementation
end
else
p.inherit_accessor(palt_write);
{ a new property (needs to declare a getter or setter, except in
an interface }
if not(ppo_overrides in p.propoptions) and
not is_interface(astruct) and
not gotreadorwrite then
Consume(_READ);
end
else
parse_dispinterface(p,readprocdef,writeprocdef,paranr);

View File

@ -150,7 +150,7 @@ type
Property FileModified : Boolean Read FFileModified;
// TMemDataset does not implement Filter. Please use OnFilter instead.
Property Filter: string; unimplemented;
Property Filter; unimplemented;
published
Property FileName : String Read FFileName Write FFileName;

View File

@ -133,7 +133,7 @@ Type
Property Daemon : TCustomDaemon Read FDaemon;
Property Params : TStrings Read FParams;
Property LastStatus : TCurrentStatus Read FLastStatus;
Property CheckPoint : DWord;
Property CheckPoint : DWord read FCheckPoint;
end;
TDaemonClass = Class of TDaemon;

View File

@ -1,3 +1,8 @@
{ %fail }
{ no longer supported by current Delphi versions and doesn't mean anything
anyway }
{ Source provided for Free Pascal Bug Report 2650 }
{ Submitted by "marcov" on 2003-08-21 }
{ e-mail: marco@freepascal.org }