Index: LayoutTests/dart/inspector/merged-callstack.js |
diff --git a/LayoutTests/dart/inspector/merged-callstack.js b/LayoutTests/dart/inspector/merged-callstack.js |
new file mode 100644 |
index 0000000000000000000000000000000000000000..ecb6853f40a8def23c3d7fc8b2602eb5096fedf2 |
--- /dev/null |
+++ b/LayoutTests/dart/inspector/merged-callstack.js |
@@ -0,0 +1,7 @@ |
+function bounceHelper(count, callback) { |
+ callback(count); |
+} |
+ |
+function bounce(count, callback) { |
+ bounceHelper(count, callback); |
+} |