This repository was archived by the owner on Feb 10, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTargetStructure.txt
More file actions
37 lines (36 loc) · 1.6 KB
/
TargetStructure.txt
File metadata and controls
37 lines (36 loc) · 1.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
AntScript/
├─ README.md # Project intro + usage
├─ LICENSE # License
├─ requirements.md # Python dependencies (PyQt6, etc.)
├─ setup.py # (optional) for packaging
│
├─ ide/ # IDE (PyQt6-based editor)
│ ├─ __init__.py
│ ├─ main.py # Entry point for the IDE
│ ├─ editor.py # Code editor widget (tabs, syntax highlighting)
│ ├─ console.py # Output console widget
│ ├─ toolbar.py # Menu/toolbar setup
│ ├─ syntax_highlighter.py # AntScript keyword coloring
│ └─ resources/ # Icons, themes, CSS
│
├─ compiler/ # AntScript compiler/interpreter
│ ├─ __init__.py
│ ├─ lexer.py # Tokenizer (keywords, symbols)
│ ├─ parser.py # Builds AST from tokens
│ ├─ interpreter.py # Runs AntScript code (egg stage)
│ └─ errors.py # Custom error handling w/ line numbers
│
├─ examples/ # Sample AntScript programs
│ ├─ hello_world.ant
│ ├─ cube_demo.ant
│ └─ test_game.ant
│
├─ docs/ # Documentation
│ ├─ syntax.md # AntScript syntax proposal
│ ├─ roadmap.md # Stages (egg → larva → ant…)
│ └─ TargetStructure.md # Your diagram above
│
└─ tests/ # Automated tests
├─ test_lexer.py
├─ test_parser.py
└─ test_interpreter.py