We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8cde1ee commit 2dd2f2eCopy full SHA for 2dd2f2e
rust/ql/lib/codeql/rust/elements/Call.qll
@@ -1,5 +1,5 @@
1
/**
2
- * Call.
+ * This module provides the public class `Call`.
3
*/
4
5
private import internal.CallImpl
rust/ql/lib/codeql/rust/elements/internal/CallImpl.qll
@@ -8,11 +8,9 @@ module Impl {
8
9
* An expression that calls a function.
10
*
11
- * This class abstract over the different ways in which a function can be called in Rust.
+ * This class abstracts over the different ways in which a function can be called in Rust.
12
13
abstract class Call extends ExprImpl::Expr {
14
- Call() { this.fromSource() }
15
-
16
/** Gets the number of arguments _excluding_ any `self` argument. */
17
abstract int getNumberOfArguments();
18
0 commit comments