------------------------------------------------------------------------------
| 1659 | |
| 1660 | //------------------------------------------------------------------------------ |
| 1661 | bool isFunction(const char *fn) |
| 1662 | { |
| 1663 | const char *string = StringTable->lookup(fn); |
| 1664 | if(!string) |
| 1665 | return false; |
| 1666 | else |
| 1667 | return Namespace::global()->lookup(string) != NULL; |
| 1668 | } |
| 1669 | |
| 1670 | //------------------------------------------------------------------------------ |
| 1671 |
no test coverage detected