blob: faeb81d9e98fe29893c4050b30ccdd39875f134c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
function txt=%funcall_string(F)
//overloading function for "funcall" type tlist string function
//this is a node of the AST
//fields:
// rhs : a list
// name : string, the name of the function
// lhsnb: number, the number of function lhs
txt=['Funcall : '+F.name
' #lhs : '+string(F.lhsnb)
' Rhs : '
' '+objectlist2string(F.rhs)
'EndFuncall'
]
endfunction
|