Skip to content

Commit afa5273

Browse files
authored
format
1 parent b93d62e commit afa5273

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/compiler/checker.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3840,7 +3840,7 @@ export function createTypeChecker(host: TypeCheckerHost): TypeChecker {
38403840
*/
38413841
function isSameScopeDescendentOf(initial: Node, parent: Node | undefined, stopAt: Node): boolean {
38423842
return !!parent && !!findAncestor(initial, n => n === parent
3843-
|| (n === stopAt || isFunctionLike(n) && (!getImmediatelyInvokedFunctionExpression(n) || (getFunctionFlags(n) & (FunctionFlags.AsyncGenerator))) ? "quit" : false));
3843+
|| (n === stopAt || isFunctionLike(n) && (!getImmediatelyInvokedFunctionExpression(n) || (getFunctionFlags(n) & FunctionFlags.AsyncGenerator)) ? "quit" : false));
38443844
}
38453845

38463846
function getAnyImportSyntax(node: Node): AnyImportSyntax | undefined {

0 commit comments

Comments
 (0)