Skip to content

Commit b896aae

Browse files
committed
Merge branch 'transforms' into transforms-commentsPerf
2 parents 66514a2 + c9ec4e2 commit b896aae

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Jakefile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1156,7 +1156,7 @@ task("runtests-file", ["build-rules", "tests", builtLocalDirectory], function ()
11561156
}, { async: true });
11571157

11581158
task("runtests-dirty", ["build-rules", "tests", builtLocalDirectory], function () {
1159-
runConsoleTests("mocha-fivemat-progress-reporter", [], /*dirty*/ true);
1159+
runConsoleTests("mocha-fivemat-progress-reporter", /*runInParallel*/ false, /*dirty*/ true);
11601160
}, { async: true });
11611161

11621162
desc("Generates code coverage data via instanbul");

src/compiler/checker.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1223,7 +1223,7 @@ namespace ts {
12231223
const left = name.kind === SyntaxKind.QualifiedName ? (<QualifiedName>name).left : (<PropertyAccessExpression>name).expression;
12241224
const right = name.kind === SyntaxKind.QualifiedName ? (<QualifiedName>name).right : (<PropertyAccessExpression>name).name;
12251225

1226-
const namespace = resolveEntityName(left, SymbolFlags.Namespace, ignoreErrors, dontResolveAlias, location);
1226+
const namespace = resolveEntityName(left, SymbolFlags.Namespace, ignoreErrors, /*dontResolveAlias*/ false, location);
12271227
if (!namespace || namespace === unknownSymbol || nodeIsMissing(right)) {
12281228
return undefined;
12291229
}

0 commit comments

Comments
 (0)