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
Consider the following inheritance structure, where LED and SchottkyDiode inherit from for Diode. .
In the previous json exports, any contained child-node of LED would automatically point to Diode's children as its base (regardless of their level of their inheritance chain from FCO), which is the behavior of the node in WebGME. However, this behavior seem to have changed where now the export will also try to find the base node of the Diode if its not FCO. Snippet of the exports are provided here.
As it can be seen that the contained children of LED have contained children of Diode as their base pointers.
Current Exports
However, this is different with current exports, where the children of LED directly use Pin's path as their base pointer, which seems not to be the correct behavior. Where Pin is the base node for Diode's contained children.
Yeah, that looks incorrect. Do you mind adding a test for it? I have a similar test here that it could follow (both in code placement and approach :) ).
Consider the following inheritance structure, where
LED
andSchottkyDiode
inherit from forDiode
..
In the previous json exports, any contained child-node of
LED
would automatically point toDiode
's children as its base (regardless of their level of their inheritance chain from FCO), which is the behavior of the node in WebGME. However, this behavior seem to have changed where now the export will also try to find the base node of theDiode
if its not FCO. Snippet of the exports are provided here.Previous Exports
As it can be seen that the contained children of
LED
have contained children ofDiode
as their base pointers.Current Exports
However, this is different with current exports, where the children of
LED
directly usePin
's path as their base pointer, which seems not to be the correct behavior. WherePin
is the base node forDiode's
contained children.The text was updated successfully, but these errors were encountered: