@@ -12,7 +12,6 @@ namespace ts {
12
12
}
13
13
14
14
/* @internal */
15
- // eslint-disable-next-line no-redeclare
16
15
namespace ts {
17
16
export const resolvingEmptyArray : never [ ] = [ ] as never [ ] ;
18
17
export const emptyMap = createMap < never > ( ) as ReadonlyMap < never > & ReadonlyPragmaMap ;
@@ -4667,7 +4666,6 @@ namespace ts {
4667
4666
}
4668
4667
}
4669
4668
4670
- // eslint-disable-next-line no-redeclare
4671
4669
namespace ts {
4672
4670
export function getDefaultLibFileName ( options : CompilerOptions ) : string {
4673
4671
switch ( options . target ) {
@@ -5449,7 +5447,6 @@ namespace ts {
5449
5447
}
5450
5448
5451
5449
// Simple node tests of the form `node.kind === SyntaxKind.Foo`.
5452
- // eslint-disable-next-line no-redeclare
5453
5450
namespace ts {
5454
5451
// Literals
5455
5452
export function isNumericLiteral ( node : Node ) : node is NumericLiteral {
@@ -6192,7 +6189,6 @@ namespace ts {
6192
6189
//
6193
6190
// All node tests in the following list should *not* reference parent pointers so that
6194
6191
// they may be used with transformations.
6195
- // eslint-disable-next-line no-redeclare
6196
6192
namespace ts {
6197
6193
/* @internal */
6198
6194
export function isSyntaxList ( n : Node ) : n is SyntaxList {
@@ -7036,7 +7032,6 @@ namespace ts {
7036
7032
}
7037
7033
7038
7034
/* @internal */
7039
- // eslint-disable-next-line no-redeclare
7040
7035
namespace ts {
7041
7036
export function isNamedImportsOrExports ( node : Node ) : node is NamedImportsOrExports {
7042
7037
return node . kind === SyntaxKind . NamedImports || node . kind === SyntaxKind . NamedExports ;
@@ -7664,7 +7659,6 @@ namespace ts {
7664
7659
}
7665
7660
7666
7661
/* @internal */
7667
- // eslint-disable-next-line no-redeclare
7668
7662
namespace ts {
7669
7663
export function getPathComponentsRelativeTo ( from : string , to : string , stringEqualityComparer : ( a : string , b : string ) => boolean , getCanonicalFileName : GetCanonicalFileName ) {
7670
7664
const fromComponents = reducePathComponents ( getPathComponents ( from ) ) ;
0 commit comments