Rust: Address review comments

This commit is contained in:
Simon Friis Vindum
2025-06-12 14:12:27 +02:00
parent 8cde1eefb2
commit 2dd2f2e72b
2 changed files with 2 additions and 4 deletions

View File

@@ -1,5 +1,5 @@
/**
* Call.
* This module provides the public class `Call`.
*/
private import internal.CallImpl

View File

@@ -8,11 +8,9 @@ module Impl {
/**
* An expression that calls a function.
*
* 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.
*/
abstract class Call extends ExprImpl::Expr {
Call() { this.fromSource() }
/** Gets the number of arguments _excluding_ any `self` argument. */
abstract int getNumberOfArguments();