diff options
Diffstat (limited to 'src/Scilab2C/GeneralFunctions/SciFile2ASTFile.sci')
-rw-r--r-- | src/Scilab2C/GeneralFunctions/SciFile2ASTFile.sci | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/src/Scilab2C/GeneralFunctions/SciFile2ASTFile.sci b/src/Scilab2C/GeneralFunctions/SciFile2ASTFile.sci deleted file mode 100644 index 8930564d..00000000 --- a/src/Scilab2C/GeneralFunctions/SciFile2ASTFile.sci +++ /dev/null @@ -1,29 +0,0 @@ -function SciFile2ASTFile(SciFile,ASTFile);
-// function SciFile2ASTFile(SciFile,ASTFile);
-// -----------------------------------------------------------------
-// This function makes use of the macr2tree function to generate
-// the ASTFile containing the AST (Abstract Syntactic Tree) of the
-// input Scilab function (SciFile).
-//
-// Input data:
-// SciFile: full path of the input function.
-// ASTFile: full path of the file that will store the AST.
-//
-// Output data:
-//
-// Status:
-// 12-Apr-2007 -- Nutricato Raffaele: Author.
-// -----------------------------------------------------------------
-
-getf(SciFile);
-[tmppath,ScilabFunName,tmpext] = fileparts(SciFile);
-AST=eval('macr2tree('+ScilabFunName+')');
-
-
-[ASTx,ASTierr]=fileinfo(ASTFile)
-if ASTierr == 0
- mdelete(ASTFile);
-end
-write(ASTFile,string(AST));
-
-endfunction
|