Переглянути джерело

Debug fixes + improvements

Billy Barrow 3 тижнів тому
батько
коміт
6d644b5c83
1 змінених файлів з 16 додано та 4 видалено
  1. 16 4
      src/lib/Debug.vala

+ 16 - 4
src/lib/Debug.vala

@@ -105,22 +105,34 @@ namespace Invercargill {
                 names.add("Lot");
             }
             if(type.is_a(typeof(ReadOnlyAddressable))) {
-                names.add("Addressable");
+                names.add("ReadOnlyAddressable");
             }
             if(type.is_a(typeof(ReadOnlyAssociative))) {
-                names.add("Associative");
+                names.add("ReadOnlyAssociative");
             }
             if(type.is_a(typeof(ReadOnlyCollection))) {
-                names.add("Collection");
+                names.add("ReadOnlyCollection");
             }
             if(type.is_a(typeof(ReadOnlySet))) {
+                names.add("ReadOnlySet");
+            }
+            if(type.is_a(typeof(Addressable))) {
+                names.add("Addressable");
+            }
+            if(type.is_a(typeof(Associative))) {
+                names.add("Associative");
+            }
+            if(type.is_a(typeof(Collection))) {
                 names.add("Collection");
             }
+            if(type.is_a(typeof(Set))) {
+                names.add("Set");
+            }
             if(type.is_a(typeof(Elements))) {
                 names.add("Elements");
             }
             if(type.is_a(typeof(Properties))) {
-                names.add("Elements");
+                names.add("Properties");
             }
             if(type.is_a(typeof(Promotion))) {
                 names.add("Promotion");