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 af4111f commit 5d0863eCopy full SHA for 5d0863e
src/main/java/org/truffleruby/core/regexp/RegexpCacheKey.java
@@ -48,6 +48,7 @@ public boolean equals(Object o) {
48
@Override
49
public String toString() {
50
return '/' + RopeOperations.decodeOrEscapeBinaryRope(rope) + '/' +
51
- RegexpOptions.fromJoniOptions(joniOptions).toOptionsString();
+ RegexpOptions.fromJoniOptions(joniOptions).toOptionsString() +
52
+ " -- " + RopeOperations.decodeOrEscapeBinaryRope(encoding.name.rope);
53
}
54
0 commit comments