├── .gitignore ├── AUTHORS ├── COPYING ├── CREDITS ├── ChangeLog ├── Makefile.am ├── README ├── TODO ├── aapl ├── .gitignore ├── COPYING ├── Makefile.am ├── README ├── avlbasic.h ├── avlcommon.h ├── avlibasic.h ├── avlikeyless.h ├── avlimap.h ├── avlimel.h ├── avlimelkey.h ├── avliset.h ├── avlitree.h ├── avlkeyless.h ├── avlmap.h ├── avlmel.h ├── avlmelkey.h ├── avlset.h ├── avltree.h ├── bstcommon.h ├── bstmap.h ├── bstset.h ├── bsttable.h ├── bubblesort.h ├── compare.h ├── dlcommon.h ├── dlist.h ├── dlistmel.h ├── dlistval.h ├── insertsort.h ├── mergesort.h ├── quicksort.h ├── resize.h ├── sbstmap.h ├── sbstset.h ├── sbsttable.h ├── svector.h ├── table.h └── vector.h ├── autogen.sh ├── configure.ac ├── contrib ├── .gitignore ├── Makefile.am ├── ragel.m4 ├── ragel.make └── unicode2ragel.rb ├── doc ├── .gitignore ├── Makefile.am ├── RELEASE_NOTES_V2 ├── RELEASE_NOTES_V3 ├── RELEASE_NOTES_V4 ├── RELEASE_NOTES_V5 ├── RELEASE_NOTES_V6 ├── bmconcat.fig ├── bmnull.fig ├── bmnum.fig ├── bmor.fig ├── bmrange.fig ├── bmregex.fig ├── comments1.fig ├── comments2.fig ├── conds1.fig ├── conds2.fig ├── dropdown.fig ├── entryguard.fig ├── exaction.fig ├── exallact.fig ├── exconcat.fig ├── exdoneact.fig ├── exinter.fig ├── exnegate.fig ├── exoption.fig ├── exor.fig ├── exoutact1.fig ├── exoutact2.fig ├── explus.fig ├── exstact.fig ├── exstar.fig ├── exstrongsubtr.fig ├── exsubtr.fig ├── extract.awk ├── finguard.fig ├── fixbackbox.awk ├── generate.lm ├── genfigs.sh ├── leftguard.fig ├── lines1.fig ├── lines2.fig ├── lmkleene.fig ├── opconcat.fig ├── opor.fig ├── opstar.fig ├── ragel-guide.tex ├── ragel-guide.txt ├── ragel.1.in ├── smallscanner.fig └── stembed.fig ├── examples ├── .gitignore ├── Makefile.am ├── README ├── atoi.rl ├── awkemu.rl ├── awkequiv.awk ├── clang.rl ├── concurrent.rl ├── cppscan.lex ├── cppscan.rec ├── cppscan.rl ├── format.rl ├── go │ ├── .gitignore │ ├── Makefile │ ├── README │ ├── atoi.rl │ ├── rpn.rl │ ├── url.rl │ └── url_authority.rl ├── gotocallret.rl ├── mailbox.rl ├── ocaml │ ├── .gitignore │ ├── Makefile │ ├── README │ ├── atoi.rl │ ├── clang.rl │ ├── cond.rl │ ├── gotocallret.rl │ ├── rpn.rl │ ├── scan1.rl │ ├── scan2.rl │ ├── t.ml │ ├── test.ml │ ├── url.rl │ └── url_authority.rl ├── params.rl ├── pullscan.rl ├── rlscan.rl ├── statechart.rl └── uri.rl ├── issues ├── 1.txt ├── 11.txt ├── 12.txt ├── 2.txt ├── 252.txt ├── 254.txt ├── 255.txt ├── 256.txt ├── 291.txt ├── 292.txt ├── 293.txt ├── 3.txt ├── 301.txt ├── 302.txt ├── 306.txt ├── 307.txt ├── 311.txt ├── 319.txt ├── 320.txt ├── 321.txt ├── 334.txt ├── 338.txt ├── 339.txt ├── 4.txt ├── 5.txt ├── 7.txt ├── 8.txt ├── 9.txt ├── 97.txt ├── 98.txt ├── 99.txt └── closed │ ├── 10.txt │ ├── 100.txt │ ├── 101.txt │ ├── 155.txt │ ├── 244.txt │ ├── 250.txt │ ├── 251.txt │ ├── 259.txt │ ├── 263.txt │ ├── 264.txt │ ├── 265.txt │ ├── 266.txt │ ├── 267.txt │ ├── 268.txt │ └── 6.txt ├── ragel-d.vim ├── ragel-java.vim ├── ragel-m.vim ├── ragel.vim ├── src ├── .gitignore ├── Makefile.am ├── allocgen.cc ├── buffer.h ├── c │ ├── .gitignore │ ├── Makefile.am │ ├── binary.cc │ ├── binary.h │ ├── binexp.cc │ ├── binexp.h │ ├── binloop.cc │ ├── binloop.h │ ├── codegen.cc │ ├── codegen.h │ ├── flat.cc │ ├── flat.h │ ├── flatexp.cc │ ├── flatexp.h │ ├── flatloop.cc │ ├── flatloop.h │ ├── goto.cc │ ├── goto.h │ ├── gotoexp.cc │ ├── gotoexp.h │ ├── gotoloop.cc │ ├── gotoloop.h │ ├── ipgoto.cc │ ├── ipgoto.h │ ├── split.cc │ └── split.h ├── common.cc ├── common.h ├── crack │ ├── .gitignore │ ├── Makefile.am │ ├── crack.cc │ └── crack.h ├── cs │ ├── .gitignore │ ├── Makefile.am │ ├── codegen.cc │ ├── codegen.h │ ├── fflat.cc │ ├── fflat.h │ ├── fgoto.cc │ ├── fgoto.h │ ├── flat.cc │ ├── flat.h │ ├── ftable.cc │ ├── ftable.h │ ├── goto.cc │ ├── goto.h │ ├── ipgoto.cc │ ├── ipgoto.h │ ├── split.cc │ ├── split.h │ ├── table.cc │ └── table.h ├── d │ ├── .gitignore │ ├── Makefile.am │ ├── codegen.cc │ ├── codegen.h │ ├── fflat.cc │ ├── fflat.h │ ├── fgoto.cc │ ├── fgoto.h │ ├── flat.cc │ ├── flat.h │ ├── ftable.cc │ ├── ftable.h │ ├── goto.cc │ ├── goto.h │ ├── ipgoto.cc │ ├── ipgoto.h │ ├── split.cc │ ├── split.h │ ├── table.cc │ └── table.h ├── dot │ ├── .gitignore │ ├── Makefile.am │ ├── dot.cc │ ├── dot.h │ └── dotcodegen-orig.cc ├── fsmap.cc ├── fsmattach.cc ├── fsmbase.cc ├── fsmcond.cc ├── fsmgraph.cc ├── fsmgraph.h ├── fsmmin.cc ├── fsmstate.cc ├── gendata.cc ├── gendata.h ├── go │ ├── .gitignore │ ├── Makefile.am │ ├── codegen.cc │ ├── codegen.h │ ├── fflat.cc │ ├── fflat.h │ ├── fgoto.cc │ ├── fgoto.h │ ├── flat.cc │ ├── flat.h │ ├── ftable.cc │ ├── ftable.h │ ├── goto.cc │ ├── goto.h │ ├── ipgoto.cc │ ├── ipgoto.h │ ├── table.cc │ ├── table.h │ ├── tablish.cc │ └── tablish.h ├── inputdata.cc ├── inputdata.h ├── java │ ├── .gitignore │ ├── Makefile.am │ ├── java.cc │ └── java.h ├── main.cc ├── ml │ ├── .gitignore │ ├── Makefile.am │ ├── codegen.cc │ ├── codegen.h │ ├── fflat.cc │ ├── fflat.h │ ├── fgoto.cc │ ├── fgoto.h │ ├── flat.cc │ ├── flat.h │ ├── ftable.cc │ ├── ftable.h │ ├── goto.cc │ ├── goto.h │ ├── table.cc │ └── table.h ├── parsedata.cc ├── parsedata.h ├── parsetree.cc ├── parsetree.h ├── pcheck.h ├── ragel.h ├── rbx │ ├── .gitignore │ ├── Makefile.am │ ├── goto.cc │ └── goto.h ├── redfsm.cc ├── redfsm.h ├── rlparse.kh ├── rlparse.kl ├── rlscan.h ├── rlscan.rl ├── ruby │ ├── .gitignore │ ├── Makefile.am │ ├── codegen.cc │ ├── codegen.h │ ├── fflat.cc │ ├── fflat.h │ ├── flat.cc │ ├── flat.h │ ├── ftable.cc │ ├── ftable.h │ ├── table.cc │ └── table.h ├── xml │ ├── .gitignore │ ├── Makefile.am │ ├── xml.cc │ └── xml.h ├── xmlparse.kh ├── xmlparse.kl ├── xmlscan.rl └── xmltags.gperf └── test ├── .gitignore ├── Makefile.am ├── README ├── atoi1.rl ├── atoi2.rl ├── atoi3.rl ├── awkemu.rl ├── builtin.rl ├── call1.rl ├── call2.rl ├── call3.rl ├── checkeofact.txl ├── clang1.rl ├── clang2.rl ├── clang3.rl ├── clang4.rl ├── cond1.rl ├── cond2.rl ├── cond3.rl ├── cond4.rl ├── cond5.rl ├── cond6.rl ├── cond7.rl ├── conderr.rl ├── cppscan1.h ├── cppscan1.rl ├── cppscan2.rl ├── cppscan3.rl ├── cppscan4.rl ├── cppscan5.rl ├── cppscan6.rl ├── element1.rl ├── element2.rl ├── element3.rl ├── eofact.h ├── eofact.rl ├── erract1.rl ├── erract2.rl ├── erract3.rl ├── erract4.rl ├── erract5.rl ├── erract6.rl ├── erract7.rl ├── erract8.rl ├── erract9.rl ├── export1.rl ├── export2.rl ├── export3.rl ├── export4.rl ├── fnext1.rl ├── forder1.rl ├── forder2.rl ├── forder3.rl ├── gotocallret1.rl ├── gotocallret2.rl ├── high1.rl ├── high2.rl ├── high3.rl ├── import1.rl ├── include1.rl ├── include2.rl ├── java1.rl ├── java2.rl ├── keller1.rl ├── langtrans_c.sh ├── langtrans_c.txl ├── langtrans_csharp.sh ├── langtrans_csharp.txl ├── langtrans_d.sh ├── langtrans_d.txl ├── langtrans_go.sh ├── langtrans_go.txl ├── langtrans_java.sh ├── langtrans_java.txl ├── langtrans_ruby.sh ├── langtrans_ruby.txl ├── lmgoto.rl ├── mailbox1.h ├── mailbox1.rl ├── mailbox2.rl ├── mailbox3.rl ├── minimize1.rl ├── patact.rl ├── ragel.lm ├── range.rl ├── recdescent1.rl ├── recdescent2.rl ├── recdescent3.rl ├── repetition.rl ├── rlscan.rl ├── ruby1.rl ├── runtests.in ├── scan1.rl ├── scan2.rl ├── scan3.rl ├── scan4.rl ├── stateact1.rl ├── statechart1.rl ├── strings1.rl ├── strings2.h ├── strings2.rl ├── testcase.txl ├── tokstart1.rl ├── union.rl ├── xml.rl └── xmlcommon.rl /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | See CREDITS. 2 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/COPYING -------------------------------------------------------------------------------- /CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/CREDITS -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/ChangeLog -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/Makefile.am -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/README -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/TODO -------------------------------------------------------------------------------- /aapl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/aapl/.gitignore -------------------------------------------------------------------------------- /aapl/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/aapl/COPYING -------------------------------------------------------------------------------- /aapl/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/aapl/Makefile.am -------------------------------------------------------------------------------- /aapl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/aapl/README -------------------------------------------------------------------------------- /aapl/avlbasic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/aapl/avlbasic.h -------------------------------------------------------------------------------- /aapl/avlcommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/aapl/avlcommon.h -------------------------------------------------------------------------------- /aapl/avlibasic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/aapl/avlibasic.h -------------------------------------------------------------------------------- /aapl/avlikeyless.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/aapl/avlikeyless.h -------------------------------------------------------------------------------- /aapl/avlimap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/aapl/avlimap.h -------------------------------------------------------------------------------- /aapl/avlimel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/aapl/avlimel.h -------------------------------------------------------------------------------- /aapl/avlimelkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/aapl/avlimelkey.h -------------------------------------------------------------------------------- /aapl/avliset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/aapl/avliset.h -------------------------------------------------------------------------------- /aapl/avlitree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/aapl/avlitree.h -------------------------------------------------------------------------------- /aapl/avlkeyless.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/aapl/avlkeyless.h -------------------------------------------------------------------------------- /aapl/avlmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/aapl/avlmap.h -------------------------------------------------------------------------------- /aapl/avlmel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/aapl/avlmel.h -------------------------------------------------------------------------------- /aapl/avlmelkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/aapl/avlmelkey.h -------------------------------------------------------------------------------- /aapl/avlset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/aapl/avlset.h -------------------------------------------------------------------------------- /aapl/avltree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/aapl/avltree.h -------------------------------------------------------------------------------- /aapl/bstcommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/aapl/bstcommon.h -------------------------------------------------------------------------------- /aapl/bstmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/aapl/bstmap.h -------------------------------------------------------------------------------- /aapl/bstset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/aapl/bstset.h -------------------------------------------------------------------------------- /aapl/bsttable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/aapl/bsttable.h -------------------------------------------------------------------------------- /aapl/bubblesort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/aapl/bubblesort.h -------------------------------------------------------------------------------- /aapl/compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/aapl/compare.h -------------------------------------------------------------------------------- /aapl/dlcommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/aapl/dlcommon.h -------------------------------------------------------------------------------- /aapl/dlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/aapl/dlist.h -------------------------------------------------------------------------------- /aapl/dlistmel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/aapl/dlistmel.h -------------------------------------------------------------------------------- /aapl/dlistval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/aapl/dlistval.h -------------------------------------------------------------------------------- /aapl/insertsort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/aapl/insertsort.h -------------------------------------------------------------------------------- /aapl/mergesort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/aapl/mergesort.h -------------------------------------------------------------------------------- /aapl/quicksort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/aapl/quicksort.h -------------------------------------------------------------------------------- /aapl/resize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/aapl/resize.h -------------------------------------------------------------------------------- /aapl/sbstmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/aapl/sbstmap.h -------------------------------------------------------------------------------- /aapl/sbstset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/aapl/sbstset.h -------------------------------------------------------------------------------- /aapl/sbsttable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/aapl/sbsttable.h -------------------------------------------------------------------------------- /aapl/svector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/aapl/svector.h -------------------------------------------------------------------------------- /aapl/table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/aapl/table.h -------------------------------------------------------------------------------- /aapl/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/aapl/vector.h -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/configure.ac -------------------------------------------------------------------------------- /contrib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/contrib/.gitignore -------------------------------------------------------------------------------- /contrib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/contrib/Makefile.am -------------------------------------------------------------------------------- /contrib/ragel.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/contrib/ragel.m4 -------------------------------------------------------------------------------- /contrib/ragel.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/contrib/ragel.make -------------------------------------------------------------------------------- /contrib/unicode2ragel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/contrib/unicode2ragel.rb -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/doc/.gitignore -------------------------------------------------------------------------------- /doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/doc/Makefile.am -------------------------------------------------------------------------------- /doc/RELEASE_NOTES_V2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/doc/RELEASE_NOTES_V2 -------------------------------------------------------------------------------- /doc/RELEASE_NOTES_V3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/doc/RELEASE_NOTES_V3 -------------------------------------------------------------------------------- /doc/RELEASE_NOTES_V4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/doc/RELEASE_NOTES_V4 -------------------------------------------------------------------------------- /doc/RELEASE_NOTES_V5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/doc/RELEASE_NOTES_V5 -------------------------------------------------------------------------------- /doc/RELEASE_NOTES_V6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/doc/RELEASE_NOTES_V6 -------------------------------------------------------------------------------- /doc/bmconcat.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/doc/bmconcat.fig -------------------------------------------------------------------------------- /doc/bmnull.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/doc/bmnull.fig -------------------------------------------------------------------------------- /doc/bmnum.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/doc/bmnum.fig -------------------------------------------------------------------------------- /doc/bmor.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/doc/bmor.fig -------------------------------------------------------------------------------- /doc/bmrange.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/doc/bmrange.fig -------------------------------------------------------------------------------- /doc/bmregex.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/doc/bmregex.fig -------------------------------------------------------------------------------- /doc/comments1.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/doc/comments1.fig -------------------------------------------------------------------------------- /doc/comments2.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/doc/comments2.fig -------------------------------------------------------------------------------- /doc/conds1.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/doc/conds1.fig -------------------------------------------------------------------------------- /doc/conds2.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/doc/conds2.fig -------------------------------------------------------------------------------- /doc/dropdown.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/doc/dropdown.fig -------------------------------------------------------------------------------- /doc/entryguard.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/doc/entryguard.fig -------------------------------------------------------------------------------- /doc/exaction.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/doc/exaction.fig -------------------------------------------------------------------------------- /doc/exallact.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/doc/exallact.fig -------------------------------------------------------------------------------- /doc/exconcat.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/doc/exconcat.fig -------------------------------------------------------------------------------- /doc/exdoneact.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/doc/exdoneact.fig -------------------------------------------------------------------------------- /doc/exinter.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/doc/exinter.fig -------------------------------------------------------------------------------- /doc/exnegate.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/doc/exnegate.fig -------------------------------------------------------------------------------- /doc/exoption.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/doc/exoption.fig -------------------------------------------------------------------------------- /doc/exor.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/doc/exor.fig -------------------------------------------------------------------------------- /doc/exoutact1.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/doc/exoutact1.fig -------------------------------------------------------------------------------- /doc/exoutact2.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/doc/exoutact2.fig -------------------------------------------------------------------------------- /doc/explus.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/doc/explus.fig -------------------------------------------------------------------------------- /doc/exstact.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/doc/exstact.fig -------------------------------------------------------------------------------- /doc/exstar.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/doc/exstar.fig -------------------------------------------------------------------------------- /doc/exstrongsubtr.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/doc/exstrongsubtr.fig -------------------------------------------------------------------------------- /doc/exsubtr.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/doc/exsubtr.fig -------------------------------------------------------------------------------- /doc/extract.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/doc/extract.awk -------------------------------------------------------------------------------- /doc/finguard.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/doc/finguard.fig -------------------------------------------------------------------------------- /doc/fixbackbox.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/doc/fixbackbox.awk -------------------------------------------------------------------------------- /doc/generate.lm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/doc/generate.lm -------------------------------------------------------------------------------- /doc/genfigs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/doc/genfigs.sh -------------------------------------------------------------------------------- /doc/leftguard.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/doc/leftguard.fig -------------------------------------------------------------------------------- /doc/lines1.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/doc/lines1.fig -------------------------------------------------------------------------------- /doc/lines2.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/doc/lines2.fig -------------------------------------------------------------------------------- /doc/lmkleene.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/doc/lmkleene.fig -------------------------------------------------------------------------------- /doc/opconcat.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/doc/opconcat.fig -------------------------------------------------------------------------------- /doc/opor.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/doc/opor.fig -------------------------------------------------------------------------------- /doc/opstar.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/doc/opstar.fig -------------------------------------------------------------------------------- /doc/ragel-guide.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/doc/ragel-guide.tex -------------------------------------------------------------------------------- /doc/ragel-guide.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/doc/ragel-guide.txt -------------------------------------------------------------------------------- /doc/ragel.1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/doc/ragel.1.in -------------------------------------------------------------------------------- /doc/smallscanner.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/doc/smallscanner.fig -------------------------------------------------------------------------------- /doc/stembed.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/doc/stembed.fig -------------------------------------------------------------------------------- /examples/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/examples/.gitignore -------------------------------------------------------------------------------- /examples/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/examples/Makefile.am -------------------------------------------------------------------------------- /examples/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/examples/README -------------------------------------------------------------------------------- /examples/atoi.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/examples/atoi.rl -------------------------------------------------------------------------------- /examples/awkemu.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/examples/awkemu.rl -------------------------------------------------------------------------------- /examples/awkequiv.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/examples/awkequiv.awk -------------------------------------------------------------------------------- /examples/clang.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/examples/clang.rl -------------------------------------------------------------------------------- /examples/concurrent.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/examples/concurrent.rl -------------------------------------------------------------------------------- /examples/cppscan.lex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/examples/cppscan.lex -------------------------------------------------------------------------------- /examples/cppscan.rec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/examples/cppscan.rec -------------------------------------------------------------------------------- /examples/cppscan.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/examples/cppscan.rl -------------------------------------------------------------------------------- /examples/format.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/examples/format.rl -------------------------------------------------------------------------------- /examples/go/.gitignore: -------------------------------------------------------------------------------- 1 | /*.dot 2 | /*.go 3 | /atoi 4 | /rpn 5 | /url 6 | -------------------------------------------------------------------------------- /examples/go/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/examples/go/Makefile -------------------------------------------------------------------------------- /examples/go/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/examples/go/README -------------------------------------------------------------------------------- /examples/go/atoi.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/examples/go/atoi.rl -------------------------------------------------------------------------------- /examples/go/rpn.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/examples/go/rpn.rl -------------------------------------------------------------------------------- /examples/go/url.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/examples/go/url.rl -------------------------------------------------------------------------------- /examples/go/url_authority.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/examples/go/url_authority.rl -------------------------------------------------------------------------------- /examples/gotocallret.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/examples/gotocallret.rl -------------------------------------------------------------------------------- /examples/mailbox.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/examples/mailbox.rl -------------------------------------------------------------------------------- /examples/ocaml/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/examples/ocaml/.gitignore -------------------------------------------------------------------------------- /examples/ocaml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/examples/ocaml/Makefile -------------------------------------------------------------------------------- /examples/ocaml/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/examples/ocaml/README -------------------------------------------------------------------------------- /examples/ocaml/atoi.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/examples/ocaml/atoi.rl -------------------------------------------------------------------------------- /examples/ocaml/clang.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/examples/ocaml/clang.rl -------------------------------------------------------------------------------- /examples/ocaml/cond.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/examples/ocaml/cond.rl -------------------------------------------------------------------------------- /examples/ocaml/gotocallret.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/examples/ocaml/gotocallret.rl -------------------------------------------------------------------------------- /examples/ocaml/rpn.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/examples/ocaml/rpn.rl -------------------------------------------------------------------------------- /examples/ocaml/scan1.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/examples/ocaml/scan1.rl -------------------------------------------------------------------------------- /examples/ocaml/scan2.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/examples/ocaml/scan2.rl -------------------------------------------------------------------------------- /examples/ocaml/t.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/examples/ocaml/t.ml -------------------------------------------------------------------------------- /examples/ocaml/test.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/examples/ocaml/test.ml -------------------------------------------------------------------------------- /examples/ocaml/url.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/examples/ocaml/url.rl -------------------------------------------------------------------------------- /examples/ocaml/url_authority.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/examples/ocaml/url_authority.rl -------------------------------------------------------------------------------- /examples/params.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/examples/params.rl -------------------------------------------------------------------------------- /examples/pullscan.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/examples/pullscan.rl -------------------------------------------------------------------------------- /examples/rlscan.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/examples/rlscan.rl -------------------------------------------------------------------------------- /examples/statechart.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/examples/statechart.rl -------------------------------------------------------------------------------- /examples/uri.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/examples/uri.rl -------------------------------------------------------------------------------- /issues/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/issues/1.txt -------------------------------------------------------------------------------- /issues/11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/issues/11.txt -------------------------------------------------------------------------------- /issues/12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/issues/12.txt -------------------------------------------------------------------------------- /issues/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/issues/2.txt -------------------------------------------------------------------------------- /issues/252.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/issues/252.txt -------------------------------------------------------------------------------- /issues/254.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/issues/254.txt -------------------------------------------------------------------------------- /issues/255.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/issues/255.txt -------------------------------------------------------------------------------- /issues/256.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/issues/256.txt -------------------------------------------------------------------------------- /issues/291.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/issues/291.txt -------------------------------------------------------------------------------- /issues/292.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/issues/292.txt -------------------------------------------------------------------------------- /issues/293.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/issues/293.txt -------------------------------------------------------------------------------- /issues/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/issues/3.txt -------------------------------------------------------------------------------- /issues/301.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/issues/301.txt -------------------------------------------------------------------------------- /issues/302.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/issues/302.txt -------------------------------------------------------------------------------- /issues/306.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/issues/306.txt -------------------------------------------------------------------------------- /issues/307.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/issues/307.txt -------------------------------------------------------------------------------- /issues/311.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/issues/311.txt -------------------------------------------------------------------------------- /issues/319.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/issues/319.txt -------------------------------------------------------------------------------- /issues/320.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/issues/320.txt -------------------------------------------------------------------------------- /issues/321.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/issues/321.txt -------------------------------------------------------------------------------- /issues/334.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/issues/334.txt -------------------------------------------------------------------------------- /issues/338.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/issues/338.txt -------------------------------------------------------------------------------- /issues/339.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/issues/339.txt -------------------------------------------------------------------------------- /issues/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/issues/4.txt -------------------------------------------------------------------------------- /issues/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/issues/5.txt -------------------------------------------------------------------------------- /issues/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/issues/7.txt -------------------------------------------------------------------------------- /issues/8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/issues/8.txt -------------------------------------------------------------------------------- /issues/9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/issues/9.txt -------------------------------------------------------------------------------- /issues/97.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/issues/97.txt -------------------------------------------------------------------------------- /issues/98.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/issues/98.txt -------------------------------------------------------------------------------- /issues/99.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/issues/99.txt -------------------------------------------------------------------------------- /issues/closed/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/issues/closed/10.txt -------------------------------------------------------------------------------- /issues/closed/100.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/issues/closed/100.txt -------------------------------------------------------------------------------- /issues/closed/101.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/issues/closed/101.txt -------------------------------------------------------------------------------- /issues/closed/155.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/issues/closed/155.txt -------------------------------------------------------------------------------- /issues/closed/244.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/issues/closed/244.txt -------------------------------------------------------------------------------- /issues/closed/250.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/issues/closed/250.txt -------------------------------------------------------------------------------- /issues/closed/251.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/issues/closed/251.txt -------------------------------------------------------------------------------- /issues/closed/259.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/issues/closed/259.txt -------------------------------------------------------------------------------- /issues/closed/263.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/issues/closed/263.txt -------------------------------------------------------------------------------- /issues/closed/264.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/issues/closed/264.txt -------------------------------------------------------------------------------- /issues/closed/265.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/issues/closed/265.txt -------------------------------------------------------------------------------- /issues/closed/266.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/issues/closed/266.txt -------------------------------------------------------------------------------- /issues/closed/267.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/issues/closed/267.txt -------------------------------------------------------------------------------- /issues/closed/268.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/issues/closed/268.txt -------------------------------------------------------------------------------- /issues/closed/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/issues/closed/6.txt -------------------------------------------------------------------------------- /ragel-d.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/ragel-d.vim -------------------------------------------------------------------------------- /ragel-java.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/ragel-java.vim -------------------------------------------------------------------------------- /ragel-m.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/ragel-m.vim -------------------------------------------------------------------------------- /ragel.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/ragel.vim -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/allocgen.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/allocgen.cc -------------------------------------------------------------------------------- /src/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/buffer.h -------------------------------------------------------------------------------- /src/c/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/c/.gitignore -------------------------------------------------------------------------------- /src/c/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/c/Makefile.am -------------------------------------------------------------------------------- /src/c/binary.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/c/binary.cc -------------------------------------------------------------------------------- /src/c/binary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/c/binary.h -------------------------------------------------------------------------------- /src/c/binexp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/c/binexp.cc -------------------------------------------------------------------------------- /src/c/binexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/c/binexp.h -------------------------------------------------------------------------------- /src/c/binloop.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/c/binloop.cc -------------------------------------------------------------------------------- /src/c/binloop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/c/binloop.h -------------------------------------------------------------------------------- /src/c/codegen.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/c/codegen.cc -------------------------------------------------------------------------------- /src/c/codegen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/c/codegen.h -------------------------------------------------------------------------------- /src/c/flat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/c/flat.cc -------------------------------------------------------------------------------- /src/c/flat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/c/flat.h -------------------------------------------------------------------------------- /src/c/flatexp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/c/flatexp.cc -------------------------------------------------------------------------------- /src/c/flatexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/c/flatexp.h -------------------------------------------------------------------------------- /src/c/flatloop.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/c/flatloop.cc -------------------------------------------------------------------------------- /src/c/flatloop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/c/flatloop.h -------------------------------------------------------------------------------- /src/c/goto.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/c/goto.cc -------------------------------------------------------------------------------- /src/c/goto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/c/goto.h -------------------------------------------------------------------------------- /src/c/gotoexp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/c/gotoexp.cc -------------------------------------------------------------------------------- /src/c/gotoexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/c/gotoexp.h -------------------------------------------------------------------------------- /src/c/gotoloop.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/c/gotoloop.cc -------------------------------------------------------------------------------- /src/c/gotoloop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/c/gotoloop.h -------------------------------------------------------------------------------- /src/c/ipgoto.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/c/ipgoto.cc -------------------------------------------------------------------------------- /src/c/ipgoto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/c/ipgoto.h -------------------------------------------------------------------------------- /src/c/split.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/c/split.cc -------------------------------------------------------------------------------- /src/c/split.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/c/split.h -------------------------------------------------------------------------------- /src/common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/common.cc -------------------------------------------------------------------------------- /src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/common.h -------------------------------------------------------------------------------- /src/crack/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/crack/.gitignore -------------------------------------------------------------------------------- /src/crack/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/crack/Makefile.am -------------------------------------------------------------------------------- /src/crack/crack.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/crack/crack.cc -------------------------------------------------------------------------------- /src/crack/crack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/crack/crack.h -------------------------------------------------------------------------------- /src/cs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/cs/.gitignore -------------------------------------------------------------------------------- /src/cs/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/cs/Makefile.am -------------------------------------------------------------------------------- /src/cs/codegen.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/cs/codegen.cc -------------------------------------------------------------------------------- /src/cs/codegen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/cs/codegen.h -------------------------------------------------------------------------------- /src/cs/fflat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/cs/fflat.cc -------------------------------------------------------------------------------- /src/cs/fflat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/cs/fflat.h -------------------------------------------------------------------------------- /src/cs/fgoto.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/cs/fgoto.cc -------------------------------------------------------------------------------- /src/cs/fgoto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/cs/fgoto.h -------------------------------------------------------------------------------- /src/cs/flat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/cs/flat.cc -------------------------------------------------------------------------------- /src/cs/flat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/cs/flat.h -------------------------------------------------------------------------------- /src/cs/ftable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/cs/ftable.cc -------------------------------------------------------------------------------- /src/cs/ftable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/cs/ftable.h -------------------------------------------------------------------------------- /src/cs/goto.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/cs/goto.cc -------------------------------------------------------------------------------- /src/cs/goto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/cs/goto.h -------------------------------------------------------------------------------- /src/cs/ipgoto.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/cs/ipgoto.cc -------------------------------------------------------------------------------- /src/cs/ipgoto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/cs/ipgoto.h -------------------------------------------------------------------------------- /src/cs/split.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/cs/split.cc -------------------------------------------------------------------------------- /src/cs/split.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/cs/split.h -------------------------------------------------------------------------------- /src/cs/table.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/cs/table.cc -------------------------------------------------------------------------------- /src/cs/table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/cs/table.h -------------------------------------------------------------------------------- /src/d/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/d/.gitignore -------------------------------------------------------------------------------- /src/d/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/d/Makefile.am -------------------------------------------------------------------------------- /src/d/codegen.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/d/codegen.cc -------------------------------------------------------------------------------- /src/d/codegen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/d/codegen.h -------------------------------------------------------------------------------- /src/d/fflat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/d/fflat.cc -------------------------------------------------------------------------------- /src/d/fflat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/d/fflat.h -------------------------------------------------------------------------------- /src/d/fgoto.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/d/fgoto.cc -------------------------------------------------------------------------------- /src/d/fgoto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/d/fgoto.h -------------------------------------------------------------------------------- /src/d/flat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/d/flat.cc -------------------------------------------------------------------------------- /src/d/flat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/d/flat.h -------------------------------------------------------------------------------- /src/d/ftable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/d/ftable.cc -------------------------------------------------------------------------------- /src/d/ftable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/d/ftable.h -------------------------------------------------------------------------------- /src/d/goto.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/d/goto.cc -------------------------------------------------------------------------------- /src/d/goto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/d/goto.h -------------------------------------------------------------------------------- /src/d/ipgoto.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/d/ipgoto.cc -------------------------------------------------------------------------------- /src/d/ipgoto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/d/ipgoto.h -------------------------------------------------------------------------------- /src/d/split.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/d/split.cc -------------------------------------------------------------------------------- /src/d/split.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/d/split.h -------------------------------------------------------------------------------- /src/d/table.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/d/table.cc -------------------------------------------------------------------------------- /src/d/table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/d/table.h -------------------------------------------------------------------------------- /src/dot/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/dot/.gitignore -------------------------------------------------------------------------------- /src/dot/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/dot/Makefile.am -------------------------------------------------------------------------------- /src/dot/dot.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/dot/dot.cc -------------------------------------------------------------------------------- /src/dot/dot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/dot/dot.h -------------------------------------------------------------------------------- /src/dot/dotcodegen-orig.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/dot/dotcodegen-orig.cc -------------------------------------------------------------------------------- /src/fsmap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/fsmap.cc -------------------------------------------------------------------------------- /src/fsmattach.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/fsmattach.cc -------------------------------------------------------------------------------- /src/fsmbase.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/fsmbase.cc -------------------------------------------------------------------------------- /src/fsmcond.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/fsmcond.cc -------------------------------------------------------------------------------- /src/fsmgraph.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/fsmgraph.cc -------------------------------------------------------------------------------- /src/fsmgraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/fsmgraph.h -------------------------------------------------------------------------------- /src/fsmmin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/fsmmin.cc -------------------------------------------------------------------------------- /src/fsmstate.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/fsmstate.cc -------------------------------------------------------------------------------- /src/gendata.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/gendata.cc -------------------------------------------------------------------------------- /src/gendata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/gendata.h -------------------------------------------------------------------------------- /src/go/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/go/.gitignore -------------------------------------------------------------------------------- /src/go/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/go/Makefile.am -------------------------------------------------------------------------------- /src/go/codegen.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/go/codegen.cc -------------------------------------------------------------------------------- /src/go/codegen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/go/codegen.h -------------------------------------------------------------------------------- /src/go/fflat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/go/fflat.cc -------------------------------------------------------------------------------- /src/go/fflat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/go/fflat.h -------------------------------------------------------------------------------- /src/go/fgoto.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/go/fgoto.cc -------------------------------------------------------------------------------- /src/go/fgoto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/go/fgoto.h -------------------------------------------------------------------------------- /src/go/flat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/go/flat.cc -------------------------------------------------------------------------------- /src/go/flat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/go/flat.h -------------------------------------------------------------------------------- /src/go/ftable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/go/ftable.cc -------------------------------------------------------------------------------- /src/go/ftable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/go/ftable.h -------------------------------------------------------------------------------- /src/go/goto.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/go/goto.cc -------------------------------------------------------------------------------- /src/go/goto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/go/goto.h -------------------------------------------------------------------------------- /src/go/ipgoto.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/go/ipgoto.cc -------------------------------------------------------------------------------- /src/go/ipgoto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/go/ipgoto.h -------------------------------------------------------------------------------- /src/go/table.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/go/table.cc -------------------------------------------------------------------------------- /src/go/table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/go/table.h -------------------------------------------------------------------------------- /src/go/tablish.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/go/tablish.cc -------------------------------------------------------------------------------- /src/go/tablish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/go/tablish.h -------------------------------------------------------------------------------- /src/inputdata.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/inputdata.cc -------------------------------------------------------------------------------- /src/inputdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/inputdata.h -------------------------------------------------------------------------------- /src/java/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/java/.gitignore -------------------------------------------------------------------------------- /src/java/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/java/Makefile.am -------------------------------------------------------------------------------- /src/java/java.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/java/java.cc -------------------------------------------------------------------------------- /src/java/java.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/java/java.h -------------------------------------------------------------------------------- /src/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/main.cc -------------------------------------------------------------------------------- /src/ml/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/ml/.gitignore -------------------------------------------------------------------------------- /src/ml/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/ml/Makefile.am -------------------------------------------------------------------------------- /src/ml/codegen.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/ml/codegen.cc -------------------------------------------------------------------------------- /src/ml/codegen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/ml/codegen.h -------------------------------------------------------------------------------- /src/ml/fflat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/ml/fflat.cc -------------------------------------------------------------------------------- /src/ml/fflat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/ml/fflat.h -------------------------------------------------------------------------------- /src/ml/fgoto.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/ml/fgoto.cc -------------------------------------------------------------------------------- /src/ml/fgoto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/ml/fgoto.h -------------------------------------------------------------------------------- /src/ml/flat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/ml/flat.cc -------------------------------------------------------------------------------- /src/ml/flat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/ml/flat.h -------------------------------------------------------------------------------- /src/ml/ftable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/ml/ftable.cc -------------------------------------------------------------------------------- /src/ml/ftable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/ml/ftable.h -------------------------------------------------------------------------------- /src/ml/goto.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/ml/goto.cc -------------------------------------------------------------------------------- /src/ml/goto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/ml/goto.h -------------------------------------------------------------------------------- /src/ml/table.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/ml/table.cc -------------------------------------------------------------------------------- /src/ml/table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/ml/table.h -------------------------------------------------------------------------------- /src/parsedata.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/parsedata.cc -------------------------------------------------------------------------------- /src/parsedata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/parsedata.h -------------------------------------------------------------------------------- /src/parsetree.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/parsetree.cc -------------------------------------------------------------------------------- /src/parsetree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/parsetree.h -------------------------------------------------------------------------------- /src/pcheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/pcheck.h -------------------------------------------------------------------------------- /src/ragel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/ragel.h -------------------------------------------------------------------------------- /src/rbx/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/rbx/.gitignore -------------------------------------------------------------------------------- /src/rbx/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/rbx/Makefile.am -------------------------------------------------------------------------------- /src/rbx/goto.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/rbx/goto.cc -------------------------------------------------------------------------------- /src/rbx/goto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/rbx/goto.h -------------------------------------------------------------------------------- /src/redfsm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/redfsm.cc -------------------------------------------------------------------------------- /src/redfsm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/redfsm.h -------------------------------------------------------------------------------- /src/rlparse.kh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/rlparse.kh -------------------------------------------------------------------------------- /src/rlparse.kl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/rlparse.kl -------------------------------------------------------------------------------- /src/rlscan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/rlscan.h -------------------------------------------------------------------------------- /src/rlscan.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/rlscan.rl -------------------------------------------------------------------------------- /src/ruby/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/ruby/.gitignore -------------------------------------------------------------------------------- /src/ruby/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/ruby/Makefile.am -------------------------------------------------------------------------------- /src/ruby/codegen.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/ruby/codegen.cc -------------------------------------------------------------------------------- /src/ruby/codegen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/ruby/codegen.h -------------------------------------------------------------------------------- /src/ruby/fflat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/ruby/fflat.cc -------------------------------------------------------------------------------- /src/ruby/fflat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/ruby/fflat.h -------------------------------------------------------------------------------- /src/ruby/flat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/ruby/flat.cc -------------------------------------------------------------------------------- /src/ruby/flat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/ruby/flat.h -------------------------------------------------------------------------------- /src/ruby/ftable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/ruby/ftable.cc -------------------------------------------------------------------------------- /src/ruby/ftable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/ruby/ftable.h -------------------------------------------------------------------------------- /src/ruby/table.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/ruby/table.cc -------------------------------------------------------------------------------- /src/ruby/table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/ruby/table.h -------------------------------------------------------------------------------- /src/xml/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/xml/.gitignore -------------------------------------------------------------------------------- /src/xml/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/xml/Makefile.am -------------------------------------------------------------------------------- /src/xml/xml.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/xml/xml.cc -------------------------------------------------------------------------------- /src/xml/xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/xml/xml.h -------------------------------------------------------------------------------- /src/xmlparse.kh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/xmlparse.kh -------------------------------------------------------------------------------- /src/xmlparse.kl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/xmlparse.kl -------------------------------------------------------------------------------- /src/xmlscan.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/xmlscan.rl -------------------------------------------------------------------------------- /src/xmltags.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/src/xmltags.gperf -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/.gitignore -------------------------------------------------------------------------------- /test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/Makefile.am -------------------------------------------------------------------------------- /test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/README -------------------------------------------------------------------------------- /test/atoi1.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/atoi1.rl -------------------------------------------------------------------------------- /test/atoi2.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/atoi2.rl -------------------------------------------------------------------------------- /test/atoi3.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/atoi3.rl -------------------------------------------------------------------------------- /test/awkemu.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/awkemu.rl -------------------------------------------------------------------------------- /test/builtin.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/builtin.rl -------------------------------------------------------------------------------- /test/call1.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/call1.rl -------------------------------------------------------------------------------- /test/call2.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/call2.rl -------------------------------------------------------------------------------- /test/call3.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/call3.rl -------------------------------------------------------------------------------- /test/checkeofact.txl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/checkeofact.txl -------------------------------------------------------------------------------- /test/clang1.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/clang1.rl -------------------------------------------------------------------------------- /test/clang2.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/clang2.rl -------------------------------------------------------------------------------- /test/clang3.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/clang3.rl -------------------------------------------------------------------------------- /test/clang4.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/clang4.rl -------------------------------------------------------------------------------- /test/cond1.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/cond1.rl -------------------------------------------------------------------------------- /test/cond2.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/cond2.rl -------------------------------------------------------------------------------- /test/cond3.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/cond3.rl -------------------------------------------------------------------------------- /test/cond4.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/cond4.rl -------------------------------------------------------------------------------- /test/cond5.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/cond5.rl -------------------------------------------------------------------------------- /test/cond6.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/cond6.rl -------------------------------------------------------------------------------- /test/cond7.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/cond7.rl -------------------------------------------------------------------------------- /test/conderr.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/conderr.rl -------------------------------------------------------------------------------- /test/cppscan1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/cppscan1.h -------------------------------------------------------------------------------- /test/cppscan1.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/cppscan1.rl -------------------------------------------------------------------------------- /test/cppscan2.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/cppscan2.rl -------------------------------------------------------------------------------- /test/cppscan3.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/cppscan3.rl -------------------------------------------------------------------------------- /test/cppscan4.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/cppscan4.rl -------------------------------------------------------------------------------- /test/cppscan5.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/cppscan5.rl -------------------------------------------------------------------------------- /test/cppscan6.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/cppscan6.rl -------------------------------------------------------------------------------- /test/element1.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/element1.rl -------------------------------------------------------------------------------- /test/element2.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/element2.rl -------------------------------------------------------------------------------- /test/element3.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/element3.rl -------------------------------------------------------------------------------- /test/eofact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/eofact.h -------------------------------------------------------------------------------- /test/eofact.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/eofact.rl -------------------------------------------------------------------------------- /test/erract1.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/erract1.rl -------------------------------------------------------------------------------- /test/erract2.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/erract2.rl -------------------------------------------------------------------------------- /test/erract3.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/erract3.rl -------------------------------------------------------------------------------- /test/erract4.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/erract4.rl -------------------------------------------------------------------------------- /test/erract5.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/erract5.rl -------------------------------------------------------------------------------- /test/erract6.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/erract6.rl -------------------------------------------------------------------------------- /test/erract7.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/erract7.rl -------------------------------------------------------------------------------- /test/erract8.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/erract8.rl -------------------------------------------------------------------------------- /test/erract9.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/erract9.rl -------------------------------------------------------------------------------- /test/export1.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/export1.rl -------------------------------------------------------------------------------- /test/export2.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/export2.rl -------------------------------------------------------------------------------- /test/export3.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/export3.rl -------------------------------------------------------------------------------- /test/export4.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/export4.rl -------------------------------------------------------------------------------- /test/fnext1.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/fnext1.rl -------------------------------------------------------------------------------- /test/forder1.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/forder1.rl -------------------------------------------------------------------------------- /test/forder2.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/forder2.rl -------------------------------------------------------------------------------- /test/forder3.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/forder3.rl -------------------------------------------------------------------------------- /test/gotocallret1.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/gotocallret1.rl -------------------------------------------------------------------------------- /test/gotocallret2.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/gotocallret2.rl -------------------------------------------------------------------------------- /test/high1.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/high1.rl -------------------------------------------------------------------------------- /test/high2.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/high2.rl -------------------------------------------------------------------------------- /test/high3.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/high3.rl -------------------------------------------------------------------------------- /test/import1.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/import1.rl -------------------------------------------------------------------------------- /test/include1.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/include1.rl -------------------------------------------------------------------------------- /test/include2.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/include2.rl -------------------------------------------------------------------------------- /test/java1.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/java1.rl -------------------------------------------------------------------------------- /test/java2.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/java2.rl -------------------------------------------------------------------------------- /test/keller1.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/keller1.rl -------------------------------------------------------------------------------- /test/langtrans_c.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/langtrans_c.sh -------------------------------------------------------------------------------- /test/langtrans_c.txl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/langtrans_c.txl -------------------------------------------------------------------------------- /test/langtrans_csharp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/langtrans_csharp.sh -------------------------------------------------------------------------------- /test/langtrans_csharp.txl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/langtrans_csharp.txl -------------------------------------------------------------------------------- /test/langtrans_d.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/langtrans_d.sh -------------------------------------------------------------------------------- /test/langtrans_d.txl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/langtrans_d.txl -------------------------------------------------------------------------------- /test/langtrans_go.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/langtrans_go.sh -------------------------------------------------------------------------------- /test/langtrans_go.txl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/langtrans_go.txl -------------------------------------------------------------------------------- /test/langtrans_java.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/langtrans_java.sh -------------------------------------------------------------------------------- /test/langtrans_java.txl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/langtrans_java.txl -------------------------------------------------------------------------------- /test/langtrans_ruby.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/langtrans_ruby.sh -------------------------------------------------------------------------------- /test/langtrans_ruby.txl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/langtrans_ruby.txl -------------------------------------------------------------------------------- /test/lmgoto.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/lmgoto.rl -------------------------------------------------------------------------------- /test/mailbox1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/mailbox1.h -------------------------------------------------------------------------------- /test/mailbox1.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/mailbox1.rl -------------------------------------------------------------------------------- /test/mailbox2.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/mailbox2.rl -------------------------------------------------------------------------------- /test/mailbox3.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/mailbox3.rl -------------------------------------------------------------------------------- /test/minimize1.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/minimize1.rl -------------------------------------------------------------------------------- /test/patact.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/patact.rl -------------------------------------------------------------------------------- /test/ragel.lm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/ragel.lm -------------------------------------------------------------------------------- /test/range.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/range.rl -------------------------------------------------------------------------------- /test/recdescent1.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/recdescent1.rl -------------------------------------------------------------------------------- /test/recdescent2.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/recdescent2.rl -------------------------------------------------------------------------------- /test/recdescent3.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/recdescent3.rl -------------------------------------------------------------------------------- /test/repetition.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/repetition.rl -------------------------------------------------------------------------------- /test/rlscan.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/rlscan.rl -------------------------------------------------------------------------------- /test/ruby1.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/ruby1.rl -------------------------------------------------------------------------------- /test/runtests.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/runtests.in -------------------------------------------------------------------------------- /test/scan1.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/scan1.rl -------------------------------------------------------------------------------- /test/scan2.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/scan2.rl -------------------------------------------------------------------------------- /test/scan3.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/scan3.rl -------------------------------------------------------------------------------- /test/scan4.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/scan4.rl -------------------------------------------------------------------------------- /test/stateact1.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/stateact1.rl -------------------------------------------------------------------------------- /test/statechart1.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/statechart1.rl -------------------------------------------------------------------------------- /test/strings1.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/strings1.rl -------------------------------------------------------------------------------- /test/strings2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/strings2.h -------------------------------------------------------------------------------- /test/strings2.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/strings2.rl -------------------------------------------------------------------------------- /test/testcase.txl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/testcase.txl -------------------------------------------------------------------------------- /test/tokstart1.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/tokstart1.rl -------------------------------------------------------------------------------- /test/union.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/union.rl -------------------------------------------------------------------------------- /test/xml.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/xml.rl -------------------------------------------------------------------------------- /test/xmlcommon.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antage/ragel-go/HEAD/test/xmlcommon.rl --------------------------------------------------------------------------------