@@ -265,15 +265,15 @@ function FunctionOperator(op,
265265 # evaluation signatures
266266
267267 _isinplace = if isinplace === nothing
268- Val (static_hasmethod (op, typeof ((output, input, p, _t))))
268+ Val (hasmethod (op, typeof ((output, input, p, _t))))
269269 elseif isinplace isa Bool
270270 Val (isinplace)
271271 else
272272 isinplace
273273 end
274274
275275 _outofplace = if outofplace === nothing
276- Val (static_hasmethod (op, typeof ((input, p, _t))))
276+ Val (hasmethod (op, typeof ((input, p, _t))))
277277 elseif outofplace isa Bool
278278 Val (outofplace)
279279 else
342342
343343@inline __has_mul5 (:: Nothing , y, x, p, t) = Val (true )
344344@inline function __has_mul5 (f:: F , y, x, p, t) where {F}
345- return Val (static_hasmethod (f, typeof ((y, x, p, t, t, t))))
345+ return Val (hasmethod (f, typeof ((y, x, p, t, t, t))))
346346end
347347@inline __and_val (vs... ) = mapreduce (_unwrap_val, * , vs)
348348
@@ -542,7 +542,7 @@ function Base.resize!(L::FunctionOperator, n::Integer)
542542 end
543543
544544 for op in getops (L)
545- if static_hasmethod (resize!, typeof ((op, n)))
545+ if hasmethod (resize!, typeof ((op, n)))
546546 resize! (op, n)
547547 end
548548 end
0 commit comments