trfoldlit 0.20.22

There is a newer version of this package available.
See the version list below for details.
dotnet tool install --global trfoldlit --version 0.20.22                
This package contains a .NET tool you can call from the shell/command line.
dotnet new tool-manifest # if you are setting up this repo
dotnet tool install --local trfoldlit --version 0.20.22                
This package contains a .NET tool you can call from the shell/command line.
#tool dotnet:?package=trfoldlit&version=0.20.22                
nuke :add-package trfoldlit --version 0.20.22                

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 Compatible and additional computed target framework versions.
.NET net7.0 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

Version Downloads Last updated
0.23.8 125 11/1/2024
0.23.7 2,569 10/9/2024
0.23.6 710 9/21/2024
0.23.5 95 9/15/2024
0.23.4 126 9/7/2024
0.23.3 119 8/15/2024
0.23.2 127 6/28/2024
0.23.1 103 6/22/2024
0.23.0 186 4/25/2024
0.22.0 237 2/26/2024
0.21.16 245 11/16/2023
0.21.15 164 11/16/2023
0.21.14 134 11/15/2023
0.21.13 144 11/14/2023
0.21.12 259 10/27/2023
0.21.11 334 10/24/2023
0.21.9 303 9/27/2023
0.21.8 259 9/26/2023
0.21.7 288 9/26/2023
0.21.6 268 9/20/2023
0.21.5 201 9/18/2023
0.21.4 223 9/17/2023
0.21.3 227 9/14/2023
0.21.2 235 9/4/2023
0.21.1 373 8/15/2023
0.21.0 258 6/25/2023
0.20.27 212 6/15/2023
0.20.26 195 6/5/2023
0.20.25 201 6/3/2023
0.20.24 208 6/1/2023
0.20.23 191 5/31/2023
0.20.22 227 5/21/2023
0.20.21 236 5/15/2023
0.20.20 230 5/11/2023
0.20.19 215 5/8/2023
0.20.18 228 5/8/2023
0.20.17 238 5/4/2023
0.20.16 257 5/1/2023
0.20.15 249 4/27/2023
0.20.14 280 4/21/2023
0.20.13 300 4/13/2023
0.18.1 537 11/11/2022
0.18.0 466 11/7/2022
0.17.0 495 9/11/2022
0.16.5 531 7/29/2022
0.16.4 547 6/13/2022
0.16.3 580 5/7/2022
0.16.2 557 5/6/2022
0.16.1 555 5/5/2022
0.16.0 598 4/13/2022
0.15.1 555 4/4/2022
0.15.0 559 3/20/2022
0.14.3 582 2/27/2022
0.14.2 539 2/18/2022
0.14.1 540 1/26/2022
0.14.0 571 1/26/2022
0.13.8 556 1/14/2022
0.13.7 542 1/13/2022
0.13.6 556 1/13/2022
0.13.5 576 1/12/2022
0.13.4 546 1/11/2022
0.13.3 559 1/10/2022
0.13.2 391 12/24/2021
0.13.1 359 12/24/2021
0.13.0 379 12/23/2021
0.12.0 419 12/6/2021
0.11.5 429 10/17/2021
0.11.4 415 10/17/2021
0.11.3 415 9/28/2021
0.11.2 439 9/26/2021
0.11.1 440 9/25/2021
0.11.0 492 9/24/2021
0.10.0 422 9/9/2021
0.8.9 381 8/13/2021
0.8.8 407 8/5/2021
0.8.7 397 7/20/2021
0.8.6 438 7/13/2021
0.8.5 416 7/6/2021
0.8.4 427 6/24/2021
0.8.3 502 6/13/2021
0.8.2 409 6/8/2021
0.8.1 373 6/2/2021
0.8.0 378 5/27/2021
0.7.0 393 5/10/2021
0.6.0 400 5/3/2021
0.5.5 417 4/22/2021
0.5.0 406 4/14/2021

# trfoldlit
## Summary
Perform fold transform on grammar with literals
## Description
Reads a parse tree from stdin, replaces a string literals on
the RHS of a rule with the lexer rule LHS symbol, and writes
the modified parsing result set to stdout. The input and
output are Parse Tree Data.
## Usage
trfoldlit
## Examples
Before:
grammar Expression;
e : e ('*' | '/') e
| e ('+' | '-') e
| '(' e ')'
| ('-' | '+')* a
;
a : INT ;
INT : ('0' .. '9')+ ;
MUL : '*' ;
DIV : '/' ;
ADD : '+' ;
SUB : '-' ;
LP : '(' ;
RP : ')' ;
WS : [ \r\n\t] + -> skip ;
Command:
trparse Expression.g4 | trfoldlit | trsponge -c
After:
grammar Expression;
e : e (MUL | DIV) e
| e (ADD | SUB) e
| LP e RP
| (SUB | ADD)* a
;
a : INT ;
INT : ('0' .. '9')+ ;
MUL : '*' ;
DIV : '/' ;
ADD : '+' ;
SUB : '-' ;
LP : '(' ;
RP : ')' ;
WS : [ \r\n\t] + -> skip ;
## 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.20.22 Fixes to trconvert, trparse, and trtree. NB: not all Trash tools supported yet.