Skip to content

Commit

Permalink
Update names of things.
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielRosenwasser committed Dec 20, 2019
1 parent fcc6f92 commit ed4f9b5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/compiler/transformer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ namespace ts {
switch (moduleKind) {
case ModuleKind.ESNext:
case ModuleKind.ES2015:
return transformES2015Module;
return transformECMAScriptModule;
case ModuleKind.System:
return transformSystemModule;
default:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*@internal*/
namespace ts {
export function transformES2015Module(context: TransformationContext) {
export function transformECMAScriptModule(context: TransformationContext) {
const compilerOptions = context.getCompilerOptions();
const previousOnEmitNode = context.onEmitNode;
const previousOnSubstituteNode = context.onSubstituteNode;
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
"transformers/generators.ts",
"transformers/module/module.ts",
"transformers/module/system.ts",
"transformers/module/es2015.ts",
"transformers/module/esnextAnd2015.ts",
"transformers/declarations/diagnostics.ts",
"transformers/declarations.ts",
"transformer.ts",
Expand Down

0 comments on commit ed4f9b5

Please sign in to comment.