3 Commits

Author SHA1 Message Date
11b41eda30 chore(gitignore): exclude repo-root test scratch + DDL-bug macro filenames
Two sources of cruft kept showing up in `git status` after running
FiveSql2 tests from the repo directory:

  1. Scratch tables from standalone bench PRGs (t.dbf, b.dbf, s.dbf,
     p.dbf). Anchored to root only so tracked fixtures in subdirs
     (area_a.dbf, customers.dbf, idxadv.dbf, ...) stay unaffected.

  2. Literal filenames like `Lower(cTable) + "_pk.ntx".ntx` — this
     is a FiveSql2 DDL bug where a macro-substituted index filename
     fails to evaluate and ends up as the actual filename. Ignoring
     the `Lower*.ntx`/`Lower*.cdx` pattern keeps the garbage out of
     commits. The underlying DDL bug needs a separate fix.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-14 10:12:11 +09:00
468aa1efbd fix: add cmd/five/main.go to repo (was excluded by .gitignore)
- Changed .gitignore: "five" → "/five" to only ignore root binary
- cmd/five/main.go (702 LOC): Five CLI entry point (run, build, gen, debug, frb)

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-11 11:57:56 +09:00
59568f3301 Five v0.9 — Harbour + Go fusion language
- Compiler: PP → Lexer → Parser → Analyzer → Gengo pipeline
- Parser: 232/236 (98%) Harbour compatibility, registry-based dispatch
- RTL: 351 Harbour-compatible functions
- RDD: DBF/NTX/CDX engines with Rushmore bitmap optimization
- Go Interop: IMPORT + pkg.Func() + obj:Method() with FastPath (15M calls/sec)
- HB_FUNC API: Full Harbour C API compatible Go bridge
- Concurrency: SPAWN/LAUNCH/GOROUTINE, <-, WATCH, PARALLEL FOR, ASYNC/AWAIT
- Extensions: Multi-return, DEFER, Slice, f-string, Nil-safe ?:, CONST
- Macro Compiler: Runtime AST parsing and evaluation
- Debugger: TUI debugger with source display, breakpoints, stepping
- FRB: Native + Pcode dual mode runtime binary
- Tests: 13 packages ALL PASS

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-31 09:41:50 +09:00