From a5314b24c414b82fc76406f60e376eda12edb378 Mon Sep 17 00:00:00 2001 From: Eric Traut Date: Sat, 26 Oct 2019 18:04:20 -0700 Subject: [PATCH] Added missing call to addExceptTargets within conditional flow node creation. --- server/src/analyzer/binder.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/server/src/analyzer/binder.ts b/server/src/analyzer/binder.ts index 827b65b60..cae5a3472 100644 --- a/server/src/analyzer/binder.ts +++ b/server/src/analyzer/binder.ts @@ -1255,6 +1255,8 @@ export class Binder extends ParseTreeWalker { antecedent }; + this._addExceptTargets(conditionalFlowNode); + return conditionalFlowNode; }