Skip to content

Commit 3b6cd0f

Browse files
authored
Merge pull request github#5661 from smowton/smowton/cleanup/call-is-exprparent
Make Call a subclass of ExprParent.
2 parents 9de8085 + dee974f commit 3b6cd0f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

java/ql/src/semmle/code/java/Expr.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1808,7 +1808,7 @@ class WildcardTypeAccess extends Expr, @wildcardtypeaccess {
18081808
* This includes method calls, constructor and super constructor invocations,
18091809
* and constructors invoked through class instantiation.
18101810
*/
1811-
class Call extends Top, @caller {
1811+
class Call extends ExprParent, @caller {
18121812
/** Gets an argument supplied in this call. */
18131813
/*abstract*/ Expr getAnArgument() { none() }
18141814

0 commit comments

Comments
 (0)