summary refs log tree commit diff stats
path: root/lib
diff options
context:
space:
mode:
authorSimon Hafner <hafnersimon@gmail.com>2013-02-21 15:11:48 -0600
committerSimon Hafner <hafnersimon@gmail.com>2013-02-21 15:11:48 -0600
commitbf82f79f1e27b4580672af457a95f3d85ea781a4 (patch)
treec436d3d577fea84621b9afd9aa40a6d370c37605 /lib
parent7fc9dfcb2400aa0a97cad85ee0d16713e30fec8b (diff)
downloadNim-bf82f79f1e27b4580672af457a95f3d85ea781a4.tar.gz
added tests, actually implemented $ and ==
Diffstat (limited to 'lib')
-rwxr-xr-xlib/system.nim4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/system.nim b/lib/system.nim
index 5f9a24ba9..db78d2740 100755
--- a/lib/system.nim
+++ b/lib/system.nim
@@ -1532,7 +1532,7 @@ iterator fieldPairs*[S: tuple|object, T: tuple|object](x: S, y: T): tuple[
   ## The current implementation also has a bug that affects symbol binding
   ## in the loop body.
 
-proc `==`*[T: tuple](x, y: T): bool = 
+proc `==`*[T: tuple|object](x, y: T): bool = 
   ## generic ``==`` operator for tuples that is lifted from the components
   ## of `x` and `y`.
   for a, b in fields(x, y):
@@ -1557,7 +1557,7 @@ proc `<`*[T: tuple](x, y: T): bool =
     if c > 0: return false
   return false
 
-proc `$`*[T: tuple](x: T): string = 
+proc `$`*[T: tuple|object](x: T): string = 
   ## generic ``$`` operator for tuples that is lifted from the components
   ## of `x`. Example:
   ##