You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, thanks for this tool. This is really a question and not an issue as am not conversant with ASTs. Is this something that can be run from the command line or as gradle task? If possible (gradle better), could you give me some pointers? At the moment am running this as a unit test and printing the output to a file to be checked later. Ideally, I want to create a gradle task pointing to a dir to load all files in there and print this AST output to a file for analysis later on.
The text was updated successfully, but these errors were encountered:
saintjab
changed the title
Running at command line
Running at command line or as gradle task
Jun 29, 2021
*.kt.txt is the given test data
*.raw.ast.txt the the raw ast as returned by antlr
*.raw.info.txt contains line numbers
*.summary.ast.txt the ast after calling summary
*.summary.info.txt line numbers after calling sumary
It is possible to used it from gradle, but you have to implement everything ourselves. I'm using a kotlin main function to call my private code parser project from the command line. I think this is the easiest way.
Hi, thanks for this tool. This is really a question and not an issue as am not conversant with ASTs. Is this something that can be run from the command line or as gradle task? If possible (gradle better), could you give me some pointers? At the moment am running this as a unit test and printing the output to a file to be checked later. Ideally, I want to create a gradle task pointing to a dir to load all files in there and print this AST output to a file for analysis later on.
The text was updated successfully, but these errors were encountered: