trdot 0.11.0
See the version list below for details.
dotnet tool install --global trdot --version 0.11.0
dotnet new tool-manifest
dotnet tool install --local trdot --version 0.11.0
#tool dotnet:?package=trdot&version=0.11.0
nuke :add-package trdot --version 0.11.0
Reads a tree from stdin and prints the tree as a Dot graph.
This program is part of the Trash toolkit.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 is compatible. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
This package has no dependencies.
Version | Downloads | Last updated |
---|---|---|
0.23.18 | 198 | 5/13/2025 |
0.23.17 | 209 | 3/7/2025 |
0.23.16 | 212 | 3/4/2025 |
0.23.15 | 99 | 2/25/2025 |
0.23.14 | 111 | 2/9/2025 |
0.23.13 | 98 | 1/19/2025 |
0.23.12 | 92 | 1/16/2025 |
0.23.11 | 108 | 12/18/2024 |
0.23.10 | 112 | 12/12/2024 |
0.23.9 | 106 | 11/29/2024 |
0.23.8 | 117 | 11/1/2024 |
0.23.7 | 139 | 10/9/2024 |
0.23.6 | 139 | 9/21/2024 |
0.23.5 | 121 | 9/15/2024 |
0.23.4 | 109 | 9/7/2024 |
0.23.3 | 137 | 8/15/2024 |
0.23.2 | 108 | 6/28/2024 |
0.23.1 | 135 | 6/22/2024 |
0.23.0 | 137 | 4/25/2024 |
0.22.0 | 188 | 2/26/2024 |
0.18.1 | 644 | 11/11/2022 |
0.18.0 | 488 | 11/7/2022 |
0.17.0 | 557 | 9/11/2022 |
0.16.5 | 563 | 7/29/2022 |
0.16.4 | 590 | 6/13/2022 |
0.16.3 | 593 | 5/7/2022 |
0.16.2 | 538 | 5/6/2022 |
0.16.1 | 604 | 5/5/2022 |
0.16.0 | 658 | 4/13/2022 |
0.15.1 | 613 | 4/4/2022 |
0.15.0 | 631 | 3/20/2022 |
0.14.3 | 585 | 2/27/2022 |
0.14.2 | 583 | 2/18/2022 |
0.14.1 | 608 | 1/26/2022 |
0.14.0 | 631 | 1/26/2022 |
0.13.8 | 590 | 1/14/2022 |
0.13.7 | 624 | 1/13/2022 |
0.13.6 | 571 | 1/13/2022 |
0.13.5 | 627 | 1/12/2022 |
0.13.4 | 576 | 1/11/2022 |
0.13.3 | 613 | 1/10/2022 |
0.13.2 | 404 | 12/24/2021 |
0.13.1 | 402 | 12/24/2021 |
0.13.0 | 410 | 12/23/2021 |
0.12.0 | 396 | 12/6/2021 |
0.11.5 | 540 | 10/17/2021 |
0.11.4 | 444 | 10/17/2021 |
0.11.3 | 450 | 9/28/2021 |
0.11.2 | 456 | 9/26/2021 |
0.11.1 | 514 | 9/25/2021 |
0.11.0 | 499 | 9/24/2021 |
0.10.0 | 462 | 9/9/2021 |
0.8.9 | 455 | 8/13/2021 |
0.8.8 | 473 | 8/5/2021 |
0.8.7 | 413 | 7/20/2021 |
0.8.6 | 501 | 7/13/2021 |
0.8.5 | 484 | 7/6/2021 |
# trdot
Reads a tree from stdin and prints the tree as a Dot graph.
# Usage
trdot
# Details
`trdot` reads parse tree data via stdin and outputs
a Dot graph specification. The stdout can be redirected to
save the output to a file. Or, you can copy the output and
use an online Dot graph visualizer to make a plot.
Any parse tree data can be converted to Dot, include a
parse of a grammar, the parse tree of a simple expression grammar,
or a list of parse tree nodes obtained via
[trxgrep](https://github.com/kaby76/Domemtech.Trash/tree/main/trxgrep).
# Examples
Consider the Expression grammar, obtained via
mkdir foo; cd foo; trgen; cd Generated; dotnet build
Let's parse the expression "1+2" and print the parse tree as a Dot graph:
trparse -i "1+2" | trdot
The output will be:
digraph G {
Node18643596 [label="file_"];
Node33574638 [label="expression"];
Node33736294 [label="expression"];
Node35191196 [label="atom"];
Node48285313 [label="scientific"];
Node31914638 [label="1"];
Node18796293 [label="+"];
Node34948909 [label="expression"];
Node46104728 [label="atom"];
Node12289376 [label="scientific"];
Node43495525 [label="2"];
Node55915408 [label="EOF"];
Node18643596 -> Node33574638;
Node18643596 -> Node55915408;
Node33574638 -> Node33736294;
Node33574638 -> Node18796293;
Node33574638 -> Node34948909;
Node34948909 -> Node46104728;
Node46104728 -> Node12289376;
Node12289376 -> Node43495525;
Node33736294 -> Node35191196;
Node35191196 -> Node48285313;
Node48285313 -> Node31914638;
}
# Current version
0.11.0 -- Updated trkleen. Added trreplace.