Uses of Class
manifold.preprocessor.expression.Expression
-
Packages that use Expression Package Description manifold.preprocessor manifold.preprocessor.expression manifold.preprocessor.statement -
-
Uses of Expression in manifold.preprocessor
Methods in manifold.preprocessor that return Expression Modifier and Type Method Description ExpressionTokenizer. getExpression() -
Uses of Expression in manifold.preprocessor.expression
Subclasses of Expression in manifold.preprocessor.expression Modifier and Type Class Description classAndExpressionclassEmptyExpressionclassEqualityExpressionclassIdentifierclassNotExpressionclassNumberLiteralclassOrExpressionclassParenthesizedExpressionclassRelationalExpressionclassStringLiteralclassTerminalExpressionMethods in manifold.preprocessor.expression that return Expression Modifier and Type Method Description ExpressionExpressionParser. parse()Methods in manifold.preprocessor.expression that return types with arguments of type Expression Modifier and Type Method Description List<Expression>AndExpression. getChildren()List<Expression>EqualityExpression. getChildren()abstract List<Expression>Expression. getChildren()List<Expression>NotExpression. getChildren()List<Expression>OrExpression. getChildren()List<Expression>ParenthesizedExpression. getChildren()List<Expression>RelationalExpression. getChildren()List<Expression>TerminalExpression. getChildren()Methods in manifold.preprocessor.expression with parameters of type Expression Modifier and Type Method Description BigDecimalEqualityExpression. getNumberValue(Expression operand, Definitions definitions)BigDecimalRelationalExpression. getNumberValue(Expression operand, Definitions definitions) -
Uses of Expression in manifold.preprocessor.statement
Constructors in manifold.preprocessor.statement with parameters of type Expression Constructor Description IfStatement(TokenType tokenType, int start, int end, Expression expr, List<Statement> ifBlock, List<IfStatement> elifs, List<Statement> elseBlock, int elseStart)
-