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)(); };
|