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/core/Controller.ts
+6-2Lines changed: 6 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -115,11 +115,15 @@ module puremvc
115
115
*/
116
116
executeCommand(notification:INotification):void
117
117
{
118
-
//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 )
118
+
/*
119
+
* Typed any here instead of <code>Function</code> ( won't compile if set to Function
120
+
* because today the compiler consider that <code>Function</code> is not newable and
0 commit comments