Update emitter due to merge with master

This commit is contained in:
Yui T 2015-01-23 17:28:12 -08:00
parent de9547cc9e
commit 593a0992f9
2 changed files with 2 additions and 3 deletions

View file

@ -3300,7 +3300,7 @@ module ts {
// When targeting ES6, emit arrow function natively in ES6
if (isES6ArrowFunction(node)) {
write(" => ");
write(" =>");
}
write(" {");

View file

@ -164,8 +164,7 @@ class ProjectRunner extends RunnerBase {
mapRoot: testCase.resolveMapRoot && testCase.mapRoot ? ts.sys.resolvePath(testCase.mapRoot) : testCase.mapRoot,
sourceRoot: testCase.resolveSourceRoot && testCase.sourceRoot ? ts.sys.resolvePath(testCase.sourceRoot) : testCase.sourceRoot,
module: moduleKind,
noResolve: testCase.noResolve,
target: ts.ScriptTarget.Latest
noResolve: testCase.noResolve
};
}