Skip to content

Commit c154d13

Browse files
committed
Make PythonBinaryBuiltinNode#execute temporarily public
1 parent e10c2f2 commit c154d13

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/nodes/function/builtins/PythonBinaryBuiltinNode.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ public boolean callBool(VirtualFrame frame, double arg, double arg2) throws Unex
102102
// ----------------------
103103
// execute methods
104104

105-
protected abstract Object execute(VirtualFrame frame, Object arg, Object arg2);
105+
public abstract Object execute(VirtualFrame frame, Object arg, Object arg2);
106106

107107
protected boolean executeBool(VirtualFrame frame, boolean arg, boolean arg2) throws UnexpectedResultException {
108108
return PGuards.expectBoolean(execute(frame, arg, arg2));

0 commit comments

Comments
 (0)