File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -2896,12 +2896,12 @@ export class Resolver extends DiagnosticEmitter {
28962896 if ( instance ) return instance ;
28972897
28982898 // Otherwise create
2899- var nameInclTypeParamters = prototype . name ;
2900- if ( instanceKey . length ) nameInclTypeParamters += `<${ instanceKey } >` ;
2899+ var nameInclTypeParameters = prototype . name ;
2900+ if ( instanceKey . length ) nameInclTypeParameters += `<${ instanceKey } >` ;
29012901 if ( prototype . kind == ElementKind . INTERFACE_PROTOTYPE ) {
2902- instance = new Interface ( nameInclTypeParamters , < InterfacePrototype > prototype , typeArguments ) ;
2902+ instance = new Interface ( nameInclTypeParameters , < InterfacePrototype > prototype , typeArguments ) ;
29032903 } else {
2904- instance = new Class ( nameInclTypeParamters , prototype , typeArguments ) ;
2904+ instance = new Class ( nameInclTypeParameters , prototype , typeArguments ) ;
29052905 }
29062906 prototype . setResolvedInstance ( instanceKey , instance ) ;
29072907 var pendingClasses = this . resolveClassPending ;
You can’t perform that action at this time.
0 commit comments