| 22 | Delegate<ScriptingObject*, Span<Variant>, ScriptingTypeHandle, StringView> ScriptingEvents::Event; |
| 23 | |
| 24 | ManagedBinaryModule* GetBinaryModuleCorlib() |
| 25 | { |
| 26 | #if COMPILE_WITHOUT_CSHARP |
| 27 | return nullptr; |
| 28 | #else |
| 29 | static ManagedBinaryModule assembly("corlib"); |
| 30 | return &assembly; |
| 31 | #endif |
| 32 | } |
| 33 | |
| 34 | MMethod* MClass::FindMethod(const char* name, int32 numParams, bool checkBaseClasses) const |
| 35 | { |
no outgoing calls
no test coverage detected