C#: QL doc adjustments

This commit is contained in:
Tom Hvitved
2020-10-07 15:15:18 +02:00
parent 1a93090778
commit af36718dc6
2 changed files with 4 additions and 1 deletions

View File

@@ -126,6 +126,9 @@ class ControlFlowElement extends ExprOrStmtParent, @control_flow_element {
* ```
*
* does not work.
*
* `cb` records all of the possible condition blocks for this control flow element
* that a path from the callable entry point to `succ` may go through.
*/
pragma[nomagic]
private predicate immediatelyControlsBlockSplit(

View File

@@ -409,7 +409,7 @@ module AssertionSplitting {
* ```
*
* we record whether `i >= 0` evaluates to `true` or `false`, and restrict the
* edges out out of the assertion accordingly.
* edges out of the assertion accordingly.
*/
class AssertionSplitImpl extends SplitImpl, TAssertionSplit {
Assertion a;