File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
graalpython/com.oracle.graal.python/src/com/oracle/graal/python/nodes/code Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 50
50
import com .oracle .truffle .api .dsl .Specialization ;
51
51
52
52
public abstract class GetSignatureNode extends PNodeWithContext {
53
- private Signature doFunctionInternal (GetFunctionCodeNode getFunctionCodeNode , PFunction function ) {
53
+ private static Signature doFunctionInternal (GetFunctionCodeNode getFunctionCodeNode , PFunction function ) {
54
54
return getFunctionCodeNode .execute (function ).getSignature ();
55
55
}
56
56
57
- private Signature doMethodInternal (GetFunctionCodeNode getFunctionCodeNode , Object function ) {
57
+ private static Signature doMethodInternal (GetFunctionCodeNode getFunctionCodeNode , Object function ) {
58
58
if (function instanceof PFunction ) {
59
59
return doFunctionInternal (getFunctionCodeNode , (PFunction ) function );
60
60
} else if (function instanceof PBuiltinFunction ) {
You can’t perform that action at this time.
0 commit comments