int = HandleBreakPoint(br)
Called by the language engine in the context of a thread that has
hit a breakpoint.
Parameters
br : int
Break reason - one of the BREAKREASON_* constants.Comments
This method causes the current thread to block and a notification of the breakpoint
to be sent to the debugger IDE. When the debugger IDE resumes the application this
method returns with the action to be taken.
Note: While in the breakpoint the language engine may be called in this thread to do
various things such as enumerating stack frames or evaluating expressions.
Return Value
The result is the break resume action - one of the BREAKRESUMEACTION contsants.