summaryrefslogtreecommitdiff
path: root/2.3-1/macros/ASTManagement/AST_GetFuncallPrm.sci
blob: e7c1581ce25406649d72d5dcf95bf988fcdd21d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
function [FunctionName,InArg,NInArg,OutArg,NOutArg] = ...
   AST_GetFuncallPrm(FileInfo,SharedInfo,ASTFunType)
// function [FunctionName,InArg,NInArg,NOutArg] = ...
//    AST_GetFuncallPrm(FileInfo,SharedInfo,ASTFunType)
// -----------------------------------------------------------------
// //NUT: add description here
//
// Input data:
// //NUT: add description here
//
// Output data:
// //NUT: add description here
//
// Status:
// 11-Apr-2007 -- Raffaele Nutricato: Author.
//
// Copyright 2007 Raffaele Nutricato.
// Contact: raffaele.nutricato@tiscali.it
// -----------------------------------------------------------------

// ------------------------------
// --- Check input arguments. ---
// ------------------------------
SCI2CNInArgCheck(argn(2),3,3);

// -----------------------
// --- Initialization. ---
// -----------------------
nxtscifunname   = SharedInfo.NextSCIFunName;
nxtscifunnumber = SharedInfo.NextSCIFunNumber;
ReportFileName  = FileInfo.Funct(nxtscifunnumber).ReportFileName;
//#RNU_RES_B
PrintStringInfo('***Retrieving '+ASTFunType+' Parameters from AST***',ReportFileName,'file','y');
//#RNU_RES_E
OutArg  = [];
NOutArg = 0;
// ---------------------------
// --- End Initialization. ---
// ---------------------------

// ------------------------------------------------------
// --- Get Parameters from the AST Funcall structure. ---
// ------------------------------------------------------
if (ASTFunType=='Funcall')
   [FunctionName,InArg,NInArg,NOutArg] = AST_ParseFuncallStruct(FileInfo,SharedInfo);
elseif (ASTFunType=='Operation')
   [FunctionName,InArg,NInArg,NOutArg] = AST_ParseOperStruct(FileInfo,SharedInfo);
elseif (ASTFunType=='Equal')
   [FunctionName,InArg,NInArg,OutArg,NOutArg] = AST_ParseEqualStruct(FileInfo,SharedInfo);
else
   error(9999, 'Unknown Function type: '+ASTFunType+'.');
end

endfunction