Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Lets say i wrote helper for TStringList

TslHelper = class helper for TStringList
  function DoSth: boolean;
end;

Then ive included this helper (unit in which helper is defined) in unit i want to use it. During debugging i hit Ctrl+F7 and i want to evaluate:

someStringList.DoSth

I cant get it to work. Is it possible?

Regards

share|improve this question
That works just fine when I try it. What error are you getting? – Mason Wheeler Sep 3 '09 at 14:50
Did you hit Ctrl+F7 and typed 'someStringList.DoSth' in Evaluate/Modify window? – m0f0 Sep 7 '09 at 8:07

1 Answer

up vote 3 down vote accepted

Class helpers introduce new methods into the current scope. If a class helper isn't in scope, then its methods do not take effect, even if the class they help is. So, the first step to making it work is to ensure that TslHelper is the class helper that would be in effect at the current point in your program.

If you've satisfied that requirement, but it still doesn't work, then perhaps the debugger simply doesn't recognize class helpers. They're a bit of a hack anyway, so I wouldn't be too surprised if the debugger didn't recognize them. Ultimately, class helpers are just syntactic sugar. The above class helper could have just as easily been written as a standalone function, like this:

function TStringList_DoSth(SL: TStringList): Boolean;

Write that function using your current implementation of the method, and then use the function to implement you class helper:

function TslHelper.DoSth: Boolean;
begin
  TStringList_DoSth(Self);
end;

You can continue to call the class-helper method in your normal code, but you can fall back to the standalone function in the debugger.

share|improve this answer
actually i did just that ;] – m0f0 Sep 4 '09 at 8:07

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.