Delete unused code
This commit is contained in:
Родитель
88138ccf07
Коммит
62ead8b743
|
@ -32,8 +32,6 @@ namespace ILToNative
|
||||||
{
|
{
|
||||||
readonly CompilerTypeSystemContext _typeSystemContext;
|
readonly CompilerTypeSystemContext _typeSystemContext;
|
||||||
readonly CompilationOptions _options;
|
readonly CompilationOptions _options;
|
||||||
|
|
||||||
Dictionary<string, int> _stringTable = new Dictionary<string, int>();
|
|
||||||
|
|
||||||
NodeFactory _nodeFactory;
|
NodeFactory _nodeFactory;
|
||||||
DependencyAnalyzerBase<NodeFactory> _dependencyGraph;
|
DependencyAnalyzerBase<NodeFactory> _dependencyGraph;
|
||||||
|
@ -516,14 +514,6 @@ namespace ILToNative
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
internal int AddToStringTable(string str)
|
|
||||||
{
|
|
||||||
int id;
|
|
||||||
if (!_stringTable.TryGetValue(str, out id))
|
|
||||||
_stringTable.Add(str, id = _stringTable.Count);
|
|
||||||
return id;
|
|
||||||
}
|
|
||||||
|
|
||||||
struct ReadyToRunHelperKey : IEquatable<ReadyToRunHelperKey>
|
struct ReadyToRunHelperKey : IEquatable<ReadyToRunHelperKey>
|
||||||
{
|
{
|
||||||
ReadyToRunHelperId _id;
|
ReadyToRunHelperId _id;
|
||||||
|
|
Загрузка…
Ссылка в новой задаче