Package compilation.analysis.semantic
Class AnnotatedLoopStatement
- java.lang.Object
-
- compilation.analysis.semantic.AnnotatedLoopStatement
-
- All Implemented Interfaces:
AnnotatedStatement
public final class AnnotatedLoopStatement extends java.lang.Object implements AnnotatedStatement
The AnnotatedLoopStatement class is used to store information about annotated loop statements declared during compilation.- Since:
- 1.0
-
-
Constructor Summary
Constructors Constructor Description AnnotatedLoopStatement(AnnotatedExpression lowerBound, AnnotatedExpression upperBound, AnnotatedStatement body)Constructs an AnnotatedLoopStatement object, initialised with the statements 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.AnnotatedStatement
getStatementType
-
-
-
-
Constructor Detail
-
AnnotatedLoopStatement
public AnnotatedLoopStatement(AnnotatedExpression lowerBound, AnnotatedExpression upperBound, AnnotatedStatement body)
Constructs an AnnotatedLoopStatement object, initialised with the statements contents.- Parameters:
lowerBound- The lower bound AnnotatedExpressionupperBound- The upper bound AnnotatedExpressionbody- The AnnotatedStatement to be run in the loop body
-
-