trfold 0.17.0
See the version list below for details.
dotnet tool install --global trfold --version 0.17.0
dotnet new tool-manifest
dotnet tool install --local trfold --version 0.17.0
#tool dotnet:?package=trfold&version=0.17.0
nuke :add-package trfold --version 0.17.0
Replace a sequence of symbols on the RHS of a rule with the rule LHS symbol.
This program is part of the Trash toolkit.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net6.0 is compatible. 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.18.1 | 976 | 11/11/2022 |
| 0.18.0 | 740 | 11/7/2022 |
| 0.17.0 | 839 | 9/11/2022 |
| 0.16.5 | 856 | 7/29/2022 |
| 0.16.4 | 882 | 6/13/2022 |
| 0.16.3 | 889 | 5/7/2022 |
| 0.16.2 | 821 | 5/6/2022 |
| 0.16.1 | 906 | 5/5/2022 |
| 0.16.0 | 930 | 4/13/2022 |
| 0.15.1 | 895 | 4/4/2022 |
| 0.15.0 | 865 | 3/20/2022 |
| 0.14.3 | 952 | 2/27/2022 |
| 0.14.2 | 859 | 2/18/2022 |
| 0.14.1 | 861 | 1/26/2022 |
| 0.14.0 | 833 | 1/26/2022 |
| 0.13.8 | 913 | 1/14/2022 |
| 0.13.7 | 875 | 1/13/2022 |
| 0.13.6 | 926 | 1/13/2022 |
| 0.13.5 | 915 | 1/12/2022 |
| 0.13.4 | 926 | 1/11/2022 |
# trfold
## Summary
Perform fold transform on a grammar
## Description
Reads a parse tree from stdin, replaces a sequence of symbols on
the RHS of a rule with the rule LHS symbol, and writes the modified tree
to stdout. The input and output are Parse Tree Data.
## Usage
trfold <string>
## Example
trparse A.g4 | trfold "//parserRuleSpec[RULE_REF/text() = 'normalAnnotation']"
## Notes
If you are running MSYS2 on Windows, you may notice that XPaths are not being
processed by this command correctly. To avoid the Bash shell from altering
XPaths, type _export MSYS2_ARG_CONV_EXCL="*"_, then execute your command.
## Current version
0.17.0 -- Fixes for all tools (piped data structures), but in particular trparse. Add trperf, trpiggy.