├── Dockerfile ├── LICENSE ├── README ├── analyze.d ├── bst.d ├── bug.d ├── cent_.d ├── d.d ├── dd.d ├── declaration.d ├── dependencies.sh ├── dockerbuild.sh ├── dockerrun.sh ├── error.d ├── expression.d ├── hashtable.d ├── interpret.d ├── lexer.d ├── makefile ├── module_.d ├── namedcharentities ├── operators.d ├── parser.d ├── platform.d ├── reservedversions ├── rope_.d ├── runtests.d ├── scheduler.d ├── scope_.d ├── semantic.d ├── statement.d ├── terminal.d ├── test ├── .gitignore ├── ackermann.d ├── adt.d ├── aggr.d ├── ali_bbeaver.ddd ├── alias_.d ├── anonstructlit.d ├── attinfer.d ├── aziz.d ├── b.sh ├── bear_nqueens.d ├── bloat.d ├── bug.d ├── cdgen.d ├── cent_.d ├── cintp.d ├── cintpcvt.d ├── constraint.d ├── context.d ├── ctfe_bench.d ├── ctfe_nqueens.d ├── ctferange.d ├── ctferet.d ├── deadalnix.d ├── demo.d ├── depc.d ├── deprecated.d ├── dmdperfbug.ddd ├── enhancements.d ├── enumdecl.d ├── evalo.d ├── fancy.d ├── foreach_.d ├── fsarr.d ├── ifti.d ├── iftioverload.d ├── implconv.d ├── importexp.d ├── incomplete.d ├── inherit.d ├── inoutres.d ├── intprt.d ├── intrange.d ├── isexp.d ├── lambda.d ├── layout.d ├── lenientt.d ├── lit.d ├── lookup.d ├── maria.d ├── matchcall.d ├── misc.d ├── mixin_.d ├── modules │ ├── ambig │ │ ├── a.d │ │ ├── b.d │ │ └── b.d~ │ ├── imports │ │ ├── a.d │ │ └── b.d │ ├── privimp │ │ ├── a.d │ │ ├── a.d~ │ │ ├── b.d │ │ ├── c.d │ │ ├── d.d │ │ └── e.d │ ├── searchpath │ │ └── path.d │ ├── ttt │ │ ├── a.d │ │ ├── a.d~ │ │ ├── b.d │ │ ├── c.d │ │ ├── d.d │ │ ├── e.d │ │ ├── f.d │ │ ├── g.d │ │ └── h.d │ └── tttt │ │ ├── TODO │ │ ├── TODO~ │ │ ├── analyze.d │ │ ├── bug.d │ │ ├── d.d │ │ ├── d.d~ │ │ ├── dd.d │ │ ├── declaration.d │ │ ├── error.d │ │ ├── error.d~ │ │ ├── expression.d │ │ ├── expression.d~ │ │ ├── hashtable.d │ │ ├── hashtable.d~ │ │ ├── interpret.d │ │ ├── lexer.d │ │ ├── lexer.d~ │ │ ├── makefile │ │ ├── module_.d │ │ ├── namedcharentities │ │ ├── operators.d │ │ ├── out │ │ ├── parser.d │ │ ├── parser.d~ │ │ ├── rope_.d │ │ ├── runtests.d │ │ ├── scheduler.d │ │ ├── scope_.d │ │ ├── semantic.d │ │ ├── semantic.d~ │ │ ├── statement.d │ │ ├── statement.d~ │ │ ├── terminal.d │ │ ├── tt.d │ │ ├── type.d │ │ ├── util.d │ │ ├── util.d~ │ │ ├── variant.d │ │ ├── visitors.d │ │ └── vrange.d ├── mxin.d ├── opover.d ├── overload.d ├── parse.d ├── parse2.d ├── parseerror.d ├── retinference.d ├── return.d ├── searchpath.d ├── self.d ├── staticif.d ├── stdlib.d ├── stm.d ├── struct_.d ├── switch_.d ├── t.d ├── t2.d ├── tcombi.d ├── template_.d ├── templbintree.d ├── test.d ├── tmplanalysis.d ├── tmploverload.d ├── tovrl.d ├── tt1.d ├── tt2.d ├── tttt.d ├── ttuple.d ├── ttupleperf.d ├── typeof_.d ├── ufcsimplcall.d ├── uniacc.d ├── unittest.d ├── with_.d └── ycomb.d ├── tt.d ├── type.d ├── util.d ├── variant.d ├── visitors.d └── vrange.d /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/README -------------------------------------------------------------------------------- /analyze.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/analyze.d -------------------------------------------------------------------------------- /bst.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/bst.d -------------------------------------------------------------------------------- /bug.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/bug.d -------------------------------------------------------------------------------- /cent_.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/cent_.d -------------------------------------------------------------------------------- /d.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/d.d -------------------------------------------------------------------------------- /dd.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/dd.d -------------------------------------------------------------------------------- /declaration.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/declaration.d -------------------------------------------------------------------------------- /dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/dependencies.sh -------------------------------------------------------------------------------- /dockerbuild.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | docker build . --tag compiler 3 | -------------------------------------------------------------------------------- /dockerrun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/dockerrun.sh -------------------------------------------------------------------------------- /error.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/error.d -------------------------------------------------------------------------------- /expression.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/expression.d -------------------------------------------------------------------------------- /hashtable.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/hashtable.d -------------------------------------------------------------------------------- /interpret.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/interpret.d -------------------------------------------------------------------------------- /lexer.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/lexer.d -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/makefile -------------------------------------------------------------------------------- /module_.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/module_.d -------------------------------------------------------------------------------- /namedcharentities: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/namedcharentities -------------------------------------------------------------------------------- /operators.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/operators.d -------------------------------------------------------------------------------- /parser.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/parser.d -------------------------------------------------------------------------------- /platform.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/platform.d -------------------------------------------------------------------------------- /reservedversions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/reservedversions -------------------------------------------------------------------------------- /rope_.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/rope_.d -------------------------------------------------------------------------------- /runtests.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/runtests.d -------------------------------------------------------------------------------- /scheduler.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/scheduler.d -------------------------------------------------------------------------------- /scope_.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/scope_.d -------------------------------------------------------------------------------- /semantic.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/semantic.d -------------------------------------------------------------------------------- /statement.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/statement.d -------------------------------------------------------------------------------- /terminal.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/terminal.d -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- 1 | .gitignore 2 | modules/* 3 | *~ -------------------------------------------------------------------------------- /test/ackermann.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/ackermann.d -------------------------------------------------------------------------------- /test/adt.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/adt.d -------------------------------------------------------------------------------- /test/aggr.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/aggr.d -------------------------------------------------------------------------------- /test/ali_bbeaver.ddd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/ali_bbeaver.ddd -------------------------------------------------------------------------------- /test/alias_.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/alias_.d -------------------------------------------------------------------------------- /test/anonstructlit.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/anonstructlit.d -------------------------------------------------------------------------------- /test/attinfer.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/attinfer.d -------------------------------------------------------------------------------- /test/aziz.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/aziz.d -------------------------------------------------------------------------------- /test/b.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/b.sh -------------------------------------------------------------------------------- /test/bear_nqueens.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/bear_nqueens.d -------------------------------------------------------------------------------- /test/bloat.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/bloat.d -------------------------------------------------------------------------------- /test/bug.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/bug.d -------------------------------------------------------------------------------- /test/cdgen.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/cdgen.d -------------------------------------------------------------------------------- /test/cent_.d: -------------------------------------------------------------------------------- 1 | 2 | enum cent a=1L<<63; 3 | static assert(a*a != 0L); // TODO 4 | pragma(msg, a*a); 5 | -------------------------------------------------------------------------------- /test/cintp.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/cintp.d -------------------------------------------------------------------------------- /test/cintpcvt.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/cintpcvt.d -------------------------------------------------------------------------------- /test/constraint.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/constraint.d -------------------------------------------------------------------------------- /test/context.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/context.d -------------------------------------------------------------------------------- /test/ctfe_bench.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/ctfe_bench.d -------------------------------------------------------------------------------- /test/ctfe_nqueens.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/ctfe_nqueens.d -------------------------------------------------------------------------------- /test/ctferange.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/ctferange.d -------------------------------------------------------------------------------- /test/ctferet.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/ctferet.d -------------------------------------------------------------------------------- /test/deadalnix.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/deadalnix.d -------------------------------------------------------------------------------- /test/demo.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/demo.d -------------------------------------------------------------------------------- /test/depc.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/depc.d -------------------------------------------------------------------------------- /test/deprecated.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/deprecated.d -------------------------------------------------------------------------------- /test/dmdperfbug.ddd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/dmdperfbug.ddd -------------------------------------------------------------------------------- /test/enhancements.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/enhancements.d -------------------------------------------------------------------------------- /test/enumdecl.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/enumdecl.d -------------------------------------------------------------------------------- /test/evalo.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/evalo.d -------------------------------------------------------------------------------- /test/fancy.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/fancy.d -------------------------------------------------------------------------------- /test/foreach_.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/foreach_.d -------------------------------------------------------------------------------- /test/fsarr.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/fsarr.d -------------------------------------------------------------------------------- /test/ifti.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/ifti.d -------------------------------------------------------------------------------- /test/iftioverload.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/iftioverload.d -------------------------------------------------------------------------------- /test/implconv.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/implconv.d -------------------------------------------------------------------------------- /test/importexp.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/importexp.d -------------------------------------------------------------------------------- /test/incomplete.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/incomplete.d -------------------------------------------------------------------------------- /test/inherit.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/inherit.d -------------------------------------------------------------------------------- /test/inoutres.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/inoutres.d -------------------------------------------------------------------------------- /test/intprt.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/intprt.d -------------------------------------------------------------------------------- /test/intrange.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/intrange.d -------------------------------------------------------------------------------- /test/isexp.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/isexp.d -------------------------------------------------------------------------------- /test/lambda.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/lambda.d -------------------------------------------------------------------------------- /test/layout.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/layout.d -------------------------------------------------------------------------------- /test/lenientt.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/lenientt.d -------------------------------------------------------------------------------- /test/lit.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/lit.d -------------------------------------------------------------------------------- /test/lookup.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/lookup.d -------------------------------------------------------------------------------- /test/maria.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/maria.d -------------------------------------------------------------------------------- /test/matchcall.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/matchcall.d -------------------------------------------------------------------------------- /test/misc.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/misc.d -------------------------------------------------------------------------------- /test/mixin_.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/mixin_.d -------------------------------------------------------------------------------- /test/modules/ambig/a.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/modules/ambig/a.d -------------------------------------------------------------------------------- /test/modules/ambig/b.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/modules/ambig/b.d -------------------------------------------------------------------------------- /test/modules/ambig/b.d~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/modules/ambig/b.d~ -------------------------------------------------------------------------------- /test/modules/imports/a.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/modules/imports/a.d -------------------------------------------------------------------------------- /test/modules/imports/b.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/modules/imports/b.d -------------------------------------------------------------------------------- /test/modules/privimp/a.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/modules/privimp/a.d -------------------------------------------------------------------------------- /test/modules/privimp/a.d~: -------------------------------------------------------------------------------- 1 | import b; 2 | 3 | enum x = y; -------------------------------------------------------------------------------- /test/modules/privimp/b.d: -------------------------------------------------------------------------------- 1 | import c; -------------------------------------------------------------------------------- /test/modules/privimp/c.d: -------------------------------------------------------------------------------- 1 | enum y = "not visible from a.d"; -------------------------------------------------------------------------------- /test/modules/privimp/d.d: -------------------------------------------------------------------------------- 1 | public import e; -------------------------------------------------------------------------------- /test/modules/privimp/e.d: -------------------------------------------------------------------------------- 1 | enum w = "visible from a.d"; -------------------------------------------------------------------------------- /test/modules/searchpath/path.d: -------------------------------------------------------------------------------- 1 | enum ok=true; 2 | -------------------------------------------------------------------------------- /test/modules/ttt/a.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/modules/ttt/a.d -------------------------------------------------------------------------------- /test/modules/ttt/a.d~: -------------------------------------------------------------------------------- 1 | public import a,b,c,d; 2 | 3 | string x = ""; // TODO! 4 | 5 | pragma(msg, typeof(x),"!!!"); -------------------------------------------------------------------------------- /test/modules/ttt/b.d: -------------------------------------------------------------------------------- 1 | public import b,c,d,e; -------------------------------------------------------------------------------- /test/modules/ttt/c.d: -------------------------------------------------------------------------------- 1 | public import c,d,e,f; 2 | -------------------------------------------------------------------------------- /test/modules/ttt/d.d: -------------------------------------------------------------------------------- 1 | public import d,e,f,g; 2 | 3 | -------------------------------------------------------------------------------- /test/modules/ttt/e.d: -------------------------------------------------------------------------------- 1 | public import e,f,g,h; 2 | -------------------------------------------------------------------------------- /test/modules/ttt/f.d: -------------------------------------------------------------------------------- 1 | public import a,b,c,d,e,f,g,h; 2 | -------------------------------------------------------------------------------- /test/modules/ttt/g.d: -------------------------------------------------------------------------------- 1 | public import a,b,c,d,e,f,g,h; 2 | -------------------------------------------------------------------------------- /test/modules/ttt/h.d: -------------------------------------------------------------------------------- 1 | public import a,b,c,d,e,f,g,h; 2 | 3 | alias immutable(char)[] string; 4 | -------------------------------------------------------------------------------- /test/modules/tttt/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/modules/tttt/TODO -------------------------------------------------------------------------------- /test/modules/tttt/TODO~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/modules/tttt/TODO~ -------------------------------------------------------------------------------- /test/modules/tttt/analyze.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/modules/tttt/analyze.d -------------------------------------------------------------------------------- /test/modules/tttt/bug.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/modules/tttt/bug.d -------------------------------------------------------------------------------- /test/modules/tttt/d.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/modules/tttt/d.d -------------------------------------------------------------------------------- /test/modules/tttt/d.d~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/modules/tttt/d.d~ -------------------------------------------------------------------------------- /test/modules/tttt/dd.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/modules/tttt/dd.d -------------------------------------------------------------------------------- /test/modules/tttt/declaration.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/modules/tttt/declaration.d -------------------------------------------------------------------------------- /test/modules/tttt/error.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/modules/tttt/error.d -------------------------------------------------------------------------------- /test/modules/tttt/error.d~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/modules/tttt/error.d~ -------------------------------------------------------------------------------- /test/modules/tttt/expression.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/modules/tttt/expression.d -------------------------------------------------------------------------------- /test/modules/tttt/expression.d~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/modules/tttt/expression.d~ -------------------------------------------------------------------------------- /test/modules/tttt/hashtable.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/modules/tttt/hashtable.d -------------------------------------------------------------------------------- /test/modules/tttt/hashtable.d~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/modules/tttt/hashtable.d~ -------------------------------------------------------------------------------- /test/modules/tttt/interpret.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/modules/tttt/interpret.d -------------------------------------------------------------------------------- /test/modules/tttt/lexer.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/modules/tttt/lexer.d -------------------------------------------------------------------------------- /test/modules/tttt/lexer.d~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/modules/tttt/lexer.d~ -------------------------------------------------------------------------------- /test/modules/tttt/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/modules/tttt/makefile -------------------------------------------------------------------------------- /test/modules/tttt/module_.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/modules/tttt/module_.d -------------------------------------------------------------------------------- /test/modules/tttt/namedcharentities: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/modules/tttt/namedcharentities -------------------------------------------------------------------------------- /test/modules/tttt/operators.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/modules/tttt/operators.d -------------------------------------------------------------------------------- /test/modules/tttt/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/modules/tttt/out -------------------------------------------------------------------------------- /test/modules/tttt/parser.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/modules/tttt/parser.d -------------------------------------------------------------------------------- /test/modules/tttt/parser.d~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/modules/tttt/parser.d~ -------------------------------------------------------------------------------- /test/modules/tttt/rope_.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/modules/tttt/rope_.d -------------------------------------------------------------------------------- /test/modules/tttt/runtests.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/modules/tttt/runtests.d -------------------------------------------------------------------------------- /test/modules/tttt/scheduler.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/modules/tttt/scheduler.d -------------------------------------------------------------------------------- /test/modules/tttt/scope_.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/modules/tttt/scope_.d -------------------------------------------------------------------------------- /test/modules/tttt/semantic.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/modules/tttt/semantic.d -------------------------------------------------------------------------------- /test/modules/tttt/semantic.d~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/modules/tttt/semantic.d~ -------------------------------------------------------------------------------- /test/modules/tttt/statement.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/modules/tttt/statement.d -------------------------------------------------------------------------------- /test/modules/tttt/statement.d~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/modules/tttt/statement.d~ -------------------------------------------------------------------------------- /test/modules/tttt/terminal.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/modules/tttt/terminal.d -------------------------------------------------------------------------------- /test/modules/tttt/tt.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/modules/tttt/tt.d -------------------------------------------------------------------------------- /test/modules/tttt/type.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/modules/tttt/type.d -------------------------------------------------------------------------------- /test/modules/tttt/util.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/modules/tttt/util.d -------------------------------------------------------------------------------- /test/modules/tttt/util.d~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/modules/tttt/util.d~ -------------------------------------------------------------------------------- /test/modules/tttt/variant.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/modules/tttt/variant.d -------------------------------------------------------------------------------- /test/modules/tttt/visitors.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/modules/tttt/visitors.d -------------------------------------------------------------------------------- /test/modules/tttt/vrange.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/modules/tttt/vrange.d -------------------------------------------------------------------------------- /test/mxin.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/mxin.d -------------------------------------------------------------------------------- /test/opover.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/opover.d -------------------------------------------------------------------------------- /test/overload.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/overload.d -------------------------------------------------------------------------------- /test/parse.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/parse.d -------------------------------------------------------------------------------- /test/parse2.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/parse2.d -------------------------------------------------------------------------------- /test/parseerror.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/parseerror.d -------------------------------------------------------------------------------- /test/retinference.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/retinference.d -------------------------------------------------------------------------------- /test/return.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/return.d -------------------------------------------------------------------------------- /test/searchpath.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/searchpath.d -------------------------------------------------------------------------------- /test/self.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/self.d -------------------------------------------------------------------------------- /test/staticif.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/staticif.d -------------------------------------------------------------------------------- /test/stdlib.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/stdlib.d -------------------------------------------------------------------------------- /test/stm.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/stm.d -------------------------------------------------------------------------------- /test/struct_.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/struct_.d -------------------------------------------------------------------------------- /test/switch_.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/switch_.d -------------------------------------------------------------------------------- /test/t.d: -------------------------------------------------------------------------------- 1 | int 2 | // error -------------------------------------------------------------------------------- /test/t2.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/tcombi.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/tcombi.d -------------------------------------------------------------------------------- /test/template_.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/template_.d -------------------------------------------------------------------------------- /test/templbintree.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/templbintree.d -------------------------------------------------------------------------------- /test/test.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/test.d -------------------------------------------------------------------------------- /test/tmplanalysis.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/tmplanalysis.d -------------------------------------------------------------------------------- /test/tmploverload.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/tmploverload.d -------------------------------------------------------------------------------- /test/tovrl.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/tovrl.d -------------------------------------------------------------------------------- /test/tt1.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/tt1.d -------------------------------------------------------------------------------- /test/tt2.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/tt2.d -------------------------------------------------------------------------------- /test/tttt.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/tttt.d -------------------------------------------------------------------------------- /test/ttuple.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/ttuple.d -------------------------------------------------------------------------------- /test/ttupleperf.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/ttupleperf.d -------------------------------------------------------------------------------- /test/typeof_.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/typeof_.d -------------------------------------------------------------------------------- /test/ufcsimplcall.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/ufcsimplcall.d -------------------------------------------------------------------------------- /test/uniacc.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/uniacc.d -------------------------------------------------------------------------------- /test/unittest.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/unittest.d -------------------------------------------------------------------------------- /test/with_.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/with_.d -------------------------------------------------------------------------------- /test/ycomb.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/test/ycomb.d -------------------------------------------------------------------------------- /tt.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/tt.d -------------------------------------------------------------------------------- /type.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/type.d -------------------------------------------------------------------------------- /util.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/util.d -------------------------------------------------------------------------------- /variant.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/variant.d -------------------------------------------------------------------------------- /visitors.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/visitors.d -------------------------------------------------------------------------------- /vrange.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgehr/d-compiler/HEAD/vrange.d --------------------------------------------------------------------------------