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
The main difference between old & new DSL to be aware of when making the switch is the effect of graph pruning in the old DSL. Because of the pruning, the rules didn't have to be careful about which identifiers were definitions and which weren't. Pop nodes were created for many reference identifiers, but pruning ensured they never showed up. The new DSL does not prune, so if a pop is created for a reference, it will show up as a result in the UI when clicking the reference! The second stack graphs PR does work to make the rules more precise in that regard, which is important for a good UI experience.
We should move Python over to the new DSL and remove the old DSL
The text was updated successfully, but these errors were encountered: