File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -7,8 +7,10 @@ private import codeql.rust.elements.internal.generated.ParentChild
7
7
* A control-flow graph (CFG) scope.
8
8
*/
9
9
abstract private class CfgScopeImpl extends AstNode {
10
+ /** Holds if `first` is executed first when entering `scope`. */
10
11
abstract predicate scopeFirst ( AstNode first ) ;
11
12
13
+ /** Holds if `scope` is exited when `last` finishes with completion `c`. */
12
14
abstract predicate scopeLast ( AstNode last , Completion c ) ;
13
15
}
14
16
Original file line number Diff line number Diff line change
1
+ /**
2
+ * This module provides the public class `AsyncBlockExpr`.
3
+ */
4
+
1
5
private import codeql.rust.elements.BlockExpr
2
6
3
7
/**
4
- * A async block expression. For example:
8
+ * An async block expression. For example:
5
9
* ```rust
6
10
* async {
7
11
* let x = 42;
You can’t perform that action at this time.
0 commit comments