Skip to content

Commit a749dea

Browse files
author
Adam Hrbac
committed
Fix style
1 parent 8bec500 commit a749dea

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/nodes/bytecode/PBytecodeRootNode.java

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1058,6 +1058,7 @@ private static final class TraceData {
10581058
pastBci = 0;
10591059
pastLine = returnLine = -1;
10601060
}
1061+
10611062
private int pastBci;
10621063
private int pastLine;
10631064
private int returnLine;
@@ -1195,7 +1196,7 @@ private Object bytecodeLoop(VirtualFrame virtualFrame, Frame localFrame, Bytecod
11951196
mutableData.setPyFrame(ensurePyFrame(virtualFrame, mutableData.getPyFrame()));
11961197
if (mutableData.getPyFrame().getTraceLine()) {
11971198
invokeTraceFunction(virtualFrame, null, threadState, mutableData, PythonContext.TraceEvent.LINE,
1198-
mutableData.getPastLine(), true);
1199+
mutableData.getPastLine(), true);
11991200
}
12001201
}
12011202
mutableData.setPastBci(bci);
@@ -1656,7 +1657,7 @@ private Object bytecodeLoop(VirtualFrame virtualFrame, Frame localFrame, Bytecod
16561657
Object value = virtualFrame.getObject(stackTop);
16571658
if (!noTrace.isValid() && threadState.getTraceFun() != null) {
16581659
invokeTraceFunction(virtualFrame, value, threadState, mutableData, PythonContext.TraceEvent.RETURN,
1659-
mutableData.getReturnLine(), true);
1660+
mutableData.getReturnLine(), true);
16601661
}
16611662
if (isGeneratorOrCoroutine) {
16621663
throw new GeneratorReturnException(value);
@@ -2098,7 +2099,7 @@ private Object bytecodeLoop(VirtualFrame virtualFrame, Frame localFrame, Bytecod
20982099
}
20992100
if (!noTrace.isValid() && threadState.getTraceFun() != null) {
21002101
invokeTraceFunction(virtualFrame, value, threadState, mutableData, PythonContext.TraceEvent.RETURN,
2101-
mutableData.getReturnLine(), true);
2102+
mutableData.getReturnLine(), true);
21022103
}
21032104
return new GeneratorYieldResult(bci + 1, stackTop, value);
21042105
}
@@ -2230,7 +2231,7 @@ private Object bytecodeLoop(VirtualFrame virtualFrame, Frame localFrame, Bytecod
22302231
}
22312232
if (!noTrace.isValid() && threadState.getTraceFun() != null) {
22322233
invokeTraceFunction(virtualFrame, PNone.NONE, threadState, mutableData, PythonContext.TraceEvent.RETURN,
2233-
mutableData.getReturnLine(), true);
2234+
mutableData.getReturnLine(), true);
22342235
}
22352236
if (e == pe) {
22362237
throw pe;

0 commit comments

Comments
 (0)