Constructors in jcaas.script_nodes with parameters of type ArithmeticTerm |
ArithmeticExpression(ArithmeticExpression exp,
ArithmeticTerm term,
int operation)
Constructor for when an arithmetic_exp ::= arithmetic_exp op arithmetic_term where op
is the constant PLUS, for '+', or MINUS, for '-'. |
ArithmeticExpression(ArithmeticTerm term)
Constructor for when arithmetic_exp ::= arithmeitc_term. |
ArithmeticTerm(ArithmeticTerm term,
ArithmeticFactor factor,
int operation)
Constructor for when arithmetic_term ::= arithmetic_term op arithmetic_factor,
where op is MULTIPLY, for '*', or DIVIDE, for '/'. |