Skip to content

Commit

Permalink
Allow th addition to something that holds arguments and something tha…
Browse files Browse the repository at this point in the history
…t holds statements
  • Loading branch information
konradweiss committed Oct 24, 2024
1 parent 389eb01 commit 467c6f5
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -341,6 +341,9 @@ fun LanguageFrontend<*, *>.listComp(
if (holder is StatementHolder) {
holder += node
}
if (holder is ArgumentHolder) {
holder += node
}

return node
}
Expand Down

0 comments on commit 467c6f5

Please sign in to comment.