Index: src/debug/liveedit.js |
diff --git a/src/debug/liveedit.js b/src/debug/liveedit.js |
index 27425c154d03a1bf34e56cf688db6a4c7312b7c4..685eebdde7f1ad808d95fa99bf41da7b37cecaa4 100644 |
--- a/src/debug/liveedit.js |
+++ b/src/debug/liveedit.js |
@@ -216,10 +216,10 @@ |
position_patch_report); |
if (update_positions_list[i].live_shared_function_infos) { |
- update_positions_list[i].live_shared_function_infos. |
- forEach(function (info) { |
- %LiveEditFunctionSourceUpdated(info.raw_array); |
- }); |
+ for (var j = 0; j < update_positions_list[i].live_shared_function_infos.length; j++) { |
Camillo Bruni
2015/09/08 07:10:34
Did you change this on purpose? Seems unrelated to
aperez
2015/09/09 12:48:43
Now that I am changing the code to use a macro I c
|
+ var info = update_positions_list[i].live_shared_function_infos[j]; |
+ %LiveEditFunctionSourceUpdated(info.raw_array); |
+ } |
} |
} |