@@ -600,13 +600,13 @@ protected int findWithBounds(String self, String str, int start, int end) {
600
600
public abstract static class RFindNode extends FindBaseNode {
601
601
602
602
@ Override
603
- @ TruffleBoundary ( transferToInterpreterOnException = false )
603
+ @ TruffleBoundary
604
604
protected int find (String self , String findStr ) {
605
605
return self .lastIndexOf (findStr );
606
606
}
607
607
608
608
@ Override
609
- @ TruffleBoundary ( transferToInterpreterOnException = false )
609
+ @ TruffleBoundary
610
610
protected int findWithBounds (String self , String str , int start , int end ) {
611
611
if (start != -1 && end != -1 ) {
612
612
int idx = self .lastIndexOf (str , end - str .length () - 1 );
@@ -627,13 +627,13 @@ protected int findWithBounds(String self, String str, int start, int end) {
627
627
public abstract static class FindNode extends FindBaseNode {
628
628
629
629
@ Override
630
- @ TruffleBoundary ( transferToInterpreterOnException = false )
630
+ @ TruffleBoundary
631
631
protected int find (String self , String findStr ) {
632
632
return self .indexOf (findStr );
633
633
}
634
634
635
635
@ Override
636
- @ TruffleBoundary ( transferToInterpreterOnException = false )
636
+ @ TruffleBoundary
637
637
protected int findWithBounds (String self , String str , int start , int end ) {
638
638
if (start != -1 && end != -1 ) {
639
639
int idx = self .indexOf (str , start );
0 commit comments