[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Empty functions
- From: "Tom Spilman" <tom@...>
- Date: Sun, 29 Jun 2003 13:53:49 -0500
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