Invoke the Specializer callback for a function if one has been registered
(
builder: IRBuilder, expr: CallExpr, callee: RefExpr
)
| 203 | |
| 204 | |
| 205 | def apply_function_specialization( |
| 206 | builder: IRBuilder, expr: CallExpr, callee: RefExpr |
| 207 | ) -> Value | None: |
| 208 | """Invoke the Specializer callback for a function if one has been registered""" |
| 209 | return _apply_specialization(builder, expr, callee, get_call_target_fullname(callee)) |
| 210 | |
| 211 | |
| 212 | def apply_method_specialization( |
no test coverage detected
searching dependent graphs…