JackTrapper / dwscript

Automatically exported from code.google.com/p/dwscript
0 stars 0 forks source link

Design time property visibility promotion #452

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
Property visibility promotion is currently only support in script:

type
  TBase = class
  protected
    property X: boolean read GetX;
  end;

  TDerived = class(TBase)
  public
    property X; // promote visibility to public
  end;

Please add the same capability to the design time property declarations 
(TdwsUnit).

The attached patch implements this feature.

Original issue reported on code.google.com by anders.b...@gmail.com on 27 Dec 2013 at 8:50

Attachments:

GoogleCodeExporter commented 9 years ago
Any chance of getting this implemented any time soon?
It is really a very minor modification and, as far as I can tell, has low risk.

Original comment by anders.b...@gmail.com on 5 Feb 2014 at 8:03