internal
| 664 | |
| 665 | // internal |
| 666 | bool asCScriptFunction::DoesReturnOnStack() const |
| 667 | { |
| 668 | if( returnType.GetTypeInfo() && |
| 669 | (returnType.GetTypeInfo()->flags & asOBJ_VALUE) && |
| 670 | !returnType.IsReference() ) |
| 671 | return true; |
| 672 | |
| 673 | return false; |
| 674 | } |
| 675 | |
| 676 | // internal |
| 677 | asCString asCScriptFunction::GetDeclarationStr(bool includeObjectName, bool includeNamespace, bool includeParamNames) const |
no test coverage detected