You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If schema A extends schema B and schema A has properties X,Y and Z and schema B has properties L,M and N and includeConstructors is set to true, the constructor of B correctly has arguments for L, M and N but the constructor of A only has arguments for X,Y and Z.
I would expect A to have LMNXYZ in its constructor.
Looking at the code, this looks non-trivial to fix.
The text was updated successfully, but these errors were encountered:
If schema A extends schema B and schema A has properties X,Y and Z and schema B has properties L,M and N and
includeConstructors
is set to true, the constructor of B correctly has arguments for L, M and N but the constructor of A only has arguments for X,Y and Z.I would expect A to have LMNXYZ in its constructor.
Looking at the code, this looks non-trivial to fix.
The text was updated successfully, but these errors were encountered: