| Index: LayoutTests/inspector/console/resources/stack-with-sourceMap.js
|
| diff --git a/LayoutTests/inspector/console/resources/stack-with-sourceMap.js b/LayoutTests/inspector/console/resources/stack-with-sourceMap.js
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..2d4f2f53e10dbbde4b4d3bc2ae5a219e8fe839d6
|
| --- /dev/null
|
| +++ b/LayoutTests/inspector/console/resources/stack-with-sourceMap.js
|
| @@ -0,0 +1,24 @@
|
| +// Generated by CoffeeScript 1.7.1
|
| +(function() {
|
| + var Failure;
|
| +
|
| + Failure = (function() {
|
| + function Failure() {}
|
| +
|
| + Failure.prototype.letsFailWithStack = function() {
|
| + return console.log((new Error()).stack);
|
| + };
|
| +
|
| + return Failure;
|
| +
|
| + })();
|
| +
|
| + window.failure = function() {
|
| + var failure;
|
| + failure = new Failure;
|
| + return failure.letsFailWithStack();
|
| + };
|
| +
|
| +}).call(this);
|
| +
|
| +//# sourceMappingURL=stack-with-sourceMap.map
|
|
|