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 above would succeed despite pass a not having specified a Next, because b specifies a as its Previous. This would obviously require lookup based on the Previous property of the currently processed pass, although this could be somewhat mitigated by constructing a dictionary with the Previous as the key. There would also have to be some mechanism to ensure that if multiple passes specify the same Previous then an exception would be thrown.
The text was updated successfully, but these errors were encountered:
Add the ability for
CompilerPassSequenceBuilder
to be able to find the next pass in sequence based on thePrevious
property of another pass.The above would succeed despite pass
a
not having specified aNext
, becauseb
specifiesa
as itsPrevious
. This would obviously require lookup based on thePrevious
property of the currently processed pass, although this could be somewhat mitigated by constructing a dictionary with thePrevious
as the key. There would also have to be some mechanism to ensure that if multiple passes specify the samePrevious
then an exception would be thrown.The text was updated successfully, but these errors were encountered: