Package com.singularsys.jeptests.system
Class BugsTest.StackMessingFunc
- java.lang.Object
-
- com.singularsys.jep.functions.PostfixMathCommand
-
- com.singularsys.jeptests.system.BugsTest.StackMessingFunc
-
- All Implemented Interfaces:
PostfixMathCommandI,java.io.Serializable
- Enclosing class:
- BugsTest
public static class BugsTest.StackMessingFunc extends PostfixMathCommand
A function which can incorrectly read the stack. Last argument controls how many items to pop off the stack- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class com.singularsys.jep.functions.PostfixMathCommand
curNumberOfParameters, name, NaN, numberOfParameters
-
-
Constructor Summary
Constructors Constructor Description StackMessingFunc()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidrun(java.util.Stack<java.lang.Object> stack)Throws an exception because this method should never be called under normal circumstances.-
Methods inherited from class com.singularsys.jep.functions.PostfixMathCommand
asArray, asBool, asDouble, asInt, asLong, asStrictInt, asString, checkNumberOfParameters, getName, getNumberOfParameters, setCurNumberOfParameters, setName, toString, toString
-
-
-
-
Method Detail
-
run
public void run(java.util.Stack<java.lang.Object> stack) throws EvaluationExceptionDescription copied from class:PostfixMathCommandThrows an exception because this method should never be called under normal circumstances. Each function should use it's own run() method for evaluating the function. This includes popping off the parameters from the stack, and pushing the result back on the stack.- Specified by:
runin interfacePostfixMathCommandI- Overrides:
runin classPostfixMathCommand- Parameters:
stack- arguments for function- Throws:
EvaluationException- if function cannot be evaluated
-
-