File tree 2 files changed +6
-4
lines changed
tests/baselines/reference 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -3459,7 +3459,6 @@ declare namespace ts {
3459
3459
function isObjectLiteralElement ( node : Node ) : node is ObjectLiteralElement ;
3460
3460
function isStringLiteralLike ( node : Node ) : node is StringLiteralLike ;
3461
3461
}
3462
-
3463
3462
declare namespace ts {
3464
3463
function createNode ( kind : SyntaxKind , pos ?: number , end ?: number ) : Node ;
3465
3464
/**
Original file line number Diff line number Diff line change @@ -96,9 +96,12 @@ if (bar.constructor === Baz) {
96
96
97
97
//// [typeGuardConstructor.js]
98
98
var __extends = ( this && this . __extends ) || ( function ( ) {
99
- var extendStatics = Object . setPrototypeOf ||
100
- ( { __proto__ : [ ] } instanceof Array && function ( d , b ) { d . __proto__ = b ; } ) ||
101
- function ( d , b ) { for ( var p in b ) if ( b . hasOwnProperty ( p ) ) d [ p ] = b [ p ] ; } ;
99
+ var extendStatics = function ( d , b ) {
100
+ extendStatics = Object . setPrototypeOf ||
101
+ ( { __proto__ : [ ] } instanceof Array && function ( d , b ) { d . __proto__ = b ; } ) ||
102
+ function ( d , b ) { for ( var p in b ) if ( b . hasOwnProperty ( p ) ) d [ p ] = b [ p ] ; } ;
103
+ return extendStatics ( d , b ) ;
104
+ }
102
105
return function ( d , b ) {
103
106
extendStatics ( d , b ) ;
104
107
function __ ( ) { this . constructor = d ; }
You can’t perform that action at this time.
0 commit comments