Help

LibDebug

Libraries Login to Add Favorites
  • 1 Like
  • World of Warcraft
  • 1,973 Downloads
  • Supports: 4.0.1
  • 0 Average Daily Downloads
  • Created 5/24/2009 1:24:24 PM
  • Updated 11/10/2010 5:38:00 PM
  • 13 Favorites
  • Project Site
  • License: GNU Lesser General Public License version 3 (LGPLv3)
  • Release Type: Release
  • Newest File: 1.2
or

About LibDebug

LibDebug is a tool to aid with debugging AddOns.

It does the following:

  • Generates errors when using undefined variables.
  • Generates errors when setting global variables.
  • Replaces the print function. Prints the file and line the print function was called from, colours values by their type, escapes unprintable characters in strings, and turns tables into clickable links.
  • Replaces the coroutine.resume function. If the resumed coroutine generates an error, it invokes the global error handler with a string containing the error message and the coroutine's stack appended.
  • Replaces the coroutine.wrap function, reimplementing it using the replacement coroutine.resume function.
  • Replaces the next and pairs functions, to detect if you're try to iterate through the proxy _G object, and instead iterate through the real _G object.

It does NOT do the following:

  • Catch and display errors, use BugSack or Swatter for that.

To use it, call LibDebug() at the top of any lua file you want to use the above features in.

LibDebug operates by replacing the environment of the function that called it, so that its modifications only affect AddOns that explicitly request them.

While LibDebug is embedable, you probably don't want to do that. You'll probably want to make it an optional dependency, then you can put

  if LibDebug then LibDebug() end

at the top of a source file instead, and have it work properly whether or not the AddOn is available. If you want to go that route, then feel free to use LibDebug as a flag for enabling other debug features in your AddOn as well, which you can turn on or off simply by enabling or disabling LibDebug.

The purpose of catching the use of global variables is to detect misnamed variables and variables that were intended to be local, but not declared as such.

If LibDebug complains about something you actually intended, the correct thing to do is usually to access the variable directly through _G. For example,

  my_global_variable = 42
  
  function MyFunction()
    print(my_global_variable)
  end

should be written as:

  _G.my_global_variable = 42
  
  function _G.MyFunction()
    print(my_global_variable)
  end

Note that once you set a variable through _G, it become exempt from generating errors. This won't generate any errors:

  _G.foo = nil
  foo = "floor"
  foo = foo.."caek"

You can generally use variables from the global environment without any errors, as long as they are not nil, or were set through _G. If you want to use a global variable created by another AddOn that might be nil, you need to use _G in this case as well.

tag 1.2
2f93ffd7942ce62ae56d21ffd376b502bcb448b7
smariot <smariot@gmail.com>
2010-11-10 23:34:58 +0000

1.2, the OMG STACK TRACES FOR COROUTINE ERRORS!!1one edition.
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2.0.16 (GNU/Linux)

iEYEABECAAYFAkzbLL4ACgkQPImfE9laVHKKJQCgzMMlFX/YoAst2Di26kMSqI+3
AnwAnjve8xH+55tpypNxYdkp0tICIPAu
=tEnx
-----END PGP SIGNATURE-----

--------------------

smariot:
    - Added replacement coroutine.resume and coroutine.wrap functions; Invokes the global error handler with a stack trace if an error occurs inside a coroutine.

Learn how to disable ads
Learn how to disable ads
Login to Curse

Don't have an account? Create One.

Get an epic experience with Curse Premium
  • Faster Addon Downloads
  • Premium-Only Beta Giveaways
  • Ad-Free Curse.com Experience
  • Premium Curse Client
  • and many More Features
  • Learn More »

Minecraft 3D Print Giveaway

Enter Now!