summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/jaeger/recompile/bug646267.js
blob: 2f150376758ae6d0f42fc9c3e83a9c04d6cbdf32 (plain)
1
2
3
4
5
6
7
8
function t(code) {
    var f = new Function(code);
    try { f(); } catch (e) { }
}
t("");
t("");
t("");
t("this.function = 7;");