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

Method DefineMethod

source/script_object.cpp:1346–1354  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1344}
1345
1346bool Object::DefineMethod(name_t aName, IObject *aFunc)
1347{
1348 if (auto prop = DefineProperty(aName))
1349 {
1350 prop->SetMethod(aFunc);
1351 return true;
1352 }
1353 return false;
1354}
1355
1356Property *Object::DefineProperty(name_t aName)
1357{

Callers 4

DefineMembersMethod · 0.80
CreateClassMethod · 0.80
CreateRootPrototypesMethod · 0.80
AddFuncMethod · 0.80

Calls 1

SetMethodMethod · 0.80

Tested by

no test coverage detected