We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d7083d commit 28d8659Copy full SHA for 28d8659
graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/ints/PInt.java
@@ -92,7 +92,7 @@ public int intValue() {
92
return value.intValue();
93
}
94
95
- @TruffleBoundary
+ @TruffleBoundary(transferToInterpreterOnException = false)
96
public int intValueExact() {
97
return value.intValueExact();
98
@@ -102,7 +102,7 @@ public long longValue() {
102
return value.longValue();
103
104
105
106
public long longValueExact() {
107
return value.longValueExact();
108
0 commit comments