summaryrefslogtreecommitdiff
path: root/macros/ASTManagement/_operatio_string.sci
diff options
context:
space:
mode:
authorSandeep Gupta2017-06-18 23:55:40 +0530
committerSandeep Gupta2017-06-18 23:55:40 +0530
commit277d1edfa17bf3719d90ddbac8e31f6181e952c3 (patch)
tree0661f1f52af0a0fd654edd4984c30e57037303c6 /macros/ASTManagement/_operatio_string.sci
downloadscilab2c-277d1edfa17bf3719d90ddbac8e31f6181e952c3.tar.gz
scilab2c-277d1edfa17bf3719d90ddbac8e31f6181e952c3.tar.bz2
scilab2c-277d1edfa17bf3719d90ddbac8e31f6181e952c3.zip
First commit
Diffstat (limited to 'macros/ASTManagement/_operatio_string.sci')
-rw-r--r--macros/ASTManagement/_operatio_string.sci13
1 files changed, 13 insertions, 0 deletions
diff --git a/macros/ASTManagement/_operatio_string.sci b/macros/ASTManagement/_operatio_string.sci
new file mode 100644
index 00000000..8421a3f4
--- /dev/null
+++ b/macros/ASTManagement/_operatio_string.sci
@@ -0,0 +1,13 @@
+function txt=%operatio_string(O)
+//overloading function for "operation" type tlist string function
+//this is a node of the AST
+//fields:
+// operands: a list
+// operator: a string
+ txt=['Operation'
+ ' Operands:'
+ ' '+objectlist2string(O.operands)
+ ' Operator: '+O.operator
+ 'EndOperation'
+ ]
+endfunction \ No newline at end of file