static CompiledExpression |
Evaluator.compile(java.lang.String expression,
Library lib) |
Compiles expression, resolving the function names in the library.
|
static CompiledExpression |
Evaluator.compile(java.lang.String expression,
Library lib,
java.lang.Class<?> resultType) |
Compiles expression, resolving the function names in the library.
|
static byte[] |
Evaluator.compileBits(java.lang.String expression,
Library lib) |
Compiles expression, resolving the function names in the library.
|
static byte[] |
Evaluator.compileBits(java.lang.String expression,
Library lib,
java.lang.Class<?> resultType) |
Compiles expression, resolving the function names in the library.
|
protected void |
Parser.consume(int cc) |
|
void |
Parser.error(int code,
java.lang.Object param,
int column) |
|
java.lang.reflect.Member |
Library.getMember(java.lang.Class<?> container,
java.lang.String name,
java.lang.Class<?>[] params) |
Searches the namespace defined by this library object for method or field.
|
protected java.lang.reflect.Member |
Library.getMostSpecific(java.lang.Class<?> container,
java.lang.String name,
java.lang.Class<?>[] params,
java.util.List<java.lang.reflect.Member> applicable_methods,
int np) |
Returns the most specific method, matching the call.
|
void |
Library.markStateDependent(java.lang.String name,
java.lang.Class<?>[] params) |
This method marks a static member as having the internal state.
|
void |
Parser.nextToken() |
|
OP |
Parser.parse(java.lang.Class<?> resultType) |
Parses expression.
|