Skip to content

Overriding property set accessor #623

Closed
@arakov

Description

Describe the bug
It is not possible to override property set accessor

To Reproduce
(See forms'BaseWinControl)

string Caption
{
    set(string s)
    {
       _caption := s;
    }
   
    set(wide s)
    {
       _caption := string cast(s);
    }
}

Expected behavior
It has to be possible to override property set accessor

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions