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 {
2896
2896
if ( instance ) return instance ;
2897
2897
2898
2898
// Otherwise create
2899
- var nameInclTypeParamters = prototype . name ;
2900
- if ( instanceKey . length ) nameInclTypeParamters += `<${ instanceKey } >` ;
2899
+ var nameInclTypeParameters = prototype . name ;
2900
+ if ( instanceKey . length ) nameInclTypeParameters += `<${ instanceKey } >` ;
2901
2901
if ( prototype . kind == ElementKind . INTERFACE_PROTOTYPE ) {
2902
- instance = new Interface ( nameInclTypeParamters , < InterfacePrototype > prototype , typeArguments ) ;
2902
+ instance = new Interface ( nameInclTypeParameters , < InterfacePrototype > prototype , typeArguments ) ;
2903
2903
} else {
2904
- instance = new Class ( nameInclTypeParamters , prototype , typeArguments ) ;
2904
+ instance = new Class ( nameInclTypeParameters , prototype , typeArguments ) ;
2905
2905
}
2906
2906
prototype . setResolvedInstance ( instanceKey , instance ) ;
2907
2907
var pendingClasses = this . resolveClassPending ;
You can’t perform that action at this time.
0 commit comments