summaryrefslogtreecommitdiff
path: root/macros/ASTManagement/_for_string.sci
diff options
context:
space:
mode:
authorsiddhu89902017-04-19 14:57:49 +0530
committersiddhu89902017-04-19 14:57:49 +0530
commit1fd0dce8d72c4d5869ce5ff4025ac09af603bc0f (patch)
tree34e52b33707a829c1d8484428c96d3f1f6ce2b3a /macros/ASTManagement/_for_string.sci
parent9e506f48291533cba7b4c555b0d2e98f234bfbe3 (diff)
downloadscilab2c-1fd0dce8d72c4d5869ce5ff4025ac09af603bc0f.tar.gz
scilab2c-1fd0dce8d72c4d5869ce5ff4025ac09af603bc0f.tar.bz2
scilab2c-1fd0dce8d72c4d5869ce5ff4025ac09af603bc0f.zip
Merged Shamik's work
Diffstat (limited to 'macros/ASTManagement/_for_string.sci')
-rw-r--r--macros/ASTManagement/_for_string.sci15
1 files changed, 15 insertions, 0 deletions
diff --git a/macros/ASTManagement/_for_string.sci b/macros/ASTManagement/_for_string.sci
new file mode 100644
index 00000000..0ed9ca28
--- /dev/null
+++ b/macros/ASTManagement/_for_string.sci
@@ -0,0 +1,15 @@
+function txt=%for_string(F)
+//overloading function for "for" type tlist string function
+//this is a node of the AST
+//fields:
+// expression : "expression" type tlist (the loop expression)
+// statements : list of "equal" type tlist and list('EOL') (the
+// for instructions list)
+//NUT: raf cambiato ForExpression e ForStatements
+ txt=['For'
+ ' ForExpression:'
+ ' '+string(F.expression)
+ ' ForStatements:'
+ ' '+objectlist2string(F.statements)
+ 'EndFor']
+endfunction \ No newline at end of file