Build the sample code, and run any test. (I tried abs
.)
Each time I do it, I get TypeLoadException
:
An exception of type 'System.TypeLoadException' occurred in Jurassic.dll but was not handled in user code
Additional information: Inheritance security rules violated by type: 'Jurassic.Compiler.WhiteSpaceToken'. Derived types must either match the security accessibility of the base type or be less accessible.
The problem is WhiteSpaceToken
is a simple class, as so is Token
, its base. So it looks like exception is not actually providing accurate information about the class name, and the error is probably caused by some other code.
My understanding is nearly 0 at this case. The only explanation I could possibly imagine is that you can't inherit an abstract class from portable library, but I've never heard about this kind of restriction.
Any ideas why is this happening?
P.S. Adding some quick info about code structure, as requested in comment
mscorlib
.WhiteSpaceToken
is in a normal assembly, targeted to .NET 4. It inherits from Token
. Also only works with int
and string
.I found source of the problem: it was System.Security.AllowPartiallyTrustedCallers
set on the non-portable assembly, which contains WhiteSpaceToken
. After I removed it, issue was gone. Looks like portable code had transparent model, which caused WhiteSpaceToken
to be more loose in the sense of security, than Token
, which in turn caused the problem as described in exception message.
Wish I those messages be more specific.