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

Method GetPropertyInfo

source/Debugger.cpp:1013–1019  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1011
1012
1013int Debugger::GetPropertyInfo(Var &aVar, PropertyInfo &aProp)
1014{
1015 aProp.is_alias = aVar.mType == VAR_ALIAS;
1016 aProp.is_static = aVar.IsStatic();
1017 aProp.is_builtin = aVar.mType == VAR_VIRTUAL;
1018 return GetPropertyValue(aVar, aProp);
1019}
1020
1021int Debugger::GetPropertyInfo(VarBkp &aBkp, PropertyInfo &aProp)
1022{

Callers

nothing calls this directly

Calls 2

IsStaticMethod · 0.80
ToTokenMethod · 0.45

Tested by

no test coverage detected