@@ -84,10 +84,9 @@ public static CallNode getUncached() {
84
84
protected abstract Object executeInternal (Frame frame , Object callableObject , Object [] arguments , PKeyword [] keywords );
85
85
86
86
/**
87
- * To be used when this node is called uncached or when no frame is
88
- * available. Note that the current thread state will be read from the
89
- * context, so calls through this entry point are potentially slower than if
90
- * a frame is available.
87
+ * To be used when this node is called uncached or when no frame is available. Note that the
88
+ * current thread state will be read from the context, so calls through this entry point are
89
+ * potentially slower than if a frame is available.
91
90
*/
92
91
public final Object execute (Object callableObject , Object [] arguments , PKeyword [] keywords ) {
93
92
return executeInternal (null , callableObject , arguments , keywords );
@@ -199,7 +198,7 @@ protected Object builtinFunctionCall(VirtualFrame frame, PBuiltinFunction callab
199
198
}
200
199
201
200
@ Specialization (replaces = {"doObjectAndType" , "decoratedMethodCall" , "methodCallBuiltinDirect" , "methodCallDirect" , "builtinMethodCallDirect" , "builtinMethodCallBuiltinDirectCached" ,
202
- "builtinMethodCallBuiltinDirect" , "methodCall" , "builtinMethodCall" , "functionCall" , "builtinFunctionCall" })
201
+ "builtinMethodCallBuiltinDirect" , "methodCall" , "builtinMethodCall" , "functionCall" , "builtinFunctionCall" })
203
202
protected Object doGeneric (VirtualFrame frame , Object callableObject , Object [] arguments , PKeyword [] keywords ,
204
203
@ Shared ("dispatchNode" ) @ Cached CallDispatchNode dispatch ,
205
204
@ Shared ("argsNode" ) @ Cached CreateArgumentsNode createArgs ,
0 commit comments