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 the precompilation behavior of a shim is defined in the same Engine trait where the runtime behavior is specified.
The two behaviors are linked, in the sense that they need to be compatible. But they are also independent, as precompilation needs to run in the shim process while the runtime runs out of process.
I propose we split them in two different traits, where the Precompiler trait could be an associated type to the Engine trait.
The text was updated successfully, but these errors were encountered:
Currently the precompilation behavior of a shim is defined in the same
Engine
trait where the runtime behavior is specified.The two behaviors are linked, in the sense that they need to be compatible. But they are also independent, as precompilation needs to run in the shim process while the runtime runs out of process.
I propose we split them in two different traits, where the
Precompiler
trait could be an associated type to theEngine
trait.The text was updated successfully, but these errors were encountered: