Breakpoints.html 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <html>
  2. <head>
  3. <title>
  4. The Integrated Development Environment
  5. </title>
  6. </head>
  7. <body bgcolor="#FFFFFF" vlink="silver" alink="navy" link="navy">
  8. <table width="100%" border="0" cellpadding="0" cellspacing="0" summary="">
  9. <tr>
  10. <td valign="bottom">
  11. <div align="left">
  12. <b><font face="Tahoma" size="3" color="navy">The Breakpoints Window</font></b>
  13. <br>
  14. <font face="Tahoma" size="2">
  15. <a href="TopicGroup_TIDE.html">Topic Groups</a>
  16. </font>
  17. </div>
  18. </td>
  19. <td>
  20. <font face="Tahoma" size="1" color="silver">
  21. <div align="right" valign="top">
  22. <a href="http://www.lua.org">Lua homepage</a>
  23. </div>
  24. </font>
  25. </td>
  26. </tr>
  27. <tr valign="top">
  28. <td colspan="2">
  29. <hr size="1" color="#000000" align="top">
  30. <br>
  31. <br>
  32. <font face="Tahoma" size="2">
  33. <p style="text-align: justify">
  34. The "Breakpoints" window is used to display all breakpoints currently set in the different units in
  35. LuaEdit. Useful information is beeing displayed in this window such as the file name and line number
  36. where the breakpoint is defined, its status, etc.<br>
  37. <br>
  38. You can set a condition on a breakpoint. In runtime, the condition will be evaluate just before breaking.
  39. If the condition returns "true", it will break. Otherwise it will ignore the breakpoint and persue its
  40. execution. For example, as you can see in the image below, the variable x must equal to 10 in order for LuaEdit
  41. to stop on the breakpoint defined at line 31.<br>
  42. <br>
  43. <br>
  44. <br>
  45. <img src="..\..\Medias\Breakpoints.jpg" alt="The Breakpoints Window">
  46. </p>
  47. <br>
  48. </font>
  49. </td>
  50. </tr>
  51. <tr>
  52. <td colspan="2">
  53. <font face="Tahoma" size="1" color="silver">
  54. <hr size="1" color="#000000">
  55. <div align="right">
  56. <a href="http://www.luaedit.net">www.luaedit.net</a>
  57. <br>
  58. © Copyright 2004-2007 Jean-Francois Goulet
  59. <br>
  60. LuaEdit 3.0.4 for Lua 5.1
  61. </div>
  62. </font>
  63. </td>
  64. </tr>
  65. </table>
  66. </body>
  67. </html>