Skip to content

Commit

Permalink
Update structure
Browse files Browse the repository at this point in the history
  • Loading branch information
Lipen committed Aug 8, 2024
1 parent 5d0be84 commit 6850181
Showing 1 changed file with 21 additions and 17 deletions.
38 changes: 21 additions & 17 deletions jacodb-ets/src/test/resources/structure.txt
Original file line number Diff line number Diff line change
@@ -1,26 +1,30 @@
resources/ #
├── source/ # Sample sources (TS)
│ └── *.ts #
├── abc/ # Compiled samples (ABC)
│ └── *.abc #
├── etsir/ # EtsIR (JSON dump of ArkIR) for samples
│ ├── ast/ # EtsIR-AST for samples from `source/`
│ │ └── *.ts.json #
│ └── abc/ # EtsIR-ABC for samples from `abc/`
│ └── *.abc.json #
│ #
├── samples #
│ ├── source/ # Sample sources (TS)
│ │ └── *.ts #
│ ├── abc/ # Compiled samples (ABC)
│ │ └── *.abc #
│ ├── etsir/ # EtsIR (JSON dump of ArkIR) for samples
│ │ ├── ast/ # EtsIR-AST for samples from `source/`
│ │ │ └── *.ts.json #
│ │ └── abc/ # EtsIR-ABC for samples from `abc/`
│ │ └── *.abc.json #
│ ... #
└── projects/ # Directory for individual projects
├── <project>/ # Some individual project
│ └── ... #
├── <project>/ #
...

<root>/generated/
├── dot/ # DOT files for visualizing IRs
│ ├── *.ts.json.dot #
│ └── *.abc.json.dot #
├── pdf/ # Rendered PDFs from DOT files
│ ├── *.ts.json.pdf #
│ └── *.abc.json.pdf #
├── samples
│ ├── dot/ # DOT files for visualizing IRs
│ │ ├── *.ts.json.dot #
│ │ └── *.abc.json.dot #
│ ├── pdf/ # Rendered PDFs from DOT files
│ │ ├── *.ts.json.pdf #
│ │ └── *.abc.json.pdf #
│ ...
│ TODO: text representation
...
TODO: text representation

0 comments on commit 6850181

Please sign in to comment.