File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1075,7 +1075,7 @@ export class Signature {
10751075 }
10761076
10771077 // check rest parameter
1078- if ( this . hasRest != target . hasRest ) return false ;
1078+ if ( this . hasRest != target . hasRest ) return false ; // TODO
10791079
10801080 // check return type (covariant)
10811081 let thisReturnType = this . returnType ;
@@ -1087,7 +1087,7 @@ export class Signature {
10871087 let thisParameterTypes = this . parameterTypes ;
10881088 let targetParameterTypes = target . parameterTypes ;
10891089 let numParameters = thisParameterTypes . length ;
1090- if ( numParameters != targetParameterTypes . length ) return false ;
1090+ if ( numParameters != targetParameterTypes . length ) return false ; // TODO
10911091
10921092 for ( let i = 0 ; i < numParameters ; ++ i ) {
10931093 let thisParameterType = unchecked ( thisParameterTypes [ i ] ) ;
You can’t perform that action at this time.
0 commit comments