;modjewel.define("weinre/common/Ex", function(require, exports, module) { // Generated by CoffeeScript 1.8.0 var Ex, StackTrace, prefix; StackTrace = require('./StackTrace'); module.exports = Ex = (function() { Ex.catching = function(func) { var e; try { return func.call(this); } catch (_error) { e = _error; console.log("runtime error: " + e); return StackTrace.dump(arguments); } }; function Ex(args, message) { if (!args || !args.callee) { throw Ex(arguments, "first parameter must be an Arguments object"); } StackTrace.dump(args); if (message instanceof Error) { message = "threw error: " + message; } message = prefix(args, message); message; } return Ex; })(); prefix = function(args, string) { if (args.callee.signature) { return args.callee.signature + ": " + string; } if (args.callee.displayName) { return args.callee.displayName + ": " + string; } if (args.callee.name) { return args.callee.name + ": " + string; } return "" + ": " + string; }; require("../common/MethodNamer").setNamesForClass(module.exports); });