MCPcopy Create free account
hub / github.com/axhlzy/Il2CppHookScripts / overload

Method overload

Il2cppHook/_Ufunc.js:11906–11911  ·  view source on GitHub ↗

Gets the overloaded method with the given parameter types.

(...parameterTypes)

Source from the content-addressed store, hash-verified

11904 }
11905 /** Gets the overloaded method with the given parameter types. */
11906 overload(...parameterTypes) {
11907 const result = this.tryOverload(...parameterTypes);
11908 if (result != undefined)
11909 return result;
11910 (0, console_1.raise)(`cannot find overloaded method ${this.name}(${parameterTypes})`);
11911 }
11912 /** Gets the parameter with the given name. */
11913 parameter(name) {
11914 return this.tryParameter(name);

Callers 5

findMethodNewMethod · 0.80
HookJavaLogFunction · 0.80
assembliesMethod · 0.80
findMethodNewMethod · 0.80
HookJavaLogFunction · 0.80

Calls 1

tryOverloadMethod · 0.95

Tested by

no test coverage detected