JS: fix source map generation in some cases

This commit is contained in:
Alexey Andreev 2019-10-28 14:33:53 +03:00
parent 6ed00f1af2
commit 15be89a758

View File

@ -26,7 +26,9 @@ class LayerIterator {
methodIterators[i] = new MethodIterator(debugInformation.layers[i]);
}
nextImpl();
if (!isEndReached()) {
nextImpl();
}
}
public boolean isEndReached() {