@@ -1879,7 +1879,7 @@ class VarRead extends VarAccess {
1879
1879
/** DEPRECATED: Alias for `VarRead`. */
1880
1880
deprecated class RValue = VarRead ;
1881
1881
1882
- /** A method access is an invocation of a method with a list of arguments. */
1882
+ /** A method call is an invocation of a method with a list of arguments. */
1883
1883
class MethodCall extends Expr , Call , @methodaccess {
1884
1884
/** Gets the qualifying expression of this method access, if any. */
1885
1885
override Expr getQualifier ( ) { result .isNthChildOf ( this , - 1 ) }
@@ -1928,7 +1928,7 @@ class MethodCall extends Expr, Call, @methodaccess {
1928
1928
}
1929
1929
1930
1930
/**
1931
- * Holds if this is a method access to an instance method of `this`. That is,
1931
+ * Holds if this is a method call to an instance method of `this`. That is,
1932
1932
* the qualifier is either an explicit or implicit unqualified `this` or `super`.
1933
1933
*/
1934
1934
predicate isOwnMethodCall ( ) { Qualifier:: ownMemberAccess ( this ) }
@@ -1937,7 +1937,7 @@ class MethodCall extends Expr, Call, @methodaccess {
1937
1937
deprecated predicate isOwnMethodAccess ( ) { this .isOwnMethodCall ( ) }
1938
1938
1939
1939
/**
1940
- * Holds if this is a method access to an instance method of the enclosing
1940
+ * Holds if this is a method call to an instance method of the enclosing
1941
1941
* class `t`. That is, the qualifier is either an explicit or implicit
1942
1942
* `t`-qualified `this` or `super`.
1943
1943
*/
0 commit comments