File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
test/library-tests/ast/calls Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -160,7 +160,7 @@ class UserDefinedFunction extends Callable instanceof UserDefinedFunctionImpl {
160160 *
161161 * @return The parameters node of the function
162162 */
163- Expr getParameters ( ) { result = UserDefinedFunctionImpl .super .getParameters ( ) }
163+ Expr getParameters ( ) { result = UserDefinedFunctionImpl .super .getParameter ( _ ) }
164164
165165 /**
166166 * Gets the parameter at the specified index.
Original file line number Diff line number Diff line change @@ -3,5 +3,5 @@ private import bicep
33query predicate functions ( UserDefinedFunction function ) { any ( ) }
44
55query predicate functionParameters ( UserDefinedFunction function , Parameter params ) {
6- function .getParameters ( ) = params
6+ function .getParameter ( _ ) = params
77}
You can’t perform that action at this time.
0 commit comments