Fix? Cue initialization...some funky recursion stuff?

This commit is contained in:
Joel Wetzell
2020-06-10 17:19:15 -05:00
parent ce1114e78c
commit 4ecc692fec
3 changed files with 67 additions and 51 deletions
+3 -1
View File
@@ -418,10 +418,12 @@ namespace QSharp
#region Printing
public void Print()
{
foreach(var cueList in root.cues)
Console.WriteLine($"[workspace] {name}");
foreach (var cueList in root.cues)
{
cueList.Print();
}
Console.WriteLine("[workspace] End of Workspace");
}
#endregion
}