Skip to content

Latest commit

 

History

History
27 lines (23 loc) · 538 Bytes

workflow.md

File metadata and controls

27 lines (23 loc) · 538 Bytes

Workflow

Our workflow is presented by the flowchart below. The workflow starts from the circle at the top.

flowchart TD
  O(( ))
  G(Grammar)
  P(Parser)
  A(Actions)
  M1{ }
  I(Input)
  M2{ }
  R(Result)
  O -->|Write grammar| G
  G -->|Generate parser by 'rcomp'| M1
  M1 --> P & A
  A -->|Change actions| A
  O -->|Prepare input| I
  P & A & I --> M2
  M2 -->|Parse input by 'cargo run'| R
Loading

➡️ Next: Grammar File Format

📘 Back: Table of contents