Skip to content

Commit 593a099

Browse files
author
Yui T
committed
Update emitter due to merge with master
1 parent de9547c commit 593a099

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/compiler/emitter.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -3300,7 +3300,7 @@ module ts {
33003300

33013301
// When targeting ES6, emit arrow function natively in ES6
33023302
if (isES6ArrowFunction(node)) {
3303-
write(" => ");
3303+
write(" =>");
33043304
}
33053305

33063306
write(" {");

src/harness/projectsRunner.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -164,8 +164,7 @@ class ProjectRunner extends RunnerBase {
164164
mapRoot: testCase.resolveMapRoot && testCase.mapRoot ? ts.sys.resolvePath(testCase.mapRoot) : testCase.mapRoot,
165165
sourceRoot: testCase.resolveSourceRoot && testCase.sourceRoot ? ts.sys.resolvePath(testCase.sourceRoot) : testCase.sourceRoot,
166166
module: moduleKind,
167-
noResolve: testCase.noResolve,
168-
target: ts.ScriptTarget.Latest
167+
noResolve: testCase.noResolve
169168
};
170169
}
171170

0 commit comments

Comments
 (0)