@@ -243,7 +243,11 @@ static Expr ToHostExpr(ParserContext pcon, QualifiedMethodExpr qmfexpr, Symbol t
243243 switch ( qmfexpr . Kind )
244244 {
245245 case QualifiedMethodExpr . EMethodKind . CTOR :
246- return new NewExpr ( qmfexpr . MethodType , ( ConstructorInfo ) method , HostExpr . ParseArgs ( pcon , RT . seq ( args ) ) , ( IPersistentMap ) Compiler . SourceSpanVar . deref ( ) ) ;
246+ return new NewExpr (
247+ qmfexpr . MethodType ,
248+ ( ConstructorInfo ) method ,
249+ HostExpr . ParseArgs ( pcon , RT . seq ( args ) ) ,
250+ ( IPersistentMap ) Compiler . SourceSpanVar . deref ( ) ) ;
247251
248252 case QualifiedMethodExpr . EMethodKind . INSTANCE :
249253 return new InstanceMethodExpr (
@@ -255,7 +259,7 @@ static Expr ToHostExpr(ParserContext pcon, QualifiedMethodExpr qmfexpr, Symbol t
255259 Compiler . munge ( qmfexpr . MethodName ) ,
256260 ( MethodInfo ) method ,
257261 null , // TODO: is there a way to pass type args here?
258- HostExpr . ParseArgs ( pcon , RT . seq ( RT . next ( args ) ) ) ,
262+ HostExpr . ParseArgs ( pcon , RT . next ( args ) ) ,
259263 tailPosition ) ;
260264
261265 default :
@@ -276,7 +280,10 @@ static Expr ToHostExpr(ParserContext pcon, QualifiedMethodExpr qmfexpr, Symbol t
276280 switch ( qmfexpr . Kind )
277281 {
278282 case QualifiedMethodExpr . EMethodKind . CTOR :
279- return new NewExpr ( qmfexpr . MethodType , HostExpr . ParseArgs ( pcon , RT . seq ( args ) ) , ( IPersistentMap ) Compiler . SourceSpanVar . deref ( ) ) ;
283+ return new NewExpr (
284+ qmfexpr . MethodType ,
285+ HostExpr . ParseArgs ( pcon , RT . seq ( args ) ) ,
286+ ( IPersistentMap ) Compiler . SourceSpanVar . deref ( ) ) ;
280287
281288 case QualifiedMethodExpr . EMethodKind . INSTANCE :
282289 return new InstanceMethodExpr (
0 commit comments