Fix native build (#1610)

Fix native executable build; there was a missing truffle boundary
This commit is contained in:
Daniel Chao
2026-05-22 11:50:40 -07:00
committed by GitHub
parent b070d56741
commit a800072441
@@ -169,6 +169,7 @@ public final class StringNodes {
public abstract static class isGlobPattern extends ExternalPropertyNode { public abstract static class isGlobPattern extends ExternalPropertyNode {
@Specialization @Specialization
@TruffleBoundary
protected boolean eval(String self) { protected boolean eval(String self) {
try { try {
GlobResolver.toRegexString(self); GlobResolver.toRegexString(self);