Package compilation.analysis.semantic
Interface AnnotatedExpression
-
- All Known Implementing Classes:
AnnotatedAssignmentExpression,AnnotatedBinaryExpression,AnnotatedIdentifierExpression,AnnotatedLiteralExpression,AnnotatedUnaryExpression
public interface AnnotatedExpressionThe AnnotatedExpression interface is used to represent annotated expressions declared during compilation.- Since:
- 1.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AnnotatedExpressionTypegetExpressionType()Return the AnnotatedExpressionType of an AnnotatedExpression objectObjectTypegetObjectType()Return the ObjectType of an AnnotatedExpression object
-
-
-
Method Detail
-
getObjectType
ObjectType getObjectType()
Return the ObjectType of an AnnotatedExpression object- Returns:
- the ObjectType of the AnnotatedExpression
-
getExpressionType
AnnotatedExpressionType getExpressionType()
Return the AnnotatedExpressionType of an AnnotatedExpression object- Returns:
- the type of the AnnotatedExpression
-
-