Skip to content
This repository has been archived by the owner on Apr 13, 2023. It is now read-only.

Commit

Permalink
Add support for generic anonymous functions.
Browse files Browse the repository at this point in the history
Part of #108.
  • Loading branch information
lucaswerkmeister committed Jun 10, 2015
1 parent 4ab6734 commit db35589
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions source/ceylon/formatter/FormattingVisitor.ceylon
Original file line number Diff line number Diff line change
Expand Up @@ -790,6 +790,7 @@ shared class FormattingVisitor(

shared actual void visitFunctionArgument(FunctionArgument that) {
that.type?.visit(this);
that.typeParameterList?.visit(this);
for (list in CeylonIterable(that.parameterLists)) {
visitParameterListAnonymous(list);
}
Expand Down

0 comments on commit db35589

Please sign in to comment.