Skip to content

Commit 03696df

Browse files
committed
Add more executeObject overloads to LookupAndCallUnaryNode
1 parent 410cffe commit 03696df

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/nodes/call/special/LookupAndCallUnaryNode.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,10 @@ public abstract static class NoAttributeHandler extends PNodeWithContext {
9393

9494
public abstract Object executeObject(VirtualFrame frame, Object receiver);
9595

96+
public abstract Object executeObject(VirtualFrame frame, int receiver);
97+
98+
public abstract Object executeObject(VirtualFrame frame, double receiver);
99+
96100
public static LookupAndCallUnaryNode create(String name) {
97101
return LookupAndCallUnaryNodeGen.create(name, null, false);
98102
}

0 commit comments

Comments
 (0)