- Windows x64
- Python 3.11 or newer
- MiniLangCompilerPy with
mlc_win64.py
$compiler = "C:\path\to\MiniLangCompilerPy\mlc_win64.py"
.\build.ps1 -Compiler $compiler -AppsOnlyUse the single repository entry point:
.\test.ps1 -Compiler $compilerThe complete run is cumulative and intentionally long. Source-only changes can first be checked with:
.\test.ps1 -StaticOnlyA contribution is ready for review when:
- the source tree contains no generated executables, logs, databases, or cache files;
- relevant unit/integration tests are added or updated;
- the full cumulative suite ends with
MiniSQL 1.1.0 test suite: SUCCESS; - persistent or wire-format changes include specification, compatibility, and upgrade documentation;
- security-sensitive changes update
SECURITY.mdor the security guide.
- Retain the Apache-2.0 copyright/SPDX header in every MiniLang, Python and PowerShell source file.
- Keep
package ...as physical line 1 in importable MiniLang modules and place the license header immediately after it; the current compiler discovers imported package identities before normal comment skipping. Executable entry-point files without a package keep the header at the top. - Document every function, method, structure, enumeration and member in English. Describe contracts, ownership, side effects, errors and invariants where they matter; do not merely paraphrase individual statements.
- Explain non-obvious algorithms at the decision or invariant they depend on, especially storage layouts, recovery ordering, lock transitions, parser state, query planning and concurrent ownership.
- Keep MiniLang packages aligned with their paths.
- Preserve the existing two-space MiniLang indentation.
- Prefer explicit validation and structured MiniSQL errors over unchecked
void-producing operations. - Keep the one-launcher test contract: do not add additional root
test*.ps1files. - Do not commit
build/,data/,logs/,tmp/, generated ZIP files, or local configuration containing secrets.