@@ -1058,6 +1058,7 @@ private static final class TraceData {
1058
1058
pastBci = 0 ;
1059
1059
pastLine = returnLine = -1 ;
1060
1060
}
1061
+
1061
1062
private int pastBci ;
1062
1063
private int pastLine ;
1063
1064
private int returnLine ;
@@ -1195,7 +1196,7 @@ private Object bytecodeLoop(VirtualFrame virtualFrame, Frame localFrame, Bytecod
1195
1196
mutableData .setPyFrame (ensurePyFrame (virtualFrame , mutableData .getPyFrame ()));
1196
1197
if (mutableData .getPyFrame ().getTraceLine ()) {
1197
1198
invokeTraceFunction (virtualFrame , null , threadState , mutableData , PythonContext .TraceEvent .LINE ,
1198
- mutableData .getPastLine (), true );
1199
+ mutableData .getPastLine (), true );
1199
1200
}
1200
1201
}
1201
1202
mutableData .setPastBci (bci );
@@ -1656,7 +1657,7 @@ private Object bytecodeLoop(VirtualFrame virtualFrame, Frame localFrame, Bytecod
1656
1657
Object value = virtualFrame .getObject (stackTop );
1657
1658
if (!noTrace .isValid () && threadState .getTraceFun () != null ) {
1658
1659
invokeTraceFunction (virtualFrame , value , threadState , mutableData , PythonContext .TraceEvent .RETURN ,
1659
- mutableData .getReturnLine (), true );
1660
+ mutableData .getReturnLine (), true );
1660
1661
}
1661
1662
if (isGeneratorOrCoroutine ) {
1662
1663
throw new GeneratorReturnException (value );
@@ -2098,7 +2099,7 @@ private Object bytecodeLoop(VirtualFrame virtualFrame, Frame localFrame, Bytecod
2098
2099
}
2099
2100
if (!noTrace .isValid () && threadState .getTraceFun () != null ) {
2100
2101
invokeTraceFunction (virtualFrame , value , threadState , mutableData , PythonContext .TraceEvent .RETURN ,
2101
- mutableData .getReturnLine (), true );
2102
+ mutableData .getReturnLine (), true );
2102
2103
}
2103
2104
return new GeneratorYieldResult (bci + 1 , stackTop , value );
2104
2105
}
@@ -2230,7 +2231,7 @@ private Object bytecodeLoop(VirtualFrame virtualFrame, Frame localFrame, Bytecod
2230
2231
}
2231
2232
if (!noTrace .isValid () && threadState .getTraceFun () != null ) {
2232
2233
invokeTraceFunction (virtualFrame , PNone .NONE , threadState , mutableData , PythonContext .TraceEvent .RETURN ,
2233
- mutableData .getReturnLine (), true );
2234
+ mutableData .getReturnLine (), true );
2234
2235
}
2235
2236
if (e == pe ) {
2236
2237
throw pe ;
0 commit comments