File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -3840,7 +3840,7 @@ export function createTypeChecker(host: TypeCheckerHost): TypeChecker {
3840
3840
*/
3841
3841
function isSameScopeDescendentOf(initial: Node, parent: Node | undefined, stopAt: Node): boolean {
3842
3842
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));
3844
3844
}
3845
3845
3846
3846
function getAnyImportSyntax(node: Node): AnyImportSyntax | undefined {
You can’t perform that action at this time.
0 commit comments