Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/ikvm-fork.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjfrijters <jfrijters>2013-01-15 18:40:03 +0400
committerjfrijters <jfrijters>2013-01-15 18:40:03 +0400
commit26d42a966b8b8d635af3655a02f485097bac47e9 (patch)
tree1eb4500c601bbae8f1763410c1552fa25c79952f /ikvmc/CompilerClassLoader.cs
parentca0f439a93bbf1db4a6303a00a08eff259202b95 (diff)
Moved (legacy) stub class parsing from the guts of the class loader to an explicit upfront step.
Diffstat (limited to 'ikvmc/CompilerClassLoader.cs')
-rw-r--r--ikvmc/CompilerClassLoader.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/ikvmc/CompilerClassLoader.cs b/ikvmc/CompilerClassLoader.cs
index 4da802b8..f164702b 100644
--- a/ikvmc/CompilerClassLoader.cs
+++ b/ikvmc/CompilerClassLoader.cs
@@ -3333,6 +3333,7 @@ namespace IKVM.Internal
internal bool guessFileKind;
internal Dictionary<string, ClassItem> classes;
internal string[] unresolvedReferences; // only used during command line parsing
+ internal Dictionary<string, string> legacyStubReferences = new Dictionary<string,string>(); // only used during command line parsing
internal Assembly[] references;
internal string[] peerReferences;
internal bool crossReferenceAllPeers = true;