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
compiles to IL which does not contain the const value; but it is present in the debug metadata.
Reading and then immediately writing the assembly fails with an NRE claiming that there is a null primitive constant; when stepping through the process, the type information is correctly preserved in the debug metadata (still IList<string>, with element type GenericInst). the method SignatureWriter GetConstantSignature (ElementType type, object value), however, sends this to the default primitive case where the null value fails.
* Address issue #873
* Be explicit as to what we support writing
* Use normal test infrastructure
* Restore writing primitives
* Restore style
* Can't verify .net core assembly
Co-authored-by: Jb Evain <jb@evain.net>
The following code
compiles to IL which does not contain the
const
value; but it is present in the debug metadata.Reading and then immediately writing the assembly fails with an NRE claiming that there is a null primitive constant; when stepping through the process, the type information is correctly preserved in the debug metadata (still
IList<string>
, with element typeGenericInst
). the methodSignatureWriter GetConstantSignature (ElementType type, object value)
, however, sends this to thedefault
primitive case where the null value fails.The following reformulation of that method
passes the unit tests, and permits the assembly to be written.
The text was updated successfully, but these errors were encountered: