summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/try-catch-1.js
blob: 33041451aa8896f39f702eae686d0bfc522b2d26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
function F() {
    try {
	var T = {};
        throw 12;
    } catch (e) {
	// Don't throw.
        T.x = 5;
    }
}
F();
F();
F();