You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/org/puremvc/typescript/multicore/patterns/command/MacroCommand.ts
+6-2Lines changed: 6 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -104,9 +104,13 @@ module puremvc
104
104
varlen:number=this.subCommands.length;
105
105
for(vari:number=0;i<len;i++)
106
106
{
107
-
//TODO Identify if here *any* is the right choice instead of Function ( won't compile if set to Function because it is not newable on new commandClassRef )
107
+
/*
108
+
* Typed any here instead of <code>Function</code> ( won't compile if set to Function
109
+
* because today the compiler consider that <code>Function</code> is not newable and
0 commit comments