1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <html>
- <head>
- <title>
- The Integrated Development Environment
- </title>
- </head>
- <body bgcolor="#FFFFFF" vlink="silver" alink="navy" link="navy">
- <table width="100%" border="0" cellpadding="0" cellspacing="0" summary="">
- <tr>
- <td valign="bottom">
- <div align="left">
- <b><font face="Tahoma" size="3" color="navy">The Watch List Window</font></b>
- <br>
- <font face="Tahoma" size="2">
- <a href="TopicGroup_TIDE.html">Topic Groups</a>
- </font>
- </div>
- </td>
- <td>
- <font face="Tahoma" size="1" color="silver">
- <div align="right" valign="top">
- <a href="http://www.lua.org">Lua homepage</a>
- </div>
- </font>
- </td>
- </tr>
- <tr valign="top">
- <td colspan="2">
- <hr size="1" color="#000000" align="top">
- <br>
- <br>
- <font face="Tahoma" size="2">
- <p style="text-align: justify">
- The "Watch List" window is a debug tool useful to visualize the content of globals and locals in runtime. The
- window automatically refreshes its content as you progress through the script while debugging.<br>
- <br>
- When the variable beeing watched is a table, it will parse its content recursively to display all elements with their value. If the value
- is another table (sub-tables), it will also parse its content and so on. For performances reasons, there is a maximum
- level of sub-tables you can adjust through the <a href="..\The LuaEdit Framework\GeneralSettings.html">"Debug Tab"</a>
- of LuaEdit's settings. Also, since Lua allows cyclic referencing (EG: "a = {}; a._self = a;"), another setting
- is available for cyclic referencing check. (extremmely recommended since this could lead to infinite loop when debugging)
- If the variable beeing watched is anything else but a table, LuaEdit will try to display its best definition. That is,
- for functions, userdata and lightuserdata it will display its pointer address, for strings and numbers it will
- display its content, etc.<br>
- <br>
- A watch variable item can be change the same way you rename a file in windows explorer and more than one item can
- be watched at once.
- <br>
- <br>
- <br>
- <img src="..\..\Medias\WatchList.jpg" alt="The Watch List Window">
- </p>
- <br>
- </font>
- </td>
- </tr>
- <tr>
- <td colspan="2">
- <font face="Tahoma" size="1" color="silver">
- <hr size="1" color="#000000">
- <div align="right">
- <a href="http://www.luaedit.net">www.luaedit.net</a>
- <br>
- © Copyright 2004-2007 Jean-Francois Goulet
- <br>
- LuaEdit 3.0.4 for Lua 5.1
- </div>
- </font>
- </td>
- </tr>
- </table>
- </body>
- </html>
|