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
77 * A control-flow graph (CFG) scope.
88 */
99abstract private class CfgScopeImpl extends AstNode {
10+ /** Holds if `first` is executed first when entering `scope`. */
1011 abstract predicate scopeFirst ( AstNode first ) ;
1112
13+ /** Holds if `scope` is exited when `last` finishes with completion `c`. */
1214 abstract predicate scopeLast ( AstNode last , Completion c ) ;
1315}
1416
Original file line number Diff line number Diff line change 1+ /**
2+ * This module provides the public class `AsyncBlockExpr`.
3+ */
4+
15private import codeql.rust.elements.BlockExpr
26
37/**
4- * A async block expression. For example:
8+ * An async block expression. For example:
59 * ```rust
610 * async {
711 * let x = 42;
You can’t perform that action at this time.
0 commit comments