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
{{ message }}
This repository has been archived by the owner on Nov 1, 2020. It is now read-only.
The compiler is currently emitting calls to CctorHelper class defined in StaticClassConstructionContext.cs. This is a very minimalist class constructor runner that e.g. doesn't detect cycles and the current implementation has other problems too.
We need to use the real class constructor runner from ClassConstructorRunner.cs. But for that to happen we need an equivalent of eager static constructors from .NET Native.
This might also be a good candidate for moving into Runtime.Base...
The text was updated successfully, but these errors were encountered:
The compiler is currently emitting calls to
CctorHelper
class defined inStaticClassConstructionContext.cs
. This is a very minimalist class constructor runner that e.g. doesn't detect cycles and the current implementation has other problems too.We need to use the real class constructor runner from
ClassConstructorRunner.cs
. But for that to happen we need an equivalent of eager static constructors from .NET Native.This might also be a good candidate for moving into
Runtime.Base
...The text was updated successfully, but these errors were encountered: