internal
| 670 | |
| 671 | // internal |
| 672 | bool asCScriptFunction::DoesReturnOnStack() const |
| 673 | { |
| 674 | if( returnType.GetTypeInfo() && |
| 675 | (returnType.GetTypeInfo()->flags & asOBJ_VALUE) && |
| 676 | !returnType.IsReference() ) |
| 677 | return true; |
| 678 | |
| 679 | return false; |
| 680 | } |
| 681 | |
| 682 | // internal |
| 683 | asCString asCScriptFunction::GetDeclarationStr(bool includeObjectName, bool includeNamespace, bool includeParamNames) const |
no test coverage detected