Skip to content

Commit

Permalink
Merge branch 'topic/125' into 'master'
Browse files Browse the repository at this point in the history
Add missing closing parenthesis in rule actual_parameters.

Closes #125

See merge request eng/libadalang/langkit-query-language!111
  • Loading branch information
Roldak committed Oct 2, 2023
2 parents 8aa6eef + a4dda01 commit aaa1c16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lkql_checker/share/lkql/actual_parameters.lkql
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ fun check_actual(name, expected) =
@check(message="actual parameter mismatch",
category="Style", subcategory="Programming Practice")
fun actual_parameters(node, forbidden=[]) =
node is AssocList(parent is call@CallExpr(p_is_call() is true)
node is AssocList(parent is call@CallExpr(p_is_call() is true))
when {
val n = call.f_name.p_referenced_decl()?.
p_canonical_fully_qualified_name?();
Expand Down

0 comments on commit aaa1c16

Please sign in to comment.