lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


    Quick optimization question:  Does Lua skip calling empty functions?
For instance i have a bunch of empty function calls in my base object which
are sometimes overloaded in my derived objects.  Currently since the
functions always exist i just call them.  Would removing the empty functions
and inserting a test for function existence before calling be better
performance wise?

    Tom