From 6fd0a38335eca2db91f1e6cbb8555f70fc2bda25 Mon Sep 17 00:00:00 2001 From: Paul van Brenk Date: Fri, 1 May 2015 12:38:41 -0700 Subject: [PATCH] This seems to work today, not sure what I was seeing yesterday. --- src/services/services.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/services/services.ts b/src/services/services.ts index da40e36a053..e7c51cddadd 100644 --- a/src/services/services.ts +++ b/src/services/services.ts @@ -2986,8 +2986,7 @@ module ts { || containingNodeKind === SyntaxKind.Constructor // constructor( | || containingNodeKind === SyntaxKind.NewExpression // new C(a| || containingNodeKind === SyntaxKind.ParenthesizedExpression // let x = (a| - || containingNodeKind === SyntaxKind.ParenthesizedType // function F(pred: (a| - || containingNodeKind == SyntaxKind.FunctionType; // function F(pred: (a| // todo: figure out why fourslash and the IDE don't agree on node kind here + || containingNodeKind === SyntaxKind.ParenthesizedType; // function F(pred: (a case SyntaxKind.ColonToken: return containingNodeKind === SyntaxKind.Parameter; // function F(pred: a|