internal
| 1820 | |
| 1821 | // internal |
| 1822 | bool asCScriptFunction::IsFactory() const |
| 1823 | { |
| 1824 | if (objectType) return false; |
| 1825 | |
| 1826 | asCObjectType* type = CastToObjectType(returnType.GetTypeInfo()); |
| 1827 | if (type == 0) return false; |
| 1828 | |
| 1829 | if (type->name != name) return false; |
| 1830 | |
| 1831 | if (type->nameSpace != nameSpace) return false; |
| 1832 | |
| 1833 | return true; |
| 1834 | } |
| 1835 | |
| 1836 | // internal |
| 1837 | asCScriptFunction* asCScriptFunction::FindNextFunctionCalled(asUINT startSearchFromProgramPos, int *outStackDelta, asUINT *outProgramPos) |
no test coverage detected