Closed isc30 closed 4 years ago
class X : Y { public string V { get; set; } } class Y { public string V { get; set; } }
this will generate ss.defineProperty(this, 'V', null); in both constructors, failing when it was already defined.
ss.defineProperty(this, 'V', null);
Possible solution: If the property already exists, just set the value.
this will generate
ss.defineProperty(this, 'V', null);
in both constructors, failing when it was already defined.Possible solution: If the property already exists, just set the value.