diff modules/array.tp @ 329:eef8a5cea812

Use a smarter algorithm for calculating module init order and break some circular module dependencies in the standard library
author Michael Pavone <pavone@retrodev.com>
date Sat, 28 Mar 2015 13:26:03 -0700
parents eb5f1fca9b78
children 884cd5d54c0f
line wrap: on
line diff
--- a/modules/array.tp	Wed Mar 25 00:16:37 2015 -0700
+++ b/modules/array.tp	Sat Mar 28 13:26:03 2015 -0700
@@ -207,7 +207,7 @@
 	}
 
 	jsonEncode <- {
-		parts <- map: :el { json encode: el }
+		parts <- map: :el { jsonEncoder encode: el }
 		"[" . (parts join: ",") . "]"
 	}
 }