+ added classtype support to debugger expression evaluation

git-svn-id: trunk@13705 -
This commit is contained in:
marc 2008-01-10 01:10:20 +00:00
parent 5f3adf3a3f
commit 83cd44b0c5
2 changed files with 32 additions and 14 deletions

View File

@ -978,14 +978,22 @@ begin
if e <> 0 then Exit;
S := Lowercase(ResultInfo.TypeName);
if (S = 'character')
or (S = 'ansistring')
then begin
if Addr = 0
then AResult := ''''''
else AResult := MakePrintable(GetText(Addr));
end
else begin
case StringCase(S, ['character', 'ansistring', '__vtbl_ptr_type']) of
0, 1: begin
if Addr = 0
then AResult := ''''''
else AResult := MakePrintable(GetText(Addr));
end;
2: begin
if Addr = 0
then AResult := 'nil'
else begin
S := GetClassName(Addr);
if S = '' then S := '???';
AResult := 'class of ' + S + ' ' + AResult;
end;
end;
else
if Addr = 0
then AResult := 'nil';
if S = 'pointer' then Exit;
@ -1001,10 +1009,13 @@ begin
skClass: begin
Val(AResult, addr, e);
if e <> 0 then Exit;
S := GetInstanceClassName(Addr);
if S = '' then S := '???';
AResult := S + ' ' + AResult;
if Addr = 0
then AResult := 'nil'
else begin
S := GetInstanceClassName(Addr);
if S = '' then S := '???';
AResult := S + ' ' + AResult;
end;
end;
end;
finally

View File

@ -518,6 +518,9 @@ var
end;
end;
end;
var
HasClass: Boolean;
begin
Create;
@ -533,7 +536,9 @@ begin
S := GetPart(['type = '], [' '], Line);
if S = '' then Exit;
if Pos(' = class ', Line) > 0
HasClass := Pos(' = class ', Line) > 0;
if HasClass
and (S[2] <> '^') // pointer to class is handled next
then begin
FTypeName := GetPart(['^'], [' '], S);
DoClass;
@ -541,7 +546,9 @@ begin
else if S[1] = '^'
then begin
FKind := skPointer;
FTypeName := GetPart(['^'], [' ='], S);
if HasClass
then FTypeName := GetPart(['^^'], [' ='], S)
else FTypeName := GetPart(['^'], [' ='], S);
end
else if S = 'set'
then DoSet