2 instantiations of ExportedValueTreeNode
Aspire.Hosting.CodeGeneration.TypeScript (2)
TypeScriptApiProjector.cs (2)
925
var root = new
ExportedValueTreeNode
();
934
child = new
ExportedValueTreeNode
();
7 references to ExportedValueTreeNode
Aspire.Hosting.CodeGeneration.TypeScript (7)
TypeScriptApiProjector.cs (7)
679
var
root = BuildExportedValueTree(exportedValues);
702
ExportedValueTreeNode
node,
923
private static
ExportedValueTreeNode
BuildExportedValueTree(IReadOnlyList<AtsExportedValueInfo> exportedValues)
925
var
root = new ExportedValueTreeNode();
929
var
current = root;
932
if (!current.Children.TryGetValue(segment, out
var
child))
3044
public Dictionary<string,
ExportedValueTreeNode
> Children { get; } = new(StringComparer.Ordinal);