Author:admin

Date:2008-09-17T13:53:28.000000Z


git-svn-id: https://svn.eiffel.com/eiffel-org/trunk@3 abb3cda0-5349-4a8f-a601-0c33ac3a8c38
This commit is contained in:
jfiat
2008-09-17 13:53:28 +00:00
parent 4fee9356ea
commit 2ee31ab9c7
763 changed files with 36576 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
[[Property:title|Debugging limitations]]
[[Property:weight|-2]]
General limitations:
* Watch expression: Agents are not supported (for instance "agent my_function" is not supported").
* The debugger is still not very helpful when the execution is stopped inside an invariant.
Limitations or known bugs for the Classic debugger:
* Evaluating <code>Precursor</code> will produce the current feature's <code>Result</code> (not the precursor)
* If you use any of the previous non supported expressions in a breakpoint condition, since the evaluation is failing the condition will always return True. In such case the debugger will stop.
Limitations or known bugs for the .Net debugger:
* It happens the debugger does not show the correct executed line, especially when dealing with disabled assertions or disabled debug clauses.
* The same trouble occurs when stepping through an unordered inspect code.
Various known issues for classic system :
* If a precondition is violated inside a rescue, the debugger reports the assertion violation will the exception's tag.
* If you use the "Disable Assertion Handling" functionality when the execution is stopped in a rescue, the effect might be cancelled as soon as the execution exits the rescue's associated feature.