MCPcopy Create free account
hub / github.com/AutoHotkey/AutoHotkey / ClassFactoryDef

Method ClassFactoryDef

source/script_object.h:103–103  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

101 BuiltInFunctionType call;
102 UCHAR min_params, max_params, is_variadic;
103 ClassFactoryDef(BuiltInFunctionType aCall, int aMin, int aMax, bool aVariadic = false) : call(aCall), min_params(aMin), max_params(aMax), is_variadic(aVariadic) {}
104 ClassFactoryDef(BuiltInFunctionType aCall = nullptr) : ClassFactoryDef(aCall, 1, 1, true) {}
105};
106

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected