| 54 | } |
| 55 | |
| 56 | FHandler GetHandler(const FString& OpName) |
| 57 | { |
| 58 | FRWScopeLock Lock(MapLock(), SLT_ReadOnly); |
| 59 | if (const FOpDecl* D = Map().Find(OpName)) |
| 60 | return D->Body; |
| 61 | return FHandler(); |
| 62 | } |
| 63 | |
| 64 | TOptional<FOpDecl> FindOp(const FString& OpName) |
| 65 | { |