diff options
author | ukashanoor | 2017-06-29 20:58:54 +0530 |
---|---|---|
committer | ukashanoor | 2017-06-29 20:58:54 +0530 |
commit | de175726e61da47f1558ebf22559e117436197b5 (patch) | |
tree | 0e73f676ec3c50f92ac3166c170f94db395f91b0 /2.3-1/macros/ASTManagement/_funcall_string.sci | |
parent | 5efb98c6773576e39a33df5cfc89979c07031a6a (diff) | |
parent | 2d8050d5bd74adc66b9a45f55078791a36434be8 (diff) | |
download | Scilab2C-de175726e61da47f1558ebf22559e117436197b5.tar.gz Scilab2C-de175726e61da47f1558ebf22559e117436197b5.tar.bz2 Scilab2C-de175726e61da47f1558ebf22559e117436197b5.zip |
changes after changing branch to master
Diffstat (limited to '2.3-1/macros/ASTManagement/_funcall_string.sci')
-rw-r--r-- | 2.3-1/macros/ASTManagement/_funcall_string.sci | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/2.3-1/macros/ASTManagement/_funcall_string.sci b/2.3-1/macros/ASTManagement/_funcall_string.sci index faeb81d9..0ee97016 100644 --- a/2.3-1/macros/ASTManagement/_funcall_string.sci +++ b/2.3-1/macros/ASTManagement/_funcall_string.sci @@ -6,10 +6,19 @@ function txt=%funcall_string(F) // name : string, the name of the function // lhsnb: number, the number of function lhs +if F.name <> 'disp' txt=['Funcall : '+F.name ' #lhs : '+string(F.lhsnb) ' Rhs : ' ' '+objectlist2string(F.rhs) 'EndFuncall' ] +else +txt=['Funcall : '+F.name + ' #lhs : '+'0' + ' Rhs : ' + ' '+objectlist2string(F.rhs) + 'EndFuncall' + ] +end endfunction |