Package compilation.analysis.semantic
Class AnnotatedAssignmentExpression
- java.lang.Object
-
- compilation.analysis.semantic.AnnotatedAssignmentExpression
-
- All Implemented Interfaces:
AnnotatedExpression
public final class AnnotatedAssignmentExpression extends java.lang.Object implements AnnotatedExpression
The AnnotatedAssignmentExpression class is used to store information about annotated assignment expressions declared during compilation.- Since:
- 1.0
-
-
Constructor Summary
Constructors Constructor Description AnnotatedAssignmentExpression(AnnotatedIdentifierExpression identifier, AnnotatedAssignmentOperator operator, AnnotatedExpression expression)Constructs an AnnotatedAssignmentExpression object, initialised with the expressions contents.
-
Method Summary
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface compilation.analysis.semantic.AnnotatedExpression
getExpressionType, getObjectType
-
-
-
-
Constructor Detail
-
AnnotatedAssignmentExpression
public AnnotatedAssignmentExpression(AnnotatedIdentifierExpression identifier, AnnotatedAssignmentOperator operator, AnnotatedExpression expression)
Constructs an AnnotatedAssignmentExpression object, initialised with the expressions contents.The ObjectType is automatically added based on the type of the assigned Expression.
- Parameters:
identifier- The identifier being assigned tooperator- The operator being usedexpression- The expression being assigned
-
-