-
Notifications
You must be signed in to change notification settings - Fork 226
Expand file tree
/
Copy pathJITInvoker4.java
More file actions
33 lines (25 loc) · 961 Bytes
/
JITInvoker4.java
File metadata and controls
33 lines (25 loc) · 961 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package org.python.modules.jffi;
import org.python.core.PyObject;
abstract public class JITInvoker4 extends JITInvoker {
public JITInvoker4(com.kenai.jffi.Function function, Invoker fallbackInvoker) {
super(4, function, fallbackInvoker);
}
public final PyObject invoke() {
return invalidArity(0);
}
public final PyObject invoke(PyObject arg1) {
return invalidArity(1);
}
public final PyObject invoke(PyObject arg1, PyObject arg2) {
return invalidArity(2);
}
public final PyObject invoke(PyObject arg1, PyObject arg2, PyObject arg3) {
return invalidArity(3);
}
public final PyObject invoke(PyObject arg1, PyObject arg2, PyObject arg3, PyObject arg4, PyObject arg5) {
return invalidArity(5);
}
public final PyObject invoke(PyObject arg1, PyObject arg2, PyObject arg3, PyObject arg4, PyObject arg5, PyObject arg6) {
return invalidArity(6);
}
}