IKVM11  11
Java SE 11 Virtual Machine for .NET
Loading...
Searching...
No Matches
ISymbolResolver.cs
Go to the documentation of this file.
2{
3
8 {
9
16
22 IAssemblySymbol? ResolveAssembly(string assemblyName);
23
29 ITypeSymbol? ResolveCoreType(string typeName);
30
36
37 }
38
39}
Represents an assembly, which is a reusable, versionable, and self-describing building block of a com...
Provides an interface to resolve a maaged type symbols.
ITypeSymbol? ResolveCoreType(string typeName)
Resolves the named type from any reference source.
ITypeSymbol? ResolveRuntimeType(string typeName)
Resolves the named type from the IKVM runtime assembly.
IAssemblySymbol? ResolveAssembly(string assemblyName)
Resolves the named assembly from any reference source.
IAssemblySymbol? ResolveBaseAssembly()
Resolves the known Java base assembly.
Represents type declarations: class types, interface types, array types, value types,...