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
Currently scalac-scoverage-plugin runs after typer and before patmat phases. There are no other phases in between so the order is unique and fixed.
Situation changes when using other scalac plugins which add phases in between typer and patmat. Scoverage phase can be then nondeterministically inserted somewhere between these new phases.
To fine-tune phases ordering I propose adding following flags
which would specify what other phases beside typer and patmat need to taken into account when determining phase ordering by appending them to runsAfter and runsBefore lists.
Uh oh!
There was an error while loading. Please reload this page.
Currently scalac-scoverage-plugin runs after
typer
and beforepatmat
phases. There are no other phases in between so the order is unique and fixed.Situation changes when using other scalac plugins which add phases in between typer and patmat. Scoverage phase can be then nondeterministically inserted somewhere between these new phases.
To fine-tune phases ordering I propose adding following flags
which would specify what other phases beside typer and patmat need to taken into account when determining phase ordering by appending them to
runsAfter
andrunsBefore
lists.PR: #164
What's your comments? Can we have these flags added?
The text was updated successfully, but these errors were encountered: