@@ -165,37 +165,37 @@ signature module Semantic {
165
165
*/
166
166
class Guard {
167
167
/**
168
- * Returns a string representation of the guard.
168
+ * Gets a string representation of the guard.
169
169
*/
170
170
string toString ( ) ;
171
171
172
172
/**
173
- * Returns the basic block associated with the guard.
173
+ * Gets the basic block associated with the guard.
174
174
*/
175
175
BasicBlock getBasicBlock ( ) ;
176
176
177
177
/**
178
- * Returns the guard as an expression.
178
+ * Gets the guard as an expression.
179
179
*/
180
180
Expr asExpr ( ) ;
181
181
182
182
/**
183
- * Checks if the guard directly controls a given basic block.
183
+ * Holds if the guard directly controls a given basic block.
184
184
* @param controlled The basic block to check.
185
185
* @param branch Indicates if the control is a branch or not.
186
186
*/
187
187
predicate directlyControls ( BasicBlock controlled , boolean branch ) ;
188
188
189
189
/**
190
- * Checks if the guard represents an equality between two expressions.
190
+ * Holds if the guard represents an equality between two expressions.
191
191
* @param e1 The first expression.
192
192
* @param e2 The second expression.
193
193
* @param polarity The polarity of the equality.
194
194
*/
195
195
predicate isEquality ( Expr e1 , Expr e2 , boolean polarity ) ;
196
196
197
197
/**
198
- * Checks if there is a branch edge between two basic blocks.
198
+ * Holds if there is a branch edge between two basic blocks.
199
199
* @param bb1 The first basic block.
200
200
* @param bb2 The second basic block.
201
201
* @param branch Indicates if the edge is a branch or not.
@@ -228,12 +228,12 @@ signature module Semantic {
228
228
*/
229
229
class SsaVariable {
230
230
/**
231
- * Returns the expression where this SSA variable is used.
231
+ * Gets the expression where this SSA variable is used.
232
232
*/
233
233
Expr getAUse ( ) ;
234
234
235
235
/**
236
- * Returns the basic block where this SSA variable is defined.
236
+ * Gets the basic block where this SSA variable is defined.
237
237
*/
238
238
BasicBlock getBasicBlock ( ) ;
239
239
}
@@ -251,7 +251,7 @@ signature module Semantic {
251
251
*/
252
252
class SsaExplicitUpdate extends SsaVariable {
253
253
/**
254
- * Retrieves the expression that defines the value of the variable in this update.
254
+ * Gets the expression that defines the value of the variable in this update.
255
255
*
256
256
* @return The defining expression.
257
257
*/
@@ -350,17 +350,17 @@ signature module BoundSig<LocationSig Location, Semantic Sem, DeltaSig D> {
350
350
*/
351
351
class SemBound {
352
352
/**
353
- * Returns a string representation of the semantic bound.
353
+ * Gets a string representation of the semantic bound.
354
354
*/
355
355
string toString ( ) ;
356
356
357
357
/**
358
- * Returns the location of the semantic bound.
358
+ * Gets the location of the semantic bound.
359
359
*/
360
360
Location getLocation ( ) ;
361
361
362
362
/**
363
- * Returns the expression associated with the semantic bound, given a delta.
363
+ * Gets the expression associated with the semantic bound, given a delta.
364
364
* @param delta - The delta value.
365
365
*/
366
366
Sem:: Expr getExpr ( D:: Delta delta ) ;
0 commit comments