File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -2642,7 +2642,7 @@ var __param = (this && this.__param) || function (paramIndex, decorator) {
2642
2642
writeLine ( ) ;
2643
2643
emitStart ( node ) ;
2644
2644
2645
- // emit call to exported only for top level nodes
2645
+ // emit call to exporter only for top level nodes
2646
2646
if ( compilerOptions . module === ModuleKind . System && node . parent === currentSourceFile ) {
2647
2647
// emit export default <smth> as
2648
2648
// export("default", <smth>)
@@ -4420,7 +4420,7 @@ var __param = (this && this.__param) || function (paramIndex, decorator) {
4420
4420
}
4421
4421
if ( languageVersion < ScriptTarget . ES6 && node . parent === currentSourceFile ) {
4422
4422
if ( compilerOptions . module === ModuleKind . System && ( node . flags & NodeFlags . Export ) ) {
4423
- // write the call to exported for enum
4423
+ // write the call to exporter for enum
4424
4424
writeLine ( ) ;
4425
4425
write ( `${ exportFunctionForFile } ("` ) ;
4426
4426
emitDeclarationName ( node ) ;
You can’t perform that action at this time.
0 commit comments