| Package | Description |
|---|---|
| cetus.base.grammars | |
| cetus.hir |
| Modifier and Type | Method and Description |
|---|---|
AssignmentOperator |
NewCParser.assignOperator() |
| Modifier and Type | Field and Description |
|---|---|
static AssignmentOperator |
AssignmentOperator.ADD
+=
|
static AssignmentOperator |
AssignmentOperator.BITWISE_AND
&=
|
static AssignmentOperator |
AssignmentOperator.BITWISE_EXCLUSIVE_OR
^=
|
static AssignmentOperator |
AssignmentOperator.BITWISE_INCLUSIVE_OR
|=
|
static AssignmentOperator |
AssignmentOperator.DIVIDE
/=
|
static AssignmentOperator |
AssignmentOperator.MODULUS
%=
|
static AssignmentOperator |
AssignmentOperator.MULTIPLY
*=
|
static AssignmentOperator |
AssignmentOperator.NORMAL
=
|
static AssignmentOperator |
AssignmentOperator.SHIFT_LEFT
<<=
|
static AssignmentOperator |
AssignmentOperator.SHIFT_RIGHT
>>=
|
static AssignmentOperator |
AssignmentOperator.SUBTRACT
-=
|
| Modifier and Type | Method and Description |
|---|---|
static AssignmentOperator |
AssignmentOperator.fromString(java.lang.String s)
Returns an assignment operator that matches the specified string.
|
AssignmentOperator |
AssignmentExpression.getOperator()
Returns the operator of the expression.
|
| Modifier and Type | Method and Description |
|---|---|
void |
AssignmentExpression.setOperator(AssignmentOperator op)
Sets the operator for the expression.
|
| Constructor and Description |
|---|
AssignmentExpression(Expression lhs,
AssignmentOperator op,
Expression rhs)
Creates an assignment expression.
|