Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -120,3 +120,19 @@ compiler/BlitzPlus/
.claude/settings.local.json

scripts/msbuild_blitzrcplus.bat

# Cygwin/MSYS crash dumps
*.stackdump

# Editor/runtime backup snapshots
*.bak

# Loom local build (parallels the ignored Client/Server/GUE exes above)
bin/Loom.exe

# Dated debug/test screenshots dropped directly in bin/ by the engine
# (top-level only; bin/reshade-shaders/Textures/*.png stay tracked)
bin/*.png

# Loom runtime cache (atlas/chrome layout written on launch)
data/Loom/
2 changes: 1 addition & 1 deletion compiler/BlitzForge
Submodule BlitzForge updated 53 files
+5 −0 .gitattributes
+4 −0 .github/workflows/ci.yml
+3 −0 .gitignore
+143 −0 AGENTS.md
+1 −1 ReadMe.md
+82 −0 docs/notes/bblist-bounds-checking.md
+94 −0 docs/notes/corpus-compile-sweep.md
+98 −0 docs/notes/fix-replace-empty-from-hang.md
+92 −0 docs/notes/gc-refcount-contract.md
+84 −0 docs/notes/hostip-bounds.md
+110 −0 docs/notes/legacy-release-keyword.md
+79 −0 docs/notes/legacy-test-keyword-identifier.md
+78 −0 docs/notes/math-conversion-coverage.md
+94 −0 docs/notes/modern-language-reference.md
+84 −0 docs/notes/readable-compiler-diagnostics.md
+80 −0 docs/notes/readbytes-writebytes-bounds.md
+81 −0 docs/notes/restore-audio-pan.md
+97 −0 docs/notes/sci-notation-floats.md
+78 −0 docs/notes/setranslator-exception-labels.md
+7 −1 help/language/lang_ref_basicdatatypes.html
+35 −9 help/language/lang_ref_keywords.html
+282 −0 help/language/lang_ref_modern.html
+1 −0 help/language/navbar.html
+67 −0 scripts/corpus_compile_allowlist.txt
+19 −0 scripts/fixtures/divzero.bb
+148 −0 scripts/sweep_corpus.sh
+97 −42 src/blitzrc/bbruntime/basic.cpp
+7 −6 src/blitzrc/bbruntime/bbaudio.cpp
+2 −2 src/blitzrc/bbruntime/bbaudio.h
+9 −4 src/blitzrc/bbruntime/bbbank.cpp
+10 −2 src/blitzrc/bbruntime/bbsockets.cpp
+5 −0 src/blitzrc/bbruntime/bbstring.cpp
+4 −0 src/blitzrc/bbruntime_dll/bbruntime_dll.cpp
+51 −14 src/blitzrc/blitz/main.cpp
+35 −9 src/blitzrc/compiler/parser.cpp
+26 −0 src/blitzrc/compiler/toker.cpp
+17 −0 src/blitzrc/gxruntime/gxchannel.cpp
+3 −0 src/blitzrc/gxruntime/gxchannel.h
+12 −0 src/blitzrc/gxruntime/gxsound.cpp
+4 −0 src/blitzrc/gxruntime/gxsound.h
+76 −0 test.bat
+104 −1 test.sh
+22 −0 tests/AudioPanTest.bb
+110 −0 tests/BankBoundsTest.bb
+48 −0 tests/ConversionTest.bb
+62 −1 tests/FunctionPointerTest.bb
+65 −1 tests/GarbageCollectionTest.bb
+95 −0 tests/LegacyKeywordIdentifierTest.bb
+83 −0 tests/ListTest.bb
+182 −0 tests/MathsTest.bb
+25 −0 tests/SocketTest.bb
+87 −0 tests/StrictElseIfScopeTest.bb
+157 −0 tests/StringTest.bb
2 changes: 1 addition & 1 deletion extras/vscode-blitz-forge
Loading