mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-26 13:32:08 +00:00
This commit is contained in:
parent
e266af47f4
commit
f2b07bf514
1 changed files with 2 additions and 0 deletions
|
|
@ -18,6 +18,8 @@ namespace Cosmos.IL2CPU {
|
||||||
// need to hash on some UID instead of the refernce. Do not use strings, they are
|
// need to hash on some UID instead of the refernce. Do not use strings, they are
|
||||||
// super slow.
|
// super slow.
|
||||||
private HashSet<MethodBase> mMethodsSet = new HashSet<MethodBase>();
|
private HashSet<MethodBase> mMethodsSet = new HashSet<MethodBase>();
|
||||||
|
// we also need a List`1, to provide an easy way to do scanning. a list doesn't
|
||||||
|
// change position of it's elements.
|
||||||
private List<MethodBase> mMethods = new List<MethodBase>();
|
private List<MethodBase> mMethods = new List<MethodBase>();
|
||||||
private HashSet<Type> mTypesSet = new HashSet<Type>();
|
private HashSet<Type> mTypesSet = new HashSet<Type>();
|
||||||
private HashSet<FieldInfo> mFieldsSet = new HashSet<FieldInfo>();
|
private HashSet<FieldInfo> mFieldsSet = new HashSet<FieldInfo>();
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue