File tree Expand file tree Collapse file tree
rangeanalysis/codeql/rangeanalysis Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -148,7 +148,6 @@ signature module InputSig {
148148 * Predicate to force high precision for the given content.
149149 *
150150 * @param c The content to force high precision for.
151- * @return True if high precision is forced for the content, false otherwise.
152151 */
153152 predicate forceHighPrecision ( Content c ) ;
154153
@@ -196,7 +195,6 @@ signature module InputSig {
196195 *
197196 * @param ppos The parameter position.
198197 * @param apos The argument position.
199- * @return True if the parameter position matches the argument position, false otherwise.
200198 */
201199 predicate parameterMatch ( ParameterPosition ppos , ArgumentPosition apos ) ;
202200
@@ -205,7 +203,6 @@ signature module InputSig {
205203 *
206204 * @param node1 The first node in the flow step.
207205 * @param node2 The second node in the flow step.
208- * @return True if there is a simple local flow step between node1 and node2, false otherwise.
209206 */
210207 predicate simpleLocalFlowStep ( Node node1 , Node node2 ) ;
211208
Original file line number Diff line number Diff line change @@ -183,7 +183,6 @@ signature module Semantic {
183183 * Checks if the guard directly controls a given basic block.
184184 * @param controlled The basic block to check.
185185 * @param branch Indicates if the control is a branch or not.
186- * @returns True if the guard directly controls the basic block, false otherwise.
187186 */
188187 predicate directlyControls ( BasicBlock controlled , boolean branch ) ;
189188
@@ -192,7 +191,6 @@ signature module Semantic {
192191 * @param e1 The first expression.
193192 * @param e2 The second expression.
194193 * @param polarity The polarity of the equality.
195- * @returns True if the guard represents the equality, false otherwise.
196194 */
197195 predicate isEquality ( Expr e1 , Expr e2 , boolean polarity ) ;
198196
@@ -201,7 +199,6 @@ signature module Semantic {
201199 * @param bb1 The first basic block.
202200 * @param bb2 The second basic block.
203201 * @param branch Indicates if the edge is a branch or not.
204- * @returns True if there is a branch edge between the basic blocks, false otherwise.
205202 */
206203 predicate hasBranchEdge ( BasicBlock bb1 , BasicBlock bb2 , boolean branch ) ;
207204 }
You can’t perform that action at this time.
0 commit comments