Package net.scheinerman.phoenix.interpreter.parser.operators

This package contains classes that deal with the parsing and manipulation of arithmetic operators during Phoenix program execution.

See:
          Description

Class Summary
AddOperatorNode Provides the implementation of the Add [+] operator in the parsing tree when parsing expressions.
AndOperatorNode Provides the implementation of the And [&] operator in the parsing tree when parsing expressions.
AssignAddOperatorNode Provides the implementation of the AssignAdd [+=] operator in the parsing tree when parsing expressions.
AssignDivideOperatorNode Provides the implementation of the AssignDivide [/=] operator in the parsing tree when parsing expressions.
AssignExpOperatorNode Provides the implementation of the AssignExp [^=] operator in the parsing tree when parsing expressions.
AssignModOperatorNode Provides the implementation of the AssignMod [%=] operator in the parsing tree when parsing expressions.
AssignMultiplyOperatorNode Provides the implementation of the AssignMultiply [*=] operator in the parsing tree when parsing expressions.
AssignOperatorNode Provides the implementation of the Assign [=] operator in the parsing tree when parsing expressions.
AssignRoundOperatorNode Provides the implementation of the AssignRound [#=] operator in the parsing tree when parsing expressions.
AssignSubtractOperatorNode Provides the implementation of the AssignSubtract [-=] operator in the parsing tree when parsing expressions.
DivideOperatorNode Provides the implementation of the Divide [/] operator in the parsing tree when parsing expressions.
EqualOperatorNode Provides the implementation of the Equal [==] operator in the parsing tree when parsing expressions.
ExpOperatorNode Provides the implementation of the Exp [^] operator in the parsing tree when parsing expressions.
FunctionOperatorNode Provides the implementation of the Function operator in the parsing tree when parsing expressions.
FunctionReferenceOperatorNode  
GreaterEqualOperatorNode Provides the implementation of the GreaterEqual [>=] operator in the parsing tree when parsing expressions.
GreaterOperatorNode Provides the implementation of the Greater [>] operator in the parsing tree when parsing expressions.
LessEqualOperatorNode Provides the implementation of the LessEqual [<=] operator in the parsing tree when parsing expressions.
LessOperatorNode Provides the implementation of the Less [<] operator in the parsing tree when parsing expressions.
ModOperatorNode Provides the implementation of the Mod [%] operator in the parsing tree when parsing expressions.
MultiplyOperatorNode Provides the implementation of the Multiply [*] operator in the parsing tree when parsing expressions.
NegationOperatorNode Provides the implementation of the Negation [-] operator in the parsing tree when parsing expressions.
NotEqualOperatorNode Provides the implementation of the NotEqual [!=] operator in the parsing tree when parsing expressions.
NotOperatorNode Provides the implementation of the Not [!] operator in the parsing tree when parsing expressions.
OperatorNode Represents an operator that is being parsed in an expression tree in Phoenix.
OrOperatorNode Provides the implementation of the Or [|] operator in the parsing tree when parsing expressions.
PostfixDecrementOperatorNode Provides the implementation of the PostfixDecrement [++] operator in the parsing tree when parsing expressions.
PostfixIncrementOperatorNode Provides the implementation of the PostfixIncrement [++] operator in the parsing tree when parsing expressions.
PrefixDecrementOperatorNode Provides the implementation of the PrefixDecrement [--] operator in the parsing tree when parsing expressions.
PrefixIncrementOperatorNode Provides the implementation of the PrefixIncrement [++] operator in the parsing tree when parsing expressions.
RoundOperatorNode Provides the implementation of the Round [#] operator in the parsing tree when parsing expressions.
SubscriptSliceOperatorNode Provides the implementation of the Subscript / Slice [[]] operator in the parsing tree when parsing expressions.
SubtractOperatorNode Provides the implementation of the Subtract [-] operator in the parsing tree when parsing expressions.
XOrOperatorNode Provides the implementation of the XOr [(+)] operator in the parsing tree when parsing expressions.
 

Package net.scheinerman.phoenix.interpreter.parser.operators Description

This package contains classes that deal with the parsing and manipulation of arithmetic operators during Phoenix program execution.