diff options
author | Ryo Nihei <nihei.dev@gmail.com> | 2022-05-09 20:41:54 +0900 |
---|---|---|
committer | Ryo Nihei <nihei.dev@gmail.com> | 2022-05-10 23:14:52 +0900 |
commit | 0ff00d27b2fd524c76fcfac1836b7aad8fe03069 (patch) | |
tree | fb52505656b0b9f66ac6efafa8a05f82ad54b015 /README.md | |
parent | Add ordered symbol notation (diff) | |
download | cotia-0ff00d27b2fd524c76fcfac1836b7aad8fe03069.tar.gz cotia-0ff00d27b2fd524c76fcfac1836b7aad8fe03069.tar.xz |
Change the suffix of a description file from -description.json to -report.json
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -115,10 +115,10 @@ When `vartan parse` command successfully parses the input data, it prints a CST #### 3.2. Resolve conflicts -`vartan compile` command also generates a description file having `-description.json` suffix along with a parsing table. This file describes each state in the parsing table in detail. If your grammar contains conflicts, see `Conflicts` and `States` sections of this file. Using `vartan show` command, you can see the description file in a readable format. +`vartan compile` command also generates a report named `*-report.json`. This file describes each state in the parsing table in detail. If your grammar contains conflicts, see `Conflicts` and `States` sections of this file. Using `vartan show` command, you can see the report in a readable format. ```sh -$ vartan show expr-description.json +$ vartan show expr-report.json ``` ### 4. Generate a parser |