------------------------------------------------------------------------------
| 1744 | |
| 1745 | //------------------------------------------------------------------------------ |
| 1746 | bool isFunction(const char *fn) |
| 1747 | { |
| 1748 | if (CInterface::isMethod(NULL, fn)) return true; |
| 1749 | const char *string = StringTable->lookup(fn); |
| 1750 | if(!string) |
| 1751 | return false; |
| 1752 | else |
| 1753 | return Namespace::global()->lookup(string) != NULL; |
| 1754 | } |
| 1755 | |
| 1756 | //------------------------------------------------------------------------------ |
| 1757 |
no test coverage detected