MEGATRON



LOG | FILES | OVERVIEW


│
├── .gitignore
├── CMakeLists.txt
├── README.txt
├── doc
│     ├── bulgarian
│     │           ├── makefile
│     │           └── project.mg
│     └── en.txt
├── src
│     ├── backend
│     │         ├── backend.c
│     │         ├── backend.h
│     │         └── targets
│     │                   ├── C
│     │                   │   ├── ast_to_c.c
│     │                   │   └── ast_to_c.h
│     │                   └── print
│     │                           ├── print.c
│     │                           └── print.h
│     ├── frontend
│     │          ├── lexer.c
│     │          ├── lexer.h
│     │          ├── parser.c
│     │          └── parser.h
│     ├── main.c
│     ├── misc
│     │      ├── map.c
│     │      ├── map.h
│     │      ├── queue.c
│     │      ├── queue.h
│     │      ├── stack.c
│     │      └── stack.h
│     └── program
│               ├── program.c
│               └── program.h
└── tests
        ├── output.c
        ├── test
        ├── test2
        ├── test3
        ├── test4
        ├── test5
        └── test6