summary refs log tree commit diff stats
path: root/lib/system
diff options
context:
space:
mode:
Diffstat (limited to 'lib/system')
-rw-r--r--lib/system/hti.nim2
-rw-r--r--lib/system/repr.nim2
2 files changed, 3 insertions, 1 deletions
diff --git a/lib/system/hti.nim b/lib/system/hti.nim
index bffe81bc8..6e6f109de 100644
--- a/lib/system/hti.nim
+++ b/lib/system/hti.nim
@@ -58,7 +58,7 @@ type
     tyUInt64,
     tyOptAsRef, tyUnused1, tyUnused2,
     tyVarargsHidden,
-    tyUnusedHidden,
+    tyUncheckedArray,
     tyProxyHidden,
     tyBuiltInTypeClassHidden,
     tyUserTypeClassHidden,
diff --git a/lib/system/repr.nim b/lib/system/repr.nim
index 85701c28f..ce7c349bd 100644
--- a/lib/system/repr.nim
+++ b/lib/system/repr.nim
@@ -278,6 +278,8 @@ when not defined(useNimRtl):
     of tyProc, tyPointer:
       if cast[PPointer](p)[] == nil: add result, "nil"
       else: add result, reprPointer(cast[PPointer](p)[])
+    of tyUncheckedArray:
+      add result, "[...]"
     else:
       add result, "(invalid data!)"
     inc(cl.recdepth)