├── .github ├── tracking │ └── last_commit.txt └── workflows │ └── check-upstream.yml ├── .gitignore ├── CLAUDE.md ├── C_TO_GO_PORTING_GUIDE.md ├── LICENSE ├── PORTING_SUMMARY.md ├── QUICK_REFERENCE.md ├── README.md ├── go.mod ├── golemon.go ├── intermediate ├── README.md ├── diff.sh ├── lemon.c ├── lemonc.go └── lempar.c ├── lempar.go.tpl ├── notes.md └── tests └── lemon-test01.y /.github/tracking/last_commit.txt: -------------------------------------------------------------------------------- 1 | 2025-11-18T15:40:02Z -------------------------------------------------------------------------------- /.github/workflows/check-upstream.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopikchr/golemon/HEAD/.github/workflows/check-upstream.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopikchr/golemon/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /C_TO_GO_PORTING_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopikchr/golemon/HEAD/C_TO_GO_PORTING_GUIDE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopikchr/golemon/HEAD/LICENSE -------------------------------------------------------------------------------- /PORTING_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopikchr/golemon/HEAD/PORTING_SUMMARY.md -------------------------------------------------------------------------------- /QUICK_REFERENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopikchr/golemon/HEAD/QUICK_REFERENCE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopikchr/golemon/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/gopikchr/golemon 2 | 3 | go 1.17 4 | -------------------------------------------------------------------------------- /golemon.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopikchr/golemon/HEAD/golemon.go -------------------------------------------------------------------------------- /intermediate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopikchr/golemon/HEAD/intermediate/README.md -------------------------------------------------------------------------------- /intermediate/diff.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopikchr/golemon/HEAD/intermediate/diff.sh -------------------------------------------------------------------------------- /intermediate/lemon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopikchr/golemon/HEAD/intermediate/lemon.c -------------------------------------------------------------------------------- /intermediate/lemonc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopikchr/golemon/HEAD/intermediate/lemonc.go -------------------------------------------------------------------------------- /intermediate/lempar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopikchr/golemon/HEAD/intermediate/lempar.c -------------------------------------------------------------------------------- /lempar.go.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopikchr/golemon/HEAD/lempar.go.tpl -------------------------------------------------------------------------------- /notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopikchr/golemon/HEAD/notes.md -------------------------------------------------------------------------------- /tests/lemon-test01.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopikchr/golemon/HEAD/tests/lemon-test01.y --------------------------------------------------------------------------------