2 instantiations of PythonExportedValueTreeNode
Aspire.Hosting.CodeGeneration.Python (2)
AtsPythonCodeGenerator.cs (2)
975
var root = new
PythonExportedValueTreeNode
();
983
child = new
PythonExportedValueTreeNode
();
7 references to PythonExportedValueTreeNode
Aspire.Hosting.CodeGeneration.Python (7)
AtsPythonCodeGenerator.cs (7)
29
public Dictionary<string,
PythonExportedValueTreeNode
> Children { get; } = new(StringComparer.Ordinal);
875
var
root = BuildExportedValueTree(exportedValues);
887
PythonExportedValueTreeNode
node,
973
private static
PythonExportedValueTreeNode
BuildExportedValueTree(IReadOnlyList<AtsExportedValueInfo> exportedValues)
975
var
root = new PythonExportedValueTreeNode();
978
var
current = root;
981
if (!current.Children.TryGetValue(segment, out
var
child))