From 280ef4535530851452f3162b0997329505af3be0 Mon Sep 17 00:00:00 2001 From: Chris Xu Date: Sat, 13 Jul 2024 16:29:35 -0700 Subject: [PATCH] fix build after merging master --- .../CodeAnalysis/BinderTests/ControlFlowAnalysisTests.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Todl.Compiler.Tests/CodeAnalysis/BinderTests/ControlFlowAnalysisTests.cs b/src/Todl.Compiler.Tests/CodeAnalysis/BinderTests/ControlFlowAnalysisTests.cs index 8e63163..259fc9c 100644 --- a/src/Todl.Compiler.Tests/CodeAnalysis/BinderTests/ControlFlowAnalysisTests.cs +++ b/src/Todl.Compiler.Tests/CodeAnalysis/BinderTests/ControlFlowAnalysisTests.cs @@ -1,6 +1,6 @@ using System.Linq; using FluentAssertions; -using Todl.Compiler.CodeAnalysis.Binding; +using Todl.Compiler.CodeAnalysis.Binding.BoundTree; using Todl.Compiler.CodeAnalysis.Binding.ControlFlowAnalysis; using Todl.Compiler.Diagnostics; using Xunit; @@ -86,7 +86,7 @@ public void TestControlFlowAnalysisWithLoopStatements(string inputText) private static TBoundMember BindMemberAndAnalyze(string inputText) where TBoundMember : BoundMember { var boundMember = TestUtils.BindMember(inputText); - new ControlFlowAnalyzer().VisitBoundMember(boundMember); + new ControlFlowAnalyzer().Visit(boundMember); return boundMember; } }