| 1011 | |
| 1012 | |
| 1013 | int 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 | |
| 1021 | int Debugger::GetPropertyInfo(VarBkp &aBkp, PropertyInfo &aProp) |
| 1022 | { |