Class FunctionValue
- java.lang.Object
-
- org.intocps.maestro.interpreter.values.Value
-
- org.intocps.maestro.interpreter.values.FunctionValue
-
- Direct Known Subclasses:
FunctionValue.ExternalFunctionValue
public abstract class FunctionValue extends Value
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classFunctionValue.ExternalFunctionValue
-
Constructor Summary
Constructors Constructor Description FunctionValue()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract Valueevaluate(List<Value> args)Valueevaluate(Value... args)-
Methods inherited from class org.intocps.maestro.interpreter.values.Value
checkArgLength, compareTo, deref
-
-
-
-
Method Detail
-
evaluate
public Value evaluate(Value... args) throws InterpreterException
- Throws:
InterpreterException
-
evaluate
public abstract Value evaluate(List<Value> args) throws InterpreterException
- Throws:
InterpreterException
-
-