summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/profiler/bug1135703.js
blob: 3bad17e94310c7b9e7ae19890823a8f79ff25c88 (plain)
1
2
3
4
5
6
for (var idx = 0; idx < 20; ++idx) {
  newFunc("enableGeckoProfilingWithSlowAssertions(); disableGeckoProfiling();");
}
newFunc("enableGeckoProfiling();");
function newFunc(x) { new Function(x)(); };