aboutsummaryrefslogtreecommitdiffstats
path: root/signaling-server/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/issue50.js
blob: 060f9df82fb98680567edae7e53849c06b9ce536 (plain)
1
2
3
4
5
6
7
8
9
function bar(a) {
        try {
                foo();
        } catch(e) {
                alert("Exception caught (foo not defined)");
        }
        alert(a);               // 10 in FF, "[object Error]" in IE
}
bar(10);