1
1
/*@internal */
2
2
namespace ts {
3
3
export function getDeclarationDiagnostics ( host : EmitHost , resolver : EmitResolver , file : SourceFile | undefined ) : DiagnosticWithLocation [ ] | undefined {
4
- if ( file && isSourceFileJS ( file ) ) {
5
- return [ ] ; // No declaration diagnostics for js for now
6
- }
7
4
const compilerOptions = host . getCompilerOptions ( ) ;
8
- const result = transformNodes ( resolver , host , compilerOptions , file ? [ file ] : filter ( host . getSourceFiles ( ) , isSourceFileNotJS ) , [ transformDeclarations ] , /*allowDtsFiles*/ false ) ;
5
+ const result = transformNodes ( resolver , host , compilerOptions , file ? [ file ] : host . getSourceFiles ( ) , [ transformDeclarations ] , /*allowDtsFiles*/ false ) ;
9
6
return result . diagnostics ;
10
7
}
11
8
@@ -190,15 +187,11 @@ namespace ts {
190
187
}
191
188
}
192
189
193
- function createEmptyExports ( ) {
194
- return createExportDeclaration ( /*decorators*/ undefined , /*modifiers*/ undefined , createNamedExports ( [ ] ) , /*moduleSpecifier*/ undefined ) ;
195
- }
196
-
197
190
function transformRoot ( node : Bundle ) : Bundle ;
198
191
function transformRoot ( node : SourceFile ) : SourceFile ;
199
192
function transformRoot ( node : SourceFile | Bundle ) : SourceFile | Bundle ;
200
193
function transformRoot ( node : SourceFile | Bundle ) {
201
- if ( node . kind === SyntaxKind . SourceFile && ( node . isDeclarationFile || isSourceFileJS ( node ) ) ) {
194
+ if ( node . kind === SyntaxKind . SourceFile && node . isDeclarationFile ) {
202
195
return node ;
203
196
}
204
197
@@ -209,7 +202,10 @@ namespace ts {
209
202
let hasNoDefaultLib = false ;
210
203
const bundle = createBundle ( map ( node . sourceFiles ,
211
204
sourceFile => {
212
- if ( sourceFile . isDeclarationFile || isSourceFileJS ( sourceFile ) ) return undefined ! ; // Omit declaration files from bundle results, too // TODO: GH#18217
205
+ if ( sourceFile . isDeclarationFile ) return undefined ! ; // Omit declaration files from bundle results, too // TODO: GH#18217
206
+ if ( isSourceFileJS ( sourceFile ) ) {
207
+ return updateSourceFileNode ( sourceFile , resolver . getDeclarationStatementsForSourceFile ( sourceFile , declarationEmitNodeBuilderFlags , symbolTracker ) || emptyArray ) ;
208
+ }
213
209
hasNoDefaultLib = hasNoDefaultLib || sourceFile . hasNoDefaultLib ;
214
210
currentSourceFile = sourceFile ;
215
211
enclosingDeclaration = sourceFile ;
@@ -257,6 +253,9 @@ namespace ts {
257
253
refs . forEach ( referenceVisitor ) ;
258
254
return bundle ;
259
255
}
256
+ else if ( isSourceFileJS ( node ) ) {
257
+ return updateSourceFileNode ( node , resolver . getDeclarationStatementsForSourceFile ( node , declarationEmitNodeBuilderFlags , symbolTracker ) || emptyArray ) ;
258
+ }
260
259
261
260
// Single source file
262
261
needsDeclare = true ;
@@ -710,10 +709,6 @@ namespace ts {
710
709
return isAnyImportOrReExport ( result ) || isExportAssignment ( result ) || hasModifier ( result , ModifierFlags . Export ) ;
711
710
}
712
711
713
- function needsScopeMarker ( result : LateVisibilityPaintedStatement | ExportAssignment ) {
714
- return ! isAnyImportOrReExport ( result ) && ! isExportAssignment ( result ) && ! hasModifier ( result , ModifierFlags . Export ) && ! isAmbientModule ( result ) ;
715
- }
716
-
717
712
function visitDeclarationSubtree ( input : Node ) : VisitResult < Node > {
718
713
if ( shouldStripInternal ( input ) ) return ;
719
714
if ( isDeclaration ( input ) ) {
0 commit comments