summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2013-02-19 07:07:20 +0100
committerAraq <rumpf_a@web.de>2013-02-19 07:07:20 +0100
commit4a51209e9f2910ceb8527cabd24fee23c7b0fb75 (patch)
tree1e734f3956ee0880ba87f9f20b4b6035fd7f4762
parent883fa40cd385b9cbcec9d494d1919aaed909721f (diff)
parenta8aa1e1dcadabe3c968b111a3523506088feb130 (diff)
downloadNim-4a51209e9f2910ceb8527cabd24fee23c7b0fb75.tar.gz
Merge branch 'master' of github.com:Araq/Nimrod
-rwxr-xr-xcompiler/semexprs.nim2
-rwxr-xr-xcompiler/types.nim48
2 files changed, 30 insertions, 20 deletions
diff --git a/compiler/semexprs.nim b/compiler/semexprs.nim
index 48fe5b4d7..1fcd7105d 100755
--- a/compiler/semexprs.nim
+++ b/compiler/semexprs.nim
@@ -1655,7 +1655,7 @@ proc semCaseExpr(c: PContext, caseStmt: PNode): PNode =
 proc fixImmediateParams(n: PNode): PNode =
   # XXX: Temporary work-around until we carry out
   # the planned overload resolution reforms
-  for i in 1 .. <n.len:
+  for i in 1 .. <safeLen(n):
     if n[i].kind == nkDo: n.sons[i] = n[i][bodyPos]
   
   result = n
diff --git a/compiler/types.nim b/compiler/types.nim
index 1c660958c..f3c54e2c5 100755
--- a/compiler/types.nim
+++ b/compiler/types.nim
@@ -393,26 +393,36 @@ proc rangeToStr(n: PNode): string =
   assert(n.kind == nkRange)
   result = ValueToString(n.sons[0]) & ".." & ValueToString(n.sons[1])
 
+const 
+  typeToStr: array[TTypeKind, string] = ["None", "bool", "Char", "empty", 
+    "Array Constructor [$1]", "nil", "expr", "stmt", "typeDesc", 
+    "GenericInvokation", "GenericBody", "GenericInst", "GenericParam", 
+    "distinct $1", "enum", "ordinal[$1]", "array[$1, $2]", "object", "tuple", 
+    "set[$1]", "range[$1]", "ptr ", "ref ", "var ", "seq[$1]", "proc", 
+    "pointer", "OpenArray[$1]", "string", "CString", "Forward",
+    "int", "int8", "int16", "int32", "int64",
+    "float", "float32", "float64", "float128",
+    "uint", "uint8", "uint16", "uint32", "uint64",
+    "bignum", "const ",
+    "!", "varargs[$1]", "iter[$1]", "Error Type", "TypeClass"]
+
 proc constraintsToStr(t: PType): string =
-  let sep = if tfAny in t.flags: " or " else: " and "
-  result = ""
-  for i in countup(0, t.sons.len - 1):
-    if i > 0: result.add(sep)
-    result.add(t.sons[i].typeToString)
+  proc consToStr(t: PType): string =
+    if t.len > 0: result = t.typeToString
+    else: result = typeToStr[t.kind].strip
+
+  # better error messages are nice:
+  case t.len
+  of 0: result = "constraint[]"
+  of 1: result = "constraint[" & consToStr(t.sons[0]) & "]"
+  else:
+    let sep = if tfAny in t.flags: " or " else: " and "
+    result = ""
+    for i in countup(0, t.len - 1):
+      if i > 0: result.add(sep)
+      result.add(t.sons[i].consToStr)
 
 proc TypeToString(typ: PType, prefer: TPreferedDesc = preferName): string = 
-  const 
-    typeToStr: array[TTypeKind, string] = ["None", "bool", "Char", "empty", 
-      "Array Constructor [$1]", "nil", "expr", "stmt", "typeDesc", 
-      "GenericInvokation", "GenericBody", "GenericInst", "GenericParam", 
-      "distinct $1", "enum", "ordinal[$1]", "array[$1, $2]", "object", "tuple", 
-      "set[$1]", "range[$1]", "ptr ", "ref ", "var ", "seq[$1]", "proc", 
-      "pointer", "OpenArray[$1]", "string", "CString", "Forward",
-      "int", "int8", "int16", "int32", "int64",
-      "float", "float32", "float64", "float128",
-      "uint", "uint8", "uint16", "uint32", "uint64",
-      "bignum", "const ",
-      "!", "varargs[$1]", "iter[$1]", "Error Type", "TypeClass"]
   var t = typ
   result = ""
   if t == nil: return 
@@ -433,12 +443,12 @@ proc TypeToString(typ: PType, prefer: TPreferedDesc = preferName): string =
       add(result, typeToString(t.sons[i]))
     add(result, ']')
   of tyTypeDesc:
-    if t.sons == nil or t.sons.len == 0: result = "typedesc"
+    if t.len == 0: result = "typedesc"
     else: result = "typedesc[" & constraintsToStr(t) & "]"
   of tyTypeClass:
     result = constraintsToStr(t)
   of tyExpr:
-    if t.sons.len == 0: result = "expr"
+    if t.len == 0: result = "expr"
     else: result = "expr[" & constraintsToStr(t) & "]"
   of tyArray: 
     if t.sons[0].kind == tyRange: