Bug 1141615 - Use before declaration for `scaledStep` in FlameGraph.jsm, r=jsantell

This commit is contained in:
Victor Porof 2015-03-10 13:19:10 -04:00
Родитель 86515ecb89
Коммит f804ea1fe4
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -800,10 +800,10 @@ FlameGraph.prototype = {
}
while (true) {
let scaledStep = dataScale * timingStep;
if (++numIters > maxIters) {
return scaledStep;
}
let scaledStep = dataScale * timingStep;
if (scaledStep < spacingMin) {
timingStep <<= 1;
continue;