The typical shape of this node is:
IBinaryOperatorNode IExpressionNode <-- getLeftOperandNode() IExpressionNode <-- getRightOperandNode()For example,
a = b + c
is represented as IBinaryOperatorNode "=" IIdentifierNode "a" IBinaryOperatorNode "+" IIdentifierNode "b" IIdentifierNOde "c"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|