s/BenchmarkReportJSON.st
changeset 142 c69d1eb92d91
parent 125 1449209198c1
child 180 df8e7dcbfd8d
--- a/s/BenchmarkReportJSON.st	Tue Jul 30 23:54:50 2013 +0100
+++ b/s/BenchmarkReportJSON.st	Wed Jul 31 00:03:10 2013 +0100
@@ -99,9 +99,16 @@
 !
 
 writeParameters: outcome
-    json writeDictionaryWith: []
+    json writeDictionaryWith: [
+        outcome parameters do:[:paramAndValue |
+            json writeKey: paramAndValue key name value: paramAndValue value 
+        ] separatedBy:[
+            json writeElementSeparator
+        ]
+    ]
 
     "Created: / 12-06-2013 / 14:10:19 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 30-07-2013 / 23:58:43 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
 !BenchmarkReportJSON class methodsFor:'documentation'!