зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1141615 - Use before declaration for `scaledStep` in FlameGraph.jsm, r=jsantell
This commit is contained in:
Родитель
86515ecb89
Коммит
f804ea1fe4
|
@ -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;
|
||||
|
|
Загрузка…
Ссылка в новой задаче