2 instantiations of PythonExportedValueTreeNode
Aspire.Hosting.CodeGeneration.Python (2)
AtsPythonCodeGenerator.cs (2)
1050
var root = new
PythonExportedValueTreeNode
();
1058
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);
950
var
root = BuildExportedValueTree(exportedValues);
962
PythonExportedValueTreeNode
node,
1048
private static
PythonExportedValueTreeNode
BuildExportedValueTree(IReadOnlyList<AtsExportedValueInfo> exportedValues)
1050
var
root = new PythonExportedValueTreeNode();
1053
var
current = root;
1056
if (!current.Children.TryGetValue(segment, out
var
child))