Configure | Create Parsing History - AJ-comp/Compiler GitHub Wiki
This chapter explains how to create parsing history every files. The parsing history shows how parsing is proceed so it can to check where the parsing error is fired and why the parsing error is fired. You have to read the manual for Compiler basic configure before read this.
To create parsing history we have to select option when parsing. if you execute a ajbuild console program directly you have to do as below.
- Create solution and project and add project to solution. I will assume that you created project and solution as below.
if you don't know how to do this you have to read this first.
- Create main.aj (file name is not matter) in the project folder
- Download the library source files and add it into project folder. the result project environment has to be as below.
- Good! Let's build through command "ajbuild build C:\ajtest --history".
- After build you can see csv files in [ProjectPath]/bin/Debug/ folder as below.
- Each csv file show parsing process for each file as below.
If you use in VS Code, you have to configure tasks.json as below.
And build and it will create csv files in bin/Debug folder.
щ symbol is used as end marker symbol because $ symbol is expected to use.
Thank you for reading. if you have any problem inform me.