Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
[mono.git] / mono / metadata / TODO
index 7c7da2c7aef7a70c24b3886ee962492d27554e3a..98c3ce7b7d35c7e3e76f3cc08e342da5c1a2a449 100644 (file)
@@ -1,5 +1,15 @@
 
-* Rename assembly.c to module.c
+* mono_class_from_name
 
-       * Rename all symbols called `assembly' to module, because that is 
-         what they actually are.
\ No newline at end of file
+       In many places we call mono_class_from_name with static values,
+       we should cache that instead:
+
+       static MonoClass *klass;
+
+       if (!klass){
+               klass = mono_class_from_name (...);
+       }
+
+* Uniform names
+
+       We have a mess of names in the icall.c file, we need to sort that out.