Add breakpoints to UIX interpreter

This commit is contained in:
Yoshi Askharoun
2023-04-28 18:46:37 -05:00
parent 472361c839
commit 862c87fa66
2 changed files with 13 additions and 2 deletions
+4 -1
View File
@@ -1,4 +1,5 @@
using System.Xml;
using System.Collections.Generic;
using System.Xml;
#if NET40_OR_GREATER || NET6_0_OR_GREATER
using DataMappingModelsList = System.Collections.ObjectModel.ObservableCollection<Microsoft.Iris.Debug.DataMappingModel>;
@@ -20,6 +21,8 @@ namespace Microsoft.Iris.Debug
public bool GenerateDataMappingModels { get; set; } = false;
public DataMappingModelsList DataMappingModels { get; } = new DataMappingModelsList();
public List<string> Breakpoints { get; } = new List<string>();
public Bridge Bridge { get; } =
#if OPENZUNE
new(OwlCore.Remoting.RemotingMode.None);