summaryrefslogtreecommitdiffstats
path: root/devtools/client/debugger/test/mochitest/examples/sourcemapped/output/rollup/webpack-line-mappings.js
diff options
context:
space:
mode:
Diffstat (limited to 'devtools/client/debugger/test/mochitest/examples/sourcemapped/output/rollup/webpack-line-mappings.js')
-rw-r--r--devtools/client/debugger/test/mochitest/examples/sourcemapped/output/rollup/webpack-line-mappings.js26
1 files changed, 26 insertions, 0 deletions
diff --git a/devtools/client/debugger/test/mochitest/examples/sourcemapped/output/rollup/webpack-line-mappings.js b/devtools/client/debugger/test/mochitest/examples/sourcemapped/output/rollup/webpack-line-mappings.js
new file mode 100644
index 0000000000..6bf7cbe837
--- /dev/null
+++ b/devtools/client/debugger/test/mochitest/examples/sourcemapped/output/rollup/webpack-line-mappings.js
@@ -0,0 +1,26 @@
+var rollupWebpackLineMappings = (function () {
+ 'use strict';
+
+ var aDefault = "a-default";
+
+ function root() {
+ let one = 1;
+
+ {
+ const two = 2;
+
+ var fn = function someName(arg) {
+ console.log(this, arguments);
+ console.log("pause here", aDefault, one, two, fn, arg);
+
+ var inner = (arg) => { var body = "42"; console.log("pause here", body, root); };
+ inner();
+ };
+ fn.call("this-value", "arg-value");
+ }
+ }
+
+ return root;
+
+}());
+//# sourceMappingURL=webpack-line-mappings.js.map