New binding mechanism: Expression tracking

This commit is contained in:
2023-08-15 13:17:42 +02:00
parent 335433562a
commit b792639635
35 changed files with 971 additions and 311 deletions

View File

@@ -1,4 +1,5 @@
using Microsoft.Extensions.Logging;
using System.Diagnostics;
using Microsoft.Extensions.Logging;
namespace TerminalUI;
@@ -32,14 +33,15 @@ public class EventLoop : IEventLoop
{
foreach (var action in _permanentQueue)
{
try
{
/*try
{*/
action();
}
/*}
catch (Exception e)
{
Debug.Fail(e.Message);
_logger.LogError(e, "Error while processing action in permanent queue");
}
}*/
}
}
}