This commit is contained in:
mterwoord_cp 2009-07-24 17:05:09 +00:00
parent e266af47f4
commit f2b07bf514

View file

@ -18,6 +18,8 @@ namespace Cosmos.IL2CPU {
// need to hash on some UID instead of the refernce. Do not use strings, they are
// super slow.
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 HashSet<Type> mTypesSet = new HashSet<Type>();
private HashSet<FieldInfo> mFieldsSet = new HashSet<FieldInfo>();