프로퍼티 | 타입 | 설명 | |
---|---|---|---|
globalVrb | List |
||
sInput | string | ||
sOutput | string | ||
sReturn | string |
메소드 | 설명 | |
---|---|---|
Func ( String sCode ) : System |
Constructor for Func class. (Without init params)
|
|
Func ( String sCode, String sParam ) : System |
Constructor for Func class.
|
|
Run ( |
This method Runs the function.
|
|
getGlVar ( string sName ) : string |
Gets the value of global var from the list with the name equal to sName
|
|
getVar ( string sName ) : string |
Gets the value of var from the list with the name equal to sName
|
|
setGlVar ( |
Sets the value of param to global var from the list, which name is equal to param's name. If such var in list doesn't exists - it is added.
|
|
setVar ( |
Sets the value of param to var from the list, which name is equal to param's name. If such var in list doesn't exists - it is added.
|
메소드 | 설명 | |
---|---|---|
addConsts ( ) : void |
This method inits Vars list and adds consts to it.
|
|
addGlVar ( |
Makes a copy of param global var and adds it to the List.
|
|
addVar ( |
Makes a copy of param var and adds it to the List.
|
|
varExists ( string sName ) : int |
Checks if a var with sName already exists.
|
|
varGlExists ( string sName ) : int |
Checks if a global var with sName already exists.
|
public Func ( String sCode, String sParam ) : System | ||
sCode | String | Source of the function. |
sParam | String | Init params for this function. |
리턴 | System |
public getGlVar ( string sName ) : string | ||
sName | string | The name of the param to get. |
리턴 | string |
public getVar ( string sName ) : string | ||
sName | string | The name of the param to get. |
리턴 | string |