public class ParserCode
extends java.lang.Object
| Constructor and Description |
|---|
ParserCode(IExecContext execContext,
java.lang.String code)
Basic rules
|
public ParserCode(IExecContext execContext, java.lang.String code)
Code starts with a method call or a variable name - a method call is followed by a ( - a variable name is followed by a = operator
Parameters are contained within brackets (...) and may have assignment operators such as string, int, dec
Each code ends with a ;
Examples: x = get('av12'); x = get(string:'av12');
execContext - code -