├── .cirrus.yml ├── .clang-format ├── .github └── workflows │ └── main.yml ├── .gitignore ├── .gitlab-ci.yml ├── CHANGES.md ├── CMakeLists.txt ├── CODE_OF_CONDUCT.md ├── LICENSE.txt ├── README.md ├── STABILITY.md ├── TODO.txt ├── appveyor.yml ├── cmake └── Modules │ ├── BuildDirs.cmake │ ├── ExtractLLVM.cmake │ ├── FindClang.cmake │ ├── GetLuaJIT.cmake │ └── VersionNumber.cmake ├── default.nix ├── docker ├── Dockerfile.ubuntu ├── Dockerfile.ubuntu-prebuilt-test ├── Dockerfile.ubuntu-source-test ├── Dockerfile.ubuntu-test ├── build.sh ├── compatibility_test.sh ├── install_cuda.sh └── install_script.sh ├── docs ├── CNAME ├── Gemfile ├── Gemfile.lock ├── Makefile ├── _config.yml ├── _gen.lua ├── _layouts │ └── post.html ├── _posts │ └── .gitignore ├── _terraforcpp.txt ├── about.md ├── api.md ├── community.md ├── demo.html ├── getting-started.md ├── index.md ├── javascripts │ ├── codemirror.js │ ├── lua.js │ ├── prism.js │ └── scale.fix.js ├── logo.png ├── pldi071-devito.pdf ├── pldi083-devito.pdf ├── publications.md ├── snapl-devito.pdf ├── stylesheets │ ├── codemirror.css │ ├── prism.css │ └── styles.css └── terraforcpp.html ├── format.sh ├── lib ├── parsing.t └── std.t ├── msvc ├── .gitignore └── ext │ ├── getopt.c │ ├── getopt.h │ ├── getopt_long.c │ ├── inttypes.h │ └── setjmp.h ├── nix └── cflags.patch ├── release ├── include │ └── terra │ │ └── terra.h └── share │ └── terra │ ├── LICENSE.txt │ └── README.md ├── src ├── CMakeLists.txt ├── MSVCSetupAPI.h ├── asdl.lua ├── bin2c.c ├── cudalib.lua ├── dummy.c ├── genheader.lua ├── geninternalizedfiles.lua ├── lctype.cpp ├── lctype.h ├── linenoise.cpp ├── linenoise.h ├── lj_strscan.c ├── lj_strscan.h ├── llex.cpp ├── llex.h ├── llvmheaders.h ├── llvmheaders_110.h ├── llvmheaders_120.h ├── llvmheaders_130.h ├── llvmheaders_140.h ├── llvmheaders_150.h ├── llvmheaders_160.h ├── llvmheaders_170.h ├── llvmheaders_180.h ├── lobject.cpp ├── lobject.h ├── lparser.cpp ├── lparser.h ├── lstring.cpp ├── lstring.h ├── lutil.h ├── lzio.cpp ├── lzio.h ├── main.cpp ├── strict.lua ├── tcompiler.cpp ├── tcompiler.h ├── tcompilerstate.h ├── tcuda.cpp ├── tcuda.h ├── tcwrapper.cpp ├── tcwrapper.h ├── tdebug.cpp ├── tdebug.h ├── terra.cpp ├── terralib.lua ├── terralist.lua ├── terrastate.h ├── tinline.cpp ├── tinline.h ├── tinternalizedfiles.cpp ├── tkind.cpp ├── tkind.h ├── tllvmutil.cpp ├── tllvmutil.h ├── tobj.h ├── treadnumber.c ├── treadnumber.h └── twindows.h ├── terra-scm-1.rockspec ├── tests ├── abouttocompile.t ├── addlanguage1.t ├── addressspace.t ├── aggregatearr.t ├── ainline.t ├── alignment.t ├── amdgpu_kernel.t ├── amdgpu_struct.t ├── and.t ├── anon.t ├── anon3.t ├── anonstruct.t ├── anonstruct2.t ├── antiquote1.t ├── antiquote2.t ├── antiquote3.t ├── antiquote4.t ├── antiquote5.t ├── arith.t ├── array.t ├── arraylit.t ├── arrayt.t ├── arrayt2.t ├── arrptr.t ├── asdlns.t ├── asm.t ├── atoi.t ├── atomicrmw.t ├── avx512.t ├── avxhadd.t ├── badname.t ├── benchmark_dgemm.t ├── benchmark_fannkuchredux.t ├── benchmark_nbody.t ├── benchmarks │ ├── bs.t │ ├── bs_eigen.cpp │ ├── dynfusion.t │ ├── fusion.t │ ├── makefile │ ├── raysphere.t │ ├── raysphere_eigen.cpp │ └── timing.h ├── bf.t ├── blankexp.t ├── blockescape.t ├── blocking.t ├── blocking2-fixed.t ├── blocking2.t ├── blocking3.t ├── boolcast.t ├── bounce.t ├── breaktest.t ├── bug.t ├── bug2.t ├── bug3.t ├── bug372.t ├── bug372_perf.t ├── bug372b.t ├── bug372c.t ├── bug372d.t ├── bug4.t ├── calc.t ├── call.t ├── callbackcache.t ├── canon.t ├── canon2.t ├── cast.t ├── cbool.t ├── cconv.t ├── cconv_array.t ├── cconv_more.t ├── cfgbug.t ├── chaindecl.t ├── clanginfo.t ├── class.t ├── class2.t ├── class3.t ├── class4.t ├── class5.t ├── class6.t ├── classifyfloatstructs.t ├── clean.t ├── cmpxchg.t ├── cnames.t ├── cnamespace.t ├── cnamespaces.t ├── compile_time_array.t ├── compile_time_array2.t ├── compile_time_array3.t ├── compilecallback.t ├── completec.t ├── conflict.t ├── constant.t ├── constant2.t ├── constantinits.t ├── constanttypes.t ├── constructor.t ├── cov ├── coverage.t ├── coverage2.t ├── coverage3.t ├── coverage4.t ├── crash1.t ├── crash2.t ├── cstringtest.t ├── cstruct.t ├── cstruct2.t ├── cudaagg.t ├── cudaaggregate.t ├── cudaatomic.t ├── cudaconst2.t ├── cudaglobal.t ├── cudahello.t ├── cudaoffline.t ├── cudaoo.t ├── cudaprintf.t ├── cudashared.t ├── cudatest.t ├── cudatex.t ├── cunion.t ├── cunion2.t ├── customline.t ├── customtable.t ├── cvar.t ├── declerrors.t ├── decltwice.t ├── decltwicef.t ├── def1.t ├── defaultoperator.t ├── defer.t ├── deferbreak.t ├── defercond.t ├── defercond2.t ├── defergoto.t ├── definewrong.t ├── dgemm.t ├── dgemm2.t ├── dgemm3.t ├── dgemmpaper.t ├── diffuse.t ├── disabled │ ├── crash.t │ ├── cudaldg.t │ ├── fails_recvar3.t │ ├── interface.t │ ├── interface2.t │ ├── leaktest.t │ ├── recvar.t │ ├── recvar2.t │ ├── varinit.t │ ├── varinit2.t │ └── varwithrecinit.t ├── dynlib.t ├── eager.t ├── embeddedcode1.t ├── empty.t ├── emptycalls.t ├── emptyname.t ├── emptystruct.t ├── emptytag.tt ├── enumc.t ├── evenodd.t ├── examplecompiler1.t ├── examplelanguage1.t ├── exampleparser1.t ├── exittest.t ├── explicitcast.t ├── exportdynamic.t ├── expvec.t ├── f2.t ├── fact.t ├── fail.lua ├── fails │ ├── abouttofreeze.t │ ├── arith.t │ ├── atomicrmw.t │ ├── atomicrmw2.t │ ├── atomicrmw3.t │ ├── atomicrmw4.t │ ├── attrload.t │ ├── attrload2.t │ ├── attrload3.t │ ├── attrstore.t │ ├── attrstore2.t │ ├── cast.t │ ├── comparestruct.t │ ├── constructor.t │ ├── defer.t │ ├── defer1.t │ ├── defergoto.t │ ├── defergoto2.t │ ├── dupvar.t │ ├── entrieserror.t │ ├── escapeerr.t │ ├── escapemacro.t │ ├── f0.t │ ├── f1.t │ ├── f10.t │ ├── f11.t │ ├── f12.t │ ├── f13.t │ ├── f14.t │ ├── f15.t │ ├── f16.t │ ├── f17.t │ ├── f18.t │ ├── f19.t │ ├── f2.t │ ├── f20.t │ ├── f21.t │ ├── f22.t │ ├── f23.t │ ├── f24.t │ ├── f25.t │ ├── f26.t │ ├── f27.t │ ├── f28.t │ ├── f29.t │ ├── f3.t │ ├── f30.t │ ├── f31.t │ ├── f32.t │ ├── f33.t │ ├── f34.t │ ├── f35.t │ ├── f36.t │ ├── f37.t │ ├── f38.t │ ├── f39.t │ ├── f4.t │ ├── f40.t │ ├── f41.t │ ├── f43.t │ ├── f44.t │ ├── f45.t │ ├── f46.t │ ├── f47.t │ ├── f48.t │ ├── f5.t │ ├── f7.t │ ├── f8.t │ ├── f9.t │ ├── failtrunc.t │ ├── fnindex.t │ ├── fnpointer.t │ ├── for.t │ ├── for2.t │ ├── forlist.t │ ├── forlist2.t │ ├── forlist3.t │ ├── getmethod.t │ ├── gettype.t │ ├── ifelse.t │ ├── ifelse2.t │ ├── incomplete.t │ ├── intrinsic1.t │ ├── intrinsic2.t │ ├── intrinsic3.t │ ├── intrinsic4.t │ ├── intrinsic5.t │ ├── let.t │ ├── lvaluetreelist.t │ ├── macroselect.t │ ├── metatype.t │ ├── methodantiquote.t │ ├── missingmetamethod.t │ ├── missingmethod.t │ ├── nesterror.t │ ├── nilreturn.t │ ├── nilsym.t │ ├── niltype2.t │ ├── opaque.t │ ├── opaque2.t │ ├── overload.t │ ├── overload3.t │ ├── overload4.t │ ├── quoteescape.t │ ├── quoteescape2.t │ ├── recfn.t │ ├── recpattern.t │ ├── recursivecompile.t │ ├── recursivecompile2.t │ ├── symboltest.t │ ├── symbolvar.t │ ├── symbolvar2.t │ ├── symbolvar3.t │ ├── symbolvar6.t │ ├── symbolvar7.t │ ├── symparam.t │ ├── symparam3.t │ ├── ucall.t │ ├── usercastwrong.t │ ├── veclit.t │ ├── veclit2.t │ ├── veclit3.t │ ├── vectorerror.t │ └── vectype.t ├── fakeasm.t ├── falsespec.t ├── fastcall.t ├── fastmath.t ├── fib.t ├── fib2.t ├── fmod.t ├── fnames.t ├── fncalltest.t ├── fnpointer.t ├── fnptr.t ├── fnptrc.t ├── fnptrstruct.t ├── foo.t ├── for.t ├── for2.t ├── forbreak.t ├── forlist.t ├── forlist2.t ├── forp.t ├── forsym.t ├── forwardtodef.t ├── foundintermediate.t ├── foundintermediate2.t ├── foundintermediate3.t ├── functionnoproto.t ├── gctest.t ├── gemm.t ├── getmethod.t ├── gettype.t ├── globals.t ├── globals_large.t ├── goto.t ├── goto2.t ├── gvarfault.t ├── hasbeenfrozen.t ├── hello.t ├── hello2.t ├── hexf.t ├── huge.t ├── ifelse.t ├── includec.t ├── includetwice.t ├── incomplete.t ├── incomplete2.t ├── incomplete3.t ├── incomplete4.t ├── incomplete5.t ├── incompletetypetest.t ├── incompletetypetest2.t ├── incompletetypetest3.t ├── indexing64.t ├── indexingbug.t ├── inline_c.t ├── intrinsic.t ├── isconstant.t ├── isvolatile.t ├── labelbug.t ├── latelink.t ├── lazycstring.t ├── lazylog.t ├── let1.t ├── let2.t ├── lib │ ├── addlanguage.t │ ├── barlang.t │ ├── def.t │ ├── embeddedcode.t │ ├── examplecompiler.t │ ├── examplelanguage.t │ ├── exampleparser.t │ ├── fakeimport.t │ ├── foolang.t │ ├── golike.t │ ├── javalike.t │ ├── javalikesimple.t │ ├── leak.lua │ ├── matrixtestharness.t │ ├── objc.t │ ├── pratttest.t │ ├── prof.t │ ├── soa.t │ ├── sumlanguage.t │ ├── sumlanguage2.t │ └── testlang.t ├── linklibrary.t ├── linkllvm.t ├── linkllvm2.t ├── list.t ├── localenv.t ├── localenv2.t ├── logical.t ├── luaapi.t ├── luabridge.t ├── luabridge2.t ├── luabridgefn.t ├── luabridgerec.t ├── luabridgeunion.t ├── luaterramethod.t ├── lvaluepointer.t ├── lvaluequote.t ├── lvaluetreelist.t ├── macro.t ├── macro2.t ├── macro3.t ├── macrokey.t ├── macrolet.t ├── macroselect.t ├── macrotest.t ├── malloc.t ├── mathlib.t ├── metatype.t ├── method.t ├── methodantiquote.t ├── methodmissing.t ├── methodrvalue.t ├── methodsugar.t ├── missingfields.t ├── mixed.t ├── multiconstructor.t ├── multimacro.t ├── multiterra.t ├── mytest.h ├── names.t ├── nantest.t ├── nestedcalls.t ├── nestextract.t ├── nestnoerror.t ├── new.t ├── newerrortest.t ├── nillocal.t ├── niltype.t ├── nojit.t ├── nolengthop.t ├── nonprototypec.t ├── nontemporal.t ├── noopt.t ├── noreturn.t ├── numliteral.t ├── objc.t ├── objc2.jpg ├── objc2.t ├── objtest.t ├── offsetcalc.t ├── opaquealloc.t ├── option_e.t ├── or.t ├── ordercomplete.t ├── output.t ├── overload.t ├── overload2.t ├── overload3.t ├── overloadcall.t ├── overloadmethod.t ├── overloadmethod2.t ├── overloadmethod3.t ├── overloadproduct.t ├── overloadrecv.t ├── painfulrecstruct.t ├── paren.t ├── parsecrash.t ├── parsefail.t ├── parsefail2.t ├── pattern.t ├── perfregression.lua ├── point.t ├── pointerarith.t ├── pointerlike.t ├── pow.t ├── ppltalk.t ├── ppnil.t ├── pratttest1.t ├── prec.t ├── prec2.t ├── pretty.t ├── prettyprintsym.t ├── printd.t ├── printfarray.t ├── printfloat.t ├── proxystruct.t ├── pt.t ├── pthreads.t ├── quote.t ├── quote10.t ├── quote2.t ├── quote3.t ├── quote4.t ├── quote5.t ├── quote6.t ├── quote7.t ├── quote8.t ├── quote9.t ├── quoteblock.t ├── quoteenv.t ├── quoteselect.t ├── rd.t ├── receivercasts.t ├── recfn.t ├── recoverfromerror.t ├── recstruct.t ├── recstruct2.t ├── reference │ ├── Makefile │ ├── benchmark_fannkuchredux.c │ ├── benchmark_nbody.c │ ├── matmul.cpp │ └── matmuls.cpp ├── rename.t ├── renaming.t ├── requiretwice.t ├── run ├── rvaluerecv.t ├── scc.t ├── scope.t ├── selectoverload.t ├── setname.t ├── setter.t ├── sgemm-old.t ├── sgemm.t ├── sgemm3.t ├── sgemmkernel.t ├── shallowfreeze.t ├── sharedlib.t ├── shift.t ├── signext.t ├── simple.t ├── simpleadd.t ├── simpleapply.t ├── simpleglobal.t ├── simplerec.t ├── simplestruct.t ├── simplevec.t ├── sintable.t ├── sizetests.t ├── special.t ├── speed.t ├── splitprimary.t ├── splitquote.t ├── ssimple.t ├── staticmethod.t ├── stattest.t ├── stdio.t ├── stencil.t ├── strerror.t ├── string.t ├── stringconst.t ├── struct.t ├── structarg.t ├── structcast.t ├── structconstructor.t ├── structrvalue.t ├── structsyntax.t ├── stuff.t ├── sugar.t ├── sumlanguage1.t ├── sumlanguage2.t ├── switch.t ├── symbolmangling.t ├── symbolvar.t ├── symbolvar2.t ├── symbolvar3.t ├── symbolvar4.t ├── symbolvar5.t ├── symbolvar6.t ├── symbolvar7.t ├── symparam.t ├── symparam2.t ├── symparam3.t ├── tag.tt ├── takedefinition.t ├── template.t ├── terracast.t ├── terralua.t ├── terraluamethod.t ├── terranew.t ├── test.lua ├── testdebug.t ├── testimport.t ├── testlang1.t ├── testlang2.t ├── testlog.t ├── testminmax.t ├── testrequire.t ├── teststd.t ├── testvector.t ├── torturechain.t ├── toterraexpression.t ├── twolang.t ├── typeexp.t ├── union.t ├── unm.t ├── unpacktuple.t ├── unsafesym.t ├── unstrict.t ├── usercast.t ├── ustore.t ├── vararg.t ├── varargcstring.t ├── varargluacall.t ├── varrec.broken ├── vars.t ├── vars2.t ├── vec.t ├── vecarith.t ├── veclit.t ├── vecobj.t ├── vecptr.t ├── vecsize.t ├── version.t ├── vtablerec.t ├── weirdheader.t ├── zeroargs.t ├── zeroreturn.t └── zeroreturn2.t └── travis.sh /.cirrus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/.cirrus.yml -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/CHANGES.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- 1 | release/share/terra/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | release/share/terra/README.md -------------------------------------------------------------------------------- /STABILITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/STABILITY.md -------------------------------------------------------------------------------- /TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/TODO.txt -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/appveyor.yml -------------------------------------------------------------------------------- /cmake/Modules/BuildDirs.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/cmake/Modules/BuildDirs.cmake -------------------------------------------------------------------------------- /cmake/Modules/ExtractLLVM.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/cmake/Modules/ExtractLLVM.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindClang.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/cmake/Modules/FindClang.cmake -------------------------------------------------------------------------------- /cmake/Modules/GetLuaJIT.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/cmake/Modules/GetLuaJIT.cmake -------------------------------------------------------------------------------- /cmake/Modules/VersionNumber.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/cmake/Modules/VersionNumber.cmake -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/default.nix -------------------------------------------------------------------------------- /docker/Dockerfile.ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/docker/Dockerfile.ubuntu -------------------------------------------------------------------------------- /docker/Dockerfile.ubuntu-prebuilt-test: -------------------------------------------------------------------------------- 1 | Dockerfile.ubuntu-source-test -------------------------------------------------------------------------------- /docker/Dockerfile.ubuntu-source-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/docker/Dockerfile.ubuntu-source-test -------------------------------------------------------------------------------- /docker/Dockerfile.ubuntu-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/docker/Dockerfile.ubuntu-test -------------------------------------------------------------------------------- /docker/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/docker/build.sh -------------------------------------------------------------------------------- /docker/compatibility_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/docker/compatibility_test.sh -------------------------------------------------------------------------------- /docker/install_cuda.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/docker/install_cuda.sh -------------------------------------------------------------------------------- /docker/install_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/docker/install_script.sh -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | terralang.org 2 | 3 | -------------------------------------------------------------------------------- /docs/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/docs/Gemfile -------------------------------------------------------------------------------- /docs/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/docs/Gemfile.lock -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/_gen.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/docs/_gen.lua -------------------------------------------------------------------------------- /docs/_layouts/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/docs/_layouts/post.html -------------------------------------------------------------------------------- /docs/_posts/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/_terraforcpp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/docs/_terraforcpp.txt -------------------------------------------------------------------------------- /docs/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/docs/about.md -------------------------------------------------------------------------------- /docs/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/docs/api.md -------------------------------------------------------------------------------- /docs/community.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/docs/community.md -------------------------------------------------------------------------------- /docs/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/docs/demo.html -------------------------------------------------------------------------------- /docs/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/docs/getting-started.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/javascripts/codemirror.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/docs/javascripts/codemirror.js -------------------------------------------------------------------------------- /docs/javascripts/lua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/docs/javascripts/lua.js -------------------------------------------------------------------------------- /docs/javascripts/prism.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/docs/javascripts/prism.js -------------------------------------------------------------------------------- /docs/javascripts/scale.fix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/docs/javascripts/scale.fix.js -------------------------------------------------------------------------------- /docs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/docs/logo.png -------------------------------------------------------------------------------- /docs/pldi071-devito.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/docs/pldi071-devito.pdf -------------------------------------------------------------------------------- /docs/pldi083-devito.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/docs/pldi083-devito.pdf -------------------------------------------------------------------------------- /docs/publications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/docs/publications.md -------------------------------------------------------------------------------- /docs/snapl-devito.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/docs/snapl-devito.pdf -------------------------------------------------------------------------------- /docs/stylesheets/codemirror.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/docs/stylesheets/codemirror.css -------------------------------------------------------------------------------- /docs/stylesheets/prism.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/docs/stylesheets/prism.css -------------------------------------------------------------------------------- /docs/stylesheets/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/docs/stylesheets/styles.css -------------------------------------------------------------------------------- /docs/terraforcpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/docs/terraforcpp.html -------------------------------------------------------------------------------- /format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/format.sh -------------------------------------------------------------------------------- /lib/parsing.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/lib/parsing.t -------------------------------------------------------------------------------- /lib/std.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/lib/std.t -------------------------------------------------------------------------------- /msvc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/msvc/.gitignore -------------------------------------------------------------------------------- /msvc/ext/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/msvc/ext/getopt.c -------------------------------------------------------------------------------- /msvc/ext/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/msvc/ext/getopt.h -------------------------------------------------------------------------------- /msvc/ext/getopt_long.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/msvc/ext/getopt_long.c -------------------------------------------------------------------------------- /msvc/ext/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/msvc/ext/inttypes.h -------------------------------------------------------------------------------- /msvc/ext/setjmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/msvc/ext/setjmp.h -------------------------------------------------------------------------------- /nix/cflags.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/nix/cflags.patch -------------------------------------------------------------------------------- /release/include/terra/terra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/release/include/terra/terra.h -------------------------------------------------------------------------------- /release/share/terra/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/release/share/terra/LICENSE.txt -------------------------------------------------------------------------------- /release/share/terra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/release/share/terra/README.md -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/MSVCSetupAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/src/MSVCSetupAPI.h -------------------------------------------------------------------------------- /src/asdl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/src/asdl.lua -------------------------------------------------------------------------------- /src/bin2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/src/bin2c.c -------------------------------------------------------------------------------- /src/cudalib.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/src/cudalib.lua -------------------------------------------------------------------------------- /src/dummy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/src/dummy.c -------------------------------------------------------------------------------- /src/genheader.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/src/genheader.lua -------------------------------------------------------------------------------- /src/geninternalizedfiles.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/src/geninternalizedfiles.lua -------------------------------------------------------------------------------- /src/lctype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/src/lctype.cpp -------------------------------------------------------------------------------- /src/lctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/src/lctype.h -------------------------------------------------------------------------------- /src/linenoise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/src/linenoise.cpp -------------------------------------------------------------------------------- /src/linenoise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/src/linenoise.h -------------------------------------------------------------------------------- /src/lj_strscan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/src/lj_strscan.c -------------------------------------------------------------------------------- /src/lj_strscan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/src/lj_strscan.h -------------------------------------------------------------------------------- /src/llex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/src/llex.cpp -------------------------------------------------------------------------------- /src/llex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/src/llex.h -------------------------------------------------------------------------------- /src/llvmheaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/src/llvmheaders.h -------------------------------------------------------------------------------- /src/llvmheaders_110.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/src/llvmheaders_110.h -------------------------------------------------------------------------------- /src/llvmheaders_120.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/src/llvmheaders_120.h -------------------------------------------------------------------------------- /src/llvmheaders_130.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/src/llvmheaders_130.h -------------------------------------------------------------------------------- /src/llvmheaders_140.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/src/llvmheaders_140.h -------------------------------------------------------------------------------- /src/llvmheaders_150.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/src/llvmheaders_150.h -------------------------------------------------------------------------------- /src/llvmheaders_160.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/src/llvmheaders_160.h -------------------------------------------------------------------------------- /src/llvmheaders_170.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/src/llvmheaders_170.h -------------------------------------------------------------------------------- /src/llvmheaders_180.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/src/llvmheaders_180.h -------------------------------------------------------------------------------- /src/lobject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/src/lobject.cpp -------------------------------------------------------------------------------- /src/lobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/src/lobject.h -------------------------------------------------------------------------------- /src/lparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/src/lparser.cpp -------------------------------------------------------------------------------- /src/lparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/src/lparser.h -------------------------------------------------------------------------------- /src/lstring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/src/lstring.cpp -------------------------------------------------------------------------------- /src/lstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/src/lstring.h -------------------------------------------------------------------------------- /src/lutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/src/lutil.h -------------------------------------------------------------------------------- /src/lzio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/src/lzio.cpp -------------------------------------------------------------------------------- /src/lzio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/src/lzio.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/strict.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/src/strict.lua -------------------------------------------------------------------------------- /src/tcompiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/src/tcompiler.cpp -------------------------------------------------------------------------------- /src/tcompiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/src/tcompiler.h -------------------------------------------------------------------------------- /src/tcompilerstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/src/tcompilerstate.h -------------------------------------------------------------------------------- /src/tcuda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/src/tcuda.cpp -------------------------------------------------------------------------------- /src/tcuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/src/tcuda.h -------------------------------------------------------------------------------- /src/tcwrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/src/tcwrapper.cpp -------------------------------------------------------------------------------- /src/tcwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/src/tcwrapper.h -------------------------------------------------------------------------------- /src/tdebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/src/tdebug.cpp -------------------------------------------------------------------------------- /src/tdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/src/tdebug.h -------------------------------------------------------------------------------- /src/terra.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/src/terra.cpp -------------------------------------------------------------------------------- /src/terralib.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/src/terralib.lua -------------------------------------------------------------------------------- /src/terralist.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/src/terralist.lua -------------------------------------------------------------------------------- /src/terrastate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/src/terrastate.h -------------------------------------------------------------------------------- /src/tinline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/src/tinline.cpp -------------------------------------------------------------------------------- /src/tinline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/src/tinline.h -------------------------------------------------------------------------------- /src/tinternalizedfiles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/src/tinternalizedfiles.cpp -------------------------------------------------------------------------------- /src/tkind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/src/tkind.cpp -------------------------------------------------------------------------------- /src/tkind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/src/tkind.h -------------------------------------------------------------------------------- /src/tllvmutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/src/tllvmutil.cpp -------------------------------------------------------------------------------- /src/tllvmutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/src/tllvmutil.h -------------------------------------------------------------------------------- /src/tobj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/src/tobj.h -------------------------------------------------------------------------------- /src/treadnumber.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/src/treadnumber.c -------------------------------------------------------------------------------- /src/treadnumber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/src/treadnumber.h -------------------------------------------------------------------------------- /src/twindows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/src/twindows.h -------------------------------------------------------------------------------- /terra-scm-1.rockspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/terra-scm-1.rockspec -------------------------------------------------------------------------------- /tests/abouttocompile.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/abouttocompile.t -------------------------------------------------------------------------------- /tests/addlanguage1.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/addlanguage1.t -------------------------------------------------------------------------------- /tests/addressspace.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/addressspace.t -------------------------------------------------------------------------------- /tests/aggregatearr.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/aggregatearr.t -------------------------------------------------------------------------------- /tests/ainline.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/ainline.t -------------------------------------------------------------------------------- /tests/alignment.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/alignment.t -------------------------------------------------------------------------------- /tests/amdgpu_kernel.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/amdgpu_kernel.t -------------------------------------------------------------------------------- /tests/amdgpu_struct.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/amdgpu_struct.t -------------------------------------------------------------------------------- /tests/and.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/and.t -------------------------------------------------------------------------------- /tests/anon.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/anon.t -------------------------------------------------------------------------------- /tests/anon3.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/anon3.t -------------------------------------------------------------------------------- /tests/anonstruct.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/anonstruct.t -------------------------------------------------------------------------------- /tests/anonstruct2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/anonstruct2.t -------------------------------------------------------------------------------- /tests/antiquote1.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/antiquote1.t -------------------------------------------------------------------------------- /tests/antiquote2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/antiquote2.t -------------------------------------------------------------------------------- /tests/antiquote3.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/antiquote3.t -------------------------------------------------------------------------------- /tests/antiquote4.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/antiquote4.t -------------------------------------------------------------------------------- /tests/antiquote5.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/antiquote5.t -------------------------------------------------------------------------------- /tests/arith.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/arith.t -------------------------------------------------------------------------------- /tests/array.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/array.t -------------------------------------------------------------------------------- /tests/arraylit.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/arraylit.t -------------------------------------------------------------------------------- /tests/arrayt.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/arrayt.t -------------------------------------------------------------------------------- /tests/arrayt2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/arrayt2.t -------------------------------------------------------------------------------- /tests/arrptr.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/arrptr.t -------------------------------------------------------------------------------- /tests/asdlns.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/asdlns.t -------------------------------------------------------------------------------- /tests/asm.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/asm.t -------------------------------------------------------------------------------- /tests/atoi.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/atoi.t -------------------------------------------------------------------------------- /tests/atomicrmw.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/atomicrmw.t -------------------------------------------------------------------------------- /tests/avx512.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/avx512.t -------------------------------------------------------------------------------- /tests/avxhadd.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/avxhadd.t -------------------------------------------------------------------------------- /tests/badname.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/badname.t -------------------------------------------------------------------------------- /tests/benchmark_dgemm.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/benchmark_dgemm.t -------------------------------------------------------------------------------- /tests/benchmark_fannkuchredux.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/benchmark_fannkuchredux.t -------------------------------------------------------------------------------- /tests/benchmark_nbody.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/benchmark_nbody.t -------------------------------------------------------------------------------- /tests/benchmarks/bs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/benchmarks/bs.t -------------------------------------------------------------------------------- /tests/benchmarks/bs_eigen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/benchmarks/bs_eigen.cpp -------------------------------------------------------------------------------- /tests/benchmarks/dynfusion.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/benchmarks/dynfusion.t -------------------------------------------------------------------------------- /tests/benchmarks/fusion.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/benchmarks/fusion.t -------------------------------------------------------------------------------- /tests/benchmarks/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/benchmarks/makefile -------------------------------------------------------------------------------- /tests/benchmarks/raysphere.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/benchmarks/raysphere.t -------------------------------------------------------------------------------- /tests/benchmarks/raysphere_eigen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/benchmarks/raysphere_eigen.cpp -------------------------------------------------------------------------------- /tests/benchmarks/timing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/benchmarks/timing.h -------------------------------------------------------------------------------- /tests/bf.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/bf.t -------------------------------------------------------------------------------- /tests/blankexp.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/blankexp.t -------------------------------------------------------------------------------- /tests/blockescape.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/blockescape.t -------------------------------------------------------------------------------- /tests/blocking.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/blocking.t -------------------------------------------------------------------------------- /tests/blocking2-fixed.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/blocking2-fixed.t -------------------------------------------------------------------------------- /tests/blocking2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/blocking2.t -------------------------------------------------------------------------------- /tests/blocking3.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/blocking3.t -------------------------------------------------------------------------------- /tests/boolcast.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/boolcast.t -------------------------------------------------------------------------------- /tests/bounce.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/bounce.t -------------------------------------------------------------------------------- /tests/breaktest.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/breaktest.t -------------------------------------------------------------------------------- /tests/bug.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/bug.t -------------------------------------------------------------------------------- /tests/bug2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/bug2.t -------------------------------------------------------------------------------- /tests/bug3.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/bug3.t -------------------------------------------------------------------------------- /tests/bug372.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/bug372.t -------------------------------------------------------------------------------- /tests/bug372_perf.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/bug372_perf.t -------------------------------------------------------------------------------- /tests/bug372b.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/bug372b.t -------------------------------------------------------------------------------- /tests/bug372c.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/bug372c.t -------------------------------------------------------------------------------- /tests/bug372d.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/bug372d.t -------------------------------------------------------------------------------- /tests/bug4.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/bug4.t -------------------------------------------------------------------------------- /tests/calc.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/calc.t -------------------------------------------------------------------------------- /tests/call.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/call.t -------------------------------------------------------------------------------- /tests/callbackcache.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/callbackcache.t -------------------------------------------------------------------------------- /tests/canon.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/canon.t -------------------------------------------------------------------------------- /tests/canon2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/canon2.t -------------------------------------------------------------------------------- /tests/cast.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/cast.t -------------------------------------------------------------------------------- /tests/cbool.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/cbool.t -------------------------------------------------------------------------------- /tests/cconv.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/cconv.t -------------------------------------------------------------------------------- /tests/cconv_array.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/cconv_array.t -------------------------------------------------------------------------------- /tests/cconv_more.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/cconv_more.t -------------------------------------------------------------------------------- /tests/cfgbug.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/cfgbug.t -------------------------------------------------------------------------------- /tests/chaindecl.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/chaindecl.t -------------------------------------------------------------------------------- /tests/clanginfo.t: -------------------------------------------------------------------------------- 1 | terralib.includec("stdio.h",{"-v"}) 2 | -------------------------------------------------------------------------------- /tests/class.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/class.t -------------------------------------------------------------------------------- /tests/class2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/class2.t -------------------------------------------------------------------------------- /tests/class3.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/class3.t -------------------------------------------------------------------------------- /tests/class4.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/class4.t -------------------------------------------------------------------------------- /tests/class5.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/class5.t -------------------------------------------------------------------------------- /tests/class6.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/class6.t -------------------------------------------------------------------------------- /tests/classifyfloatstructs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/classifyfloatstructs.t -------------------------------------------------------------------------------- /tests/clean.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/clean.t -------------------------------------------------------------------------------- /tests/cmpxchg.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/cmpxchg.t -------------------------------------------------------------------------------- /tests/cnames.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/cnames.t -------------------------------------------------------------------------------- /tests/cnamespace.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/cnamespace.t -------------------------------------------------------------------------------- /tests/cnamespaces.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/cnamespaces.t -------------------------------------------------------------------------------- /tests/compile_time_array.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/compile_time_array.t -------------------------------------------------------------------------------- /tests/compile_time_array2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/compile_time_array2.t -------------------------------------------------------------------------------- /tests/compile_time_array3.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/compile_time_array3.t -------------------------------------------------------------------------------- /tests/compilecallback.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/compilecallback.t -------------------------------------------------------------------------------- /tests/completec.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/completec.t -------------------------------------------------------------------------------- /tests/conflict.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/conflict.t -------------------------------------------------------------------------------- /tests/constant.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/constant.t -------------------------------------------------------------------------------- /tests/constant2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/constant2.t -------------------------------------------------------------------------------- /tests/constantinits.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/constantinits.t -------------------------------------------------------------------------------- /tests/constanttypes.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/constanttypes.t -------------------------------------------------------------------------------- /tests/constructor.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/constructor.t -------------------------------------------------------------------------------- /tests/cov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/cov -------------------------------------------------------------------------------- /tests/coverage.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/coverage.t -------------------------------------------------------------------------------- /tests/coverage2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/coverage2.t -------------------------------------------------------------------------------- /tests/coverage3.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/coverage3.t -------------------------------------------------------------------------------- /tests/coverage4.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/coverage4.t -------------------------------------------------------------------------------- /tests/crash1.t: -------------------------------------------------------------------------------- 1 | a = &int -------------------------------------------------------------------------------- /tests/crash2.t: -------------------------------------------------------------------------------- 1 | a = global( struct { a : int } ) -------------------------------------------------------------------------------- /tests/cstringtest.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/cstringtest.t -------------------------------------------------------------------------------- /tests/cstruct.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/cstruct.t -------------------------------------------------------------------------------- /tests/cstruct2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/cstruct2.t -------------------------------------------------------------------------------- /tests/cudaagg.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/cudaagg.t -------------------------------------------------------------------------------- /tests/cudaaggregate.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/cudaaggregate.t -------------------------------------------------------------------------------- /tests/cudaatomic.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/cudaatomic.t -------------------------------------------------------------------------------- /tests/cudaconst2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/cudaconst2.t -------------------------------------------------------------------------------- /tests/cudaglobal.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/cudaglobal.t -------------------------------------------------------------------------------- /tests/cudahello.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/cudahello.t -------------------------------------------------------------------------------- /tests/cudaoffline.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/cudaoffline.t -------------------------------------------------------------------------------- /tests/cudaoo.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/cudaoo.t -------------------------------------------------------------------------------- /tests/cudaprintf.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/cudaprintf.t -------------------------------------------------------------------------------- /tests/cudashared.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/cudashared.t -------------------------------------------------------------------------------- /tests/cudatest.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/cudatest.t -------------------------------------------------------------------------------- /tests/cudatex.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/cudatex.t -------------------------------------------------------------------------------- /tests/cunion.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/cunion.t -------------------------------------------------------------------------------- /tests/cunion2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/cunion2.t -------------------------------------------------------------------------------- /tests/customline.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/customline.t -------------------------------------------------------------------------------- /tests/customtable.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/customtable.t -------------------------------------------------------------------------------- /tests/cvar.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/cvar.t -------------------------------------------------------------------------------- /tests/declerrors.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/declerrors.t -------------------------------------------------------------------------------- /tests/decltwice.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/decltwice.t -------------------------------------------------------------------------------- /tests/decltwicef.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/decltwicef.t -------------------------------------------------------------------------------- /tests/def1.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/def1.t -------------------------------------------------------------------------------- /tests/defaultoperator.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/defaultoperator.t -------------------------------------------------------------------------------- /tests/defer.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/defer.t -------------------------------------------------------------------------------- /tests/deferbreak.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/deferbreak.t -------------------------------------------------------------------------------- /tests/defercond.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/defercond.t -------------------------------------------------------------------------------- /tests/defercond2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/defercond2.t -------------------------------------------------------------------------------- /tests/defergoto.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/defergoto.t -------------------------------------------------------------------------------- /tests/definewrong.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/definewrong.t -------------------------------------------------------------------------------- /tests/dgemm.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/dgemm.t -------------------------------------------------------------------------------- /tests/dgemm2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/dgemm2.t -------------------------------------------------------------------------------- /tests/dgemm3.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/dgemm3.t -------------------------------------------------------------------------------- /tests/dgemmpaper.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/dgemmpaper.t -------------------------------------------------------------------------------- /tests/diffuse.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/diffuse.t -------------------------------------------------------------------------------- /tests/disabled/crash.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/disabled/crash.t -------------------------------------------------------------------------------- /tests/disabled/cudaldg.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/disabled/cudaldg.t -------------------------------------------------------------------------------- /tests/disabled/fails_recvar3.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/disabled/fails_recvar3.t -------------------------------------------------------------------------------- /tests/disabled/interface.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/disabled/interface.t -------------------------------------------------------------------------------- /tests/disabled/interface2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/disabled/interface2.t -------------------------------------------------------------------------------- /tests/disabled/leaktest.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/disabled/leaktest.t -------------------------------------------------------------------------------- /tests/disabled/recvar.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/disabled/recvar.t -------------------------------------------------------------------------------- /tests/disabled/recvar2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/disabled/recvar2.t -------------------------------------------------------------------------------- /tests/disabled/varinit.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/disabled/varinit.t -------------------------------------------------------------------------------- /tests/disabled/varinit2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/disabled/varinit2.t -------------------------------------------------------------------------------- /tests/disabled/varwithrecinit.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/disabled/varwithrecinit.t -------------------------------------------------------------------------------- /tests/dynlib.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/dynlib.t -------------------------------------------------------------------------------- /tests/eager.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/eager.t -------------------------------------------------------------------------------- /tests/embeddedcode1.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/embeddedcode1.t -------------------------------------------------------------------------------- /tests/empty.t: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/emptycalls.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/emptycalls.t -------------------------------------------------------------------------------- /tests/emptyname.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/emptyname.t -------------------------------------------------------------------------------- /tests/emptystruct.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/emptystruct.t -------------------------------------------------------------------------------- /tests/emptytag.tt: -------------------------------------------------------------------------------- 1 | #!../terra -------------------------------------------------------------------------------- /tests/enumc.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/enumc.t -------------------------------------------------------------------------------- /tests/evenodd.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/evenodd.t -------------------------------------------------------------------------------- /tests/examplecompiler1.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/examplecompiler1.t -------------------------------------------------------------------------------- /tests/examplelanguage1.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/examplelanguage1.t -------------------------------------------------------------------------------- /tests/exampleparser1.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/exampleparser1.t -------------------------------------------------------------------------------- /tests/exittest.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/exittest.t -------------------------------------------------------------------------------- /tests/explicitcast.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/explicitcast.t -------------------------------------------------------------------------------- /tests/exportdynamic.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/exportdynamic.t -------------------------------------------------------------------------------- /tests/expvec.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/expvec.t -------------------------------------------------------------------------------- /tests/f2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/f2.t -------------------------------------------------------------------------------- /tests/fact.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fact.t -------------------------------------------------------------------------------- /tests/fail.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fail.lua -------------------------------------------------------------------------------- /tests/fails/abouttofreeze.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/abouttofreeze.t -------------------------------------------------------------------------------- /tests/fails/arith.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/arith.t -------------------------------------------------------------------------------- /tests/fails/atomicrmw.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/atomicrmw.t -------------------------------------------------------------------------------- /tests/fails/atomicrmw2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/atomicrmw2.t -------------------------------------------------------------------------------- /tests/fails/atomicrmw3.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/atomicrmw3.t -------------------------------------------------------------------------------- /tests/fails/atomicrmw4.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/atomicrmw4.t -------------------------------------------------------------------------------- /tests/fails/attrload.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/attrload.t -------------------------------------------------------------------------------- /tests/fails/attrload2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/attrload2.t -------------------------------------------------------------------------------- /tests/fails/attrload3.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/attrload3.t -------------------------------------------------------------------------------- /tests/fails/attrstore.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/attrstore.t -------------------------------------------------------------------------------- /tests/fails/attrstore2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/attrstore2.t -------------------------------------------------------------------------------- /tests/fails/cast.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/cast.t -------------------------------------------------------------------------------- /tests/fails/comparestruct.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/comparestruct.t -------------------------------------------------------------------------------- /tests/fails/constructor.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/constructor.t -------------------------------------------------------------------------------- /tests/fails/defer.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/defer.t -------------------------------------------------------------------------------- /tests/fails/defer1.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/defer1.t -------------------------------------------------------------------------------- /tests/fails/defergoto.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/defergoto.t -------------------------------------------------------------------------------- /tests/fails/defergoto2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/defergoto2.t -------------------------------------------------------------------------------- /tests/fails/dupvar.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/dupvar.t -------------------------------------------------------------------------------- /tests/fails/entrieserror.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/entrieserror.t -------------------------------------------------------------------------------- /tests/fails/escapeerr.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/escapeerr.t -------------------------------------------------------------------------------- /tests/fails/escapemacro.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/escapemacro.t -------------------------------------------------------------------------------- /tests/fails/f0.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/f0.t -------------------------------------------------------------------------------- /tests/fails/f1.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/f1.t -------------------------------------------------------------------------------- /tests/fails/f10.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/f10.t -------------------------------------------------------------------------------- /tests/fails/f11.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/f11.t -------------------------------------------------------------------------------- /tests/fails/f12.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/f12.t -------------------------------------------------------------------------------- /tests/fails/f13.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/f13.t -------------------------------------------------------------------------------- /tests/fails/f14.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/f14.t -------------------------------------------------------------------------------- /tests/fails/f15.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/f15.t -------------------------------------------------------------------------------- /tests/fails/f16.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/f16.t -------------------------------------------------------------------------------- /tests/fails/f17.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/f17.t -------------------------------------------------------------------------------- /tests/fails/f18.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/f18.t -------------------------------------------------------------------------------- /tests/fails/f19.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/f19.t -------------------------------------------------------------------------------- /tests/fails/f2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/f2.t -------------------------------------------------------------------------------- /tests/fails/f20.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/f20.t -------------------------------------------------------------------------------- /tests/fails/f21.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/f21.t -------------------------------------------------------------------------------- /tests/fails/f22.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/f22.t -------------------------------------------------------------------------------- /tests/fails/f23.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/f23.t -------------------------------------------------------------------------------- /tests/fails/f24.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/f24.t -------------------------------------------------------------------------------- /tests/fails/f25.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/f25.t -------------------------------------------------------------------------------- /tests/fails/f26.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/f26.t -------------------------------------------------------------------------------- /tests/fails/f27.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/f27.t -------------------------------------------------------------------------------- /tests/fails/f28.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/f28.t -------------------------------------------------------------------------------- /tests/fails/f29.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/f29.t -------------------------------------------------------------------------------- /tests/fails/f3.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/f3.t -------------------------------------------------------------------------------- /tests/fails/f30.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/f30.t -------------------------------------------------------------------------------- /tests/fails/f31.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/f31.t -------------------------------------------------------------------------------- /tests/fails/f32.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/f32.t -------------------------------------------------------------------------------- /tests/fails/f33.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/f33.t -------------------------------------------------------------------------------- /tests/fails/f34.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/f34.t -------------------------------------------------------------------------------- /tests/fails/f35.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/f35.t -------------------------------------------------------------------------------- /tests/fails/f36.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/f36.t -------------------------------------------------------------------------------- /tests/fails/f37.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/f37.t -------------------------------------------------------------------------------- /tests/fails/f38.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/f38.t -------------------------------------------------------------------------------- /tests/fails/f39.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/f39.t -------------------------------------------------------------------------------- /tests/fails/f4.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/f4.t -------------------------------------------------------------------------------- /tests/fails/f40.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/f40.t -------------------------------------------------------------------------------- /tests/fails/f41.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/f41.t -------------------------------------------------------------------------------- /tests/fails/f43.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/f43.t -------------------------------------------------------------------------------- /tests/fails/f44.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/f44.t -------------------------------------------------------------------------------- /tests/fails/f45.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/f45.t -------------------------------------------------------------------------------- /tests/fails/f46.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/f46.t -------------------------------------------------------------------------------- /tests/fails/f47.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/f47.t -------------------------------------------------------------------------------- /tests/fails/f48.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/f48.t -------------------------------------------------------------------------------- /tests/fails/f5.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/f5.t -------------------------------------------------------------------------------- /tests/fails/f7.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/f7.t -------------------------------------------------------------------------------- /tests/fails/f8.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/f8.t -------------------------------------------------------------------------------- /tests/fails/f9.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/f9.t -------------------------------------------------------------------------------- /tests/fails/failtrunc.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/failtrunc.t -------------------------------------------------------------------------------- /tests/fails/fnindex.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/fnindex.t -------------------------------------------------------------------------------- /tests/fails/fnpointer.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/fnpointer.t -------------------------------------------------------------------------------- /tests/fails/for.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/for.t -------------------------------------------------------------------------------- /tests/fails/for2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/for2.t -------------------------------------------------------------------------------- /tests/fails/forlist.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/forlist.t -------------------------------------------------------------------------------- /tests/fails/forlist2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/forlist2.t -------------------------------------------------------------------------------- /tests/fails/forlist3.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/forlist3.t -------------------------------------------------------------------------------- /tests/fails/getmethod.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/getmethod.t -------------------------------------------------------------------------------- /tests/fails/gettype.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/gettype.t -------------------------------------------------------------------------------- /tests/fails/ifelse.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/ifelse.t -------------------------------------------------------------------------------- /tests/fails/ifelse2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/ifelse2.t -------------------------------------------------------------------------------- /tests/fails/incomplete.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/incomplete.t -------------------------------------------------------------------------------- /tests/fails/intrinsic1.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/intrinsic1.t -------------------------------------------------------------------------------- /tests/fails/intrinsic2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/intrinsic2.t -------------------------------------------------------------------------------- /tests/fails/intrinsic3.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/intrinsic3.t -------------------------------------------------------------------------------- /tests/fails/intrinsic4.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/intrinsic4.t -------------------------------------------------------------------------------- /tests/fails/intrinsic5.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/intrinsic5.t -------------------------------------------------------------------------------- /tests/fails/let.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/let.t -------------------------------------------------------------------------------- /tests/fails/lvaluetreelist.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/lvaluetreelist.t -------------------------------------------------------------------------------- /tests/fails/macroselect.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/macroselect.t -------------------------------------------------------------------------------- /tests/fails/metatype.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/metatype.t -------------------------------------------------------------------------------- /tests/fails/methodantiquote.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/methodantiquote.t -------------------------------------------------------------------------------- /tests/fails/missingmetamethod.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/missingmetamethod.t -------------------------------------------------------------------------------- /tests/fails/missingmethod.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/missingmethod.t -------------------------------------------------------------------------------- /tests/fails/nesterror.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/nesterror.t -------------------------------------------------------------------------------- /tests/fails/nilreturn.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/nilreturn.t -------------------------------------------------------------------------------- /tests/fails/nilsym.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/nilsym.t -------------------------------------------------------------------------------- /tests/fails/niltype2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/niltype2.t -------------------------------------------------------------------------------- /tests/fails/opaque.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/opaque.t -------------------------------------------------------------------------------- /tests/fails/opaque2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/opaque2.t -------------------------------------------------------------------------------- /tests/fails/overload.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/overload.t -------------------------------------------------------------------------------- /tests/fails/overload3.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/overload3.t -------------------------------------------------------------------------------- /tests/fails/overload4.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/overload4.t -------------------------------------------------------------------------------- /tests/fails/quoteescape.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/quoteescape.t -------------------------------------------------------------------------------- /tests/fails/quoteescape2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/quoteescape2.t -------------------------------------------------------------------------------- /tests/fails/recfn.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/recfn.t -------------------------------------------------------------------------------- /tests/fails/recpattern.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/recpattern.t -------------------------------------------------------------------------------- /tests/fails/recursivecompile.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/recursivecompile.t -------------------------------------------------------------------------------- /tests/fails/recursivecompile2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/recursivecompile2.t -------------------------------------------------------------------------------- /tests/fails/symboltest.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/symboltest.t -------------------------------------------------------------------------------- /tests/fails/symbolvar.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/symbolvar.t -------------------------------------------------------------------------------- /tests/fails/symbolvar2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/symbolvar2.t -------------------------------------------------------------------------------- /tests/fails/symbolvar3.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/symbolvar3.t -------------------------------------------------------------------------------- /tests/fails/symbolvar6.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/symbolvar6.t -------------------------------------------------------------------------------- /tests/fails/symbolvar7.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/symbolvar7.t -------------------------------------------------------------------------------- /tests/fails/symparam.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/symparam.t -------------------------------------------------------------------------------- /tests/fails/symparam3.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/symparam3.t -------------------------------------------------------------------------------- /tests/fails/ucall.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/ucall.t -------------------------------------------------------------------------------- /tests/fails/usercastwrong.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/usercastwrong.t -------------------------------------------------------------------------------- /tests/fails/veclit.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/veclit.t -------------------------------------------------------------------------------- /tests/fails/veclit2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/veclit2.t -------------------------------------------------------------------------------- /tests/fails/veclit3.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/veclit3.t -------------------------------------------------------------------------------- /tests/fails/vectorerror.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/vectorerror.t -------------------------------------------------------------------------------- /tests/fails/vectype.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fails/vectype.t -------------------------------------------------------------------------------- /tests/fakeasm.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fakeasm.t -------------------------------------------------------------------------------- /tests/falsespec.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/falsespec.t -------------------------------------------------------------------------------- /tests/fastcall.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fastcall.t -------------------------------------------------------------------------------- /tests/fastmath.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fastmath.t -------------------------------------------------------------------------------- /tests/fib.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fib.t -------------------------------------------------------------------------------- /tests/fib2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fib2.t -------------------------------------------------------------------------------- /tests/fmod.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fmod.t -------------------------------------------------------------------------------- /tests/fnames.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fnames.t -------------------------------------------------------------------------------- /tests/fncalltest.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fncalltest.t -------------------------------------------------------------------------------- /tests/fnpointer.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fnpointer.t -------------------------------------------------------------------------------- /tests/fnptr.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fnptr.t -------------------------------------------------------------------------------- /tests/fnptrc.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fnptrc.t -------------------------------------------------------------------------------- /tests/fnptrstruct.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/fnptrstruct.t -------------------------------------------------------------------------------- /tests/foo.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/foo.t -------------------------------------------------------------------------------- /tests/for.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/for.t -------------------------------------------------------------------------------- /tests/for2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/for2.t -------------------------------------------------------------------------------- /tests/forbreak.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/forbreak.t -------------------------------------------------------------------------------- /tests/forlist.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/forlist.t -------------------------------------------------------------------------------- /tests/forlist2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/forlist2.t -------------------------------------------------------------------------------- /tests/forp.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/forp.t -------------------------------------------------------------------------------- /tests/forsym.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/forsym.t -------------------------------------------------------------------------------- /tests/forwardtodef.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/forwardtodef.t -------------------------------------------------------------------------------- /tests/foundintermediate.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/foundintermediate.t -------------------------------------------------------------------------------- /tests/foundintermediate2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/foundintermediate2.t -------------------------------------------------------------------------------- /tests/foundintermediate3.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/foundintermediate3.t -------------------------------------------------------------------------------- /tests/functionnoproto.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/functionnoproto.t -------------------------------------------------------------------------------- /tests/gctest.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/gctest.t -------------------------------------------------------------------------------- /tests/gemm.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/gemm.t -------------------------------------------------------------------------------- /tests/getmethod.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/getmethod.t -------------------------------------------------------------------------------- /tests/gettype.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/gettype.t -------------------------------------------------------------------------------- /tests/globals.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/globals.t -------------------------------------------------------------------------------- /tests/globals_large.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/globals_large.t -------------------------------------------------------------------------------- /tests/goto.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/goto.t -------------------------------------------------------------------------------- /tests/goto2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/goto2.t -------------------------------------------------------------------------------- /tests/gvarfault.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/gvarfault.t -------------------------------------------------------------------------------- /tests/hasbeenfrozen.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/hasbeenfrozen.t -------------------------------------------------------------------------------- /tests/hello.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/hello.t -------------------------------------------------------------------------------- /tests/hello2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/hello2.t -------------------------------------------------------------------------------- /tests/hexf.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/hexf.t -------------------------------------------------------------------------------- /tests/huge.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/huge.t -------------------------------------------------------------------------------- /tests/ifelse.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/ifelse.t -------------------------------------------------------------------------------- /tests/includec.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/includec.t -------------------------------------------------------------------------------- /tests/includetwice.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/includetwice.t -------------------------------------------------------------------------------- /tests/incomplete.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/incomplete.t -------------------------------------------------------------------------------- /tests/incomplete2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/incomplete2.t -------------------------------------------------------------------------------- /tests/incomplete3.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/incomplete3.t -------------------------------------------------------------------------------- /tests/incomplete4.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/incomplete4.t -------------------------------------------------------------------------------- /tests/incomplete5.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/incomplete5.t -------------------------------------------------------------------------------- /tests/incompletetypetest.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/incompletetypetest.t -------------------------------------------------------------------------------- /tests/incompletetypetest2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/incompletetypetest2.t -------------------------------------------------------------------------------- /tests/incompletetypetest3.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/incompletetypetest3.t -------------------------------------------------------------------------------- /tests/indexing64.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/indexing64.t -------------------------------------------------------------------------------- /tests/indexingbug.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/indexingbug.t -------------------------------------------------------------------------------- /tests/inline_c.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/inline_c.t -------------------------------------------------------------------------------- /tests/intrinsic.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/intrinsic.t -------------------------------------------------------------------------------- /tests/isconstant.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/isconstant.t -------------------------------------------------------------------------------- /tests/isvolatile.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/isvolatile.t -------------------------------------------------------------------------------- /tests/labelbug.t: -------------------------------------------------------------------------------- 1 | 2 | terra foo() 3 | ::alabel:: ;; 4 | return 0 5 | end -------------------------------------------------------------------------------- /tests/latelink.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/latelink.t -------------------------------------------------------------------------------- /tests/lazycstring.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/lazycstring.t -------------------------------------------------------------------------------- /tests/lazylog.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/lazylog.t -------------------------------------------------------------------------------- /tests/let1.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/let1.t -------------------------------------------------------------------------------- /tests/let2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/let2.t -------------------------------------------------------------------------------- /tests/lib/addlanguage.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/lib/addlanguage.t -------------------------------------------------------------------------------- /tests/lib/barlang.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/lib/barlang.t -------------------------------------------------------------------------------- /tests/lib/def.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/lib/def.t -------------------------------------------------------------------------------- /tests/lib/embeddedcode.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/lib/embeddedcode.t -------------------------------------------------------------------------------- /tests/lib/examplecompiler.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/lib/examplecompiler.t -------------------------------------------------------------------------------- /tests/lib/examplelanguage.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/lib/examplelanguage.t -------------------------------------------------------------------------------- /tests/lib/exampleparser.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/lib/exampleparser.t -------------------------------------------------------------------------------- /tests/lib/fakeimport.t: -------------------------------------------------------------------------------- 1 | error("what") -------------------------------------------------------------------------------- /tests/lib/foolang.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/lib/foolang.t -------------------------------------------------------------------------------- /tests/lib/golike.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/lib/golike.t -------------------------------------------------------------------------------- /tests/lib/javalike.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/lib/javalike.t -------------------------------------------------------------------------------- /tests/lib/javalikesimple.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/lib/javalikesimple.t -------------------------------------------------------------------------------- /tests/lib/leak.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/lib/leak.lua -------------------------------------------------------------------------------- /tests/lib/matrixtestharness.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/lib/matrixtestharness.t -------------------------------------------------------------------------------- /tests/lib/objc.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/lib/objc.t -------------------------------------------------------------------------------- /tests/lib/pratttest.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/lib/pratttest.t -------------------------------------------------------------------------------- /tests/lib/prof.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/lib/prof.t -------------------------------------------------------------------------------- /tests/lib/soa.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/lib/soa.t -------------------------------------------------------------------------------- /tests/lib/sumlanguage.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/lib/sumlanguage.t -------------------------------------------------------------------------------- /tests/lib/sumlanguage2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/lib/sumlanguage2.t -------------------------------------------------------------------------------- /tests/lib/testlang.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/lib/testlang.t -------------------------------------------------------------------------------- /tests/linklibrary.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/linklibrary.t -------------------------------------------------------------------------------- /tests/linkllvm.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/linkllvm.t -------------------------------------------------------------------------------- /tests/linkllvm2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/linkllvm2.t -------------------------------------------------------------------------------- /tests/list.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/list.t -------------------------------------------------------------------------------- /tests/localenv.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/localenv.t -------------------------------------------------------------------------------- /tests/localenv2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/localenv2.t -------------------------------------------------------------------------------- /tests/logical.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/logical.t -------------------------------------------------------------------------------- /tests/luaapi.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/luaapi.t -------------------------------------------------------------------------------- /tests/luabridge.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/luabridge.t -------------------------------------------------------------------------------- /tests/luabridge2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/luabridge2.t -------------------------------------------------------------------------------- /tests/luabridgefn.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/luabridgefn.t -------------------------------------------------------------------------------- /tests/luabridgerec.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/luabridgerec.t -------------------------------------------------------------------------------- /tests/luabridgeunion.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/luabridgeunion.t -------------------------------------------------------------------------------- /tests/luaterramethod.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/luaterramethod.t -------------------------------------------------------------------------------- /tests/lvaluepointer.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/lvaluepointer.t -------------------------------------------------------------------------------- /tests/lvaluequote.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/lvaluequote.t -------------------------------------------------------------------------------- /tests/lvaluetreelist.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/lvaluetreelist.t -------------------------------------------------------------------------------- /tests/macro.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/macro.t -------------------------------------------------------------------------------- /tests/macro2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/macro2.t -------------------------------------------------------------------------------- /tests/macro3.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/macro3.t -------------------------------------------------------------------------------- /tests/macrokey.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/macrokey.t -------------------------------------------------------------------------------- /tests/macrolet.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/macrolet.t -------------------------------------------------------------------------------- /tests/macroselect.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/macroselect.t -------------------------------------------------------------------------------- /tests/macrotest.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/macrotest.t -------------------------------------------------------------------------------- /tests/malloc.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/malloc.t -------------------------------------------------------------------------------- /tests/mathlib.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/mathlib.t -------------------------------------------------------------------------------- /tests/metatype.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/metatype.t -------------------------------------------------------------------------------- /tests/method.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/method.t -------------------------------------------------------------------------------- /tests/methodantiquote.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/methodantiquote.t -------------------------------------------------------------------------------- /tests/methodmissing.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/methodmissing.t -------------------------------------------------------------------------------- /tests/methodrvalue.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/methodrvalue.t -------------------------------------------------------------------------------- /tests/methodsugar.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/methodsugar.t -------------------------------------------------------------------------------- /tests/missingfields.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/missingfields.t -------------------------------------------------------------------------------- /tests/mixed.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/mixed.t -------------------------------------------------------------------------------- /tests/multiconstructor.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/multiconstructor.t -------------------------------------------------------------------------------- /tests/multimacro.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/multimacro.t -------------------------------------------------------------------------------- /tests/multiterra.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/multiterra.t -------------------------------------------------------------------------------- /tests/mytest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/mytest.h -------------------------------------------------------------------------------- /tests/names.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/names.t -------------------------------------------------------------------------------- /tests/nantest.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/nantest.t -------------------------------------------------------------------------------- /tests/nestedcalls.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/nestedcalls.t -------------------------------------------------------------------------------- /tests/nestextract.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/nestextract.t -------------------------------------------------------------------------------- /tests/nestnoerror.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/nestnoerror.t -------------------------------------------------------------------------------- /tests/new.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/new.t -------------------------------------------------------------------------------- /tests/newerrortest.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/newerrortest.t -------------------------------------------------------------------------------- /tests/nillocal.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/nillocal.t -------------------------------------------------------------------------------- /tests/niltype.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/niltype.t -------------------------------------------------------------------------------- /tests/nojit.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/nojit.t -------------------------------------------------------------------------------- /tests/nolengthop.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/nolengthop.t -------------------------------------------------------------------------------- /tests/nonprototypec.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/nonprototypec.t -------------------------------------------------------------------------------- /tests/nontemporal.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/nontemporal.t -------------------------------------------------------------------------------- /tests/noopt.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/noopt.t -------------------------------------------------------------------------------- /tests/noreturn.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/noreturn.t -------------------------------------------------------------------------------- /tests/numliteral.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/numliteral.t -------------------------------------------------------------------------------- /tests/objc.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/objc.t -------------------------------------------------------------------------------- /tests/objc2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/objc2.jpg -------------------------------------------------------------------------------- /tests/objc2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/objc2.t -------------------------------------------------------------------------------- /tests/objtest.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/objtest.t -------------------------------------------------------------------------------- /tests/offsetcalc.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/offsetcalc.t -------------------------------------------------------------------------------- /tests/opaquealloc.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/opaquealloc.t -------------------------------------------------------------------------------- /tests/option_e.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/option_e.t -------------------------------------------------------------------------------- /tests/or.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/or.t -------------------------------------------------------------------------------- /tests/ordercomplete.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/ordercomplete.t -------------------------------------------------------------------------------- /tests/output.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/output.t -------------------------------------------------------------------------------- /tests/overload.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/overload.t -------------------------------------------------------------------------------- /tests/overload2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/overload2.t -------------------------------------------------------------------------------- /tests/overload3.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/overload3.t -------------------------------------------------------------------------------- /tests/overloadcall.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/overloadcall.t -------------------------------------------------------------------------------- /tests/overloadmethod.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/overloadmethod.t -------------------------------------------------------------------------------- /tests/overloadmethod2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/overloadmethod2.t -------------------------------------------------------------------------------- /tests/overloadmethod3.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/overloadmethod3.t -------------------------------------------------------------------------------- /tests/overloadproduct.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/overloadproduct.t -------------------------------------------------------------------------------- /tests/overloadrecv.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/overloadrecv.t -------------------------------------------------------------------------------- /tests/painfulrecstruct.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/painfulrecstruct.t -------------------------------------------------------------------------------- /tests/paren.t: -------------------------------------------------------------------------------- 1 | terra foo(a : int) 2 | return a + (a) 3 | end 4 | 5 | foo(3) -------------------------------------------------------------------------------- /tests/parsecrash.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/parsecrash.t -------------------------------------------------------------------------------- /tests/parsefail.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/parsefail.t -------------------------------------------------------------------------------- /tests/parsefail2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/parsefail2.t -------------------------------------------------------------------------------- /tests/pattern.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/pattern.t -------------------------------------------------------------------------------- /tests/perfregression.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/perfregression.lua -------------------------------------------------------------------------------- /tests/point.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/point.t -------------------------------------------------------------------------------- /tests/pointerarith.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/pointerarith.t -------------------------------------------------------------------------------- /tests/pointerlike.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/pointerlike.t -------------------------------------------------------------------------------- /tests/pow.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/pow.t -------------------------------------------------------------------------------- /tests/ppltalk.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/ppltalk.t -------------------------------------------------------------------------------- /tests/ppnil.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/ppnil.t -------------------------------------------------------------------------------- /tests/pratttest1.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/pratttest1.t -------------------------------------------------------------------------------- /tests/prec.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/prec.t -------------------------------------------------------------------------------- /tests/prec2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/prec2.t -------------------------------------------------------------------------------- /tests/pretty.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/pretty.t -------------------------------------------------------------------------------- /tests/prettyprintsym.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/prettyprintsym.t -------------------------------------------------------------------------------- /tests/printd.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/printd.t -------------------------------------------------------------------------------- /tests/printfarray.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/printfarray.t -------------------------------------------------------------------------------- /tests/printfloat.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/printfloat.t -------------------------------------------------------------------------------- /tests/proxystruct.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/proxystruct.t -------------------------------------------------------------------------------- /tests/pt.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/pt.t -------------------------------------------------------------------------------- /tests/pthreads.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/pthreads.t -------------------------------------------------------------------------------- /tests/quote.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/quote.t -------------------------------------------------------------------------------- /tests/quote10.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/quote10.t -------------------------------------------------------------------------------- /tests/quote2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/quote2.t -------------------------------------------------------------------------------- /tests/quote3.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/quote3.t -------------------------------------------------------------------------------- /tests/quote4.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/quote4.t -------------------------------------------------------------------------------- /tests/quote5.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/quote5.t -------------------------------------------------------------------------------- /tests/quote6.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/quote6.t -------------------------------------------------------------------------------- /tests/quote7.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/quote7.t -------------------------------------------------------------------------------- /tests/quote8.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/quote8.t -------------------------------------------------------------------------------- /tests/quote9.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/quote9.t -------------------------------------------------------------------------------- /tests/quoteblock.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/quoteblock.t -------------------------------------------------------------------------------- /tests/quoteenv.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/quoteenv.t -------------------------------------------------------------------------------- /tests/quoteselect.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/quoteselect.t -------------------------------------------------------------------------------- /tests/rd.t: -------------------------------------------------------------------------------- 1 | C = terralib.includec("stdarg.h") -------------------------------------------------------------------------------- /tests/receivercasts.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/receivercasts.t -------------------------------------------------------------------------------- /tests/recfn.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/recfn.t -------------------------------------------------------------------------------- /tests/recoverfromerror.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/recoverfromerror.t -------------------------------------------------------------------------------- /tests/recstruct.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/recstruct.t -------------------------------------------------------------------------------- /tests/recstruct2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/recstruct2.t -------------------------------------------------------------------------------- /tests/reference/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/reference/Makefile -------------------------------------------------------------------------------- /tests/reference/benchmark_fannkuchredux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/reference/benchmark_fannkuchredux.c -------------------------------------------------------------------------------- /tests/reference/benchmark_nbody.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/reference/benchmark_nbody.c -------------------------------------------------------------------------------- /tests/reference/matmul.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/reference/matmul.cpp -------------------------------------------------------------------------------- /tests/reference/matmuls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/reference/matmuls.cpp -------------------------------------------------------------------------------- /tests/rename.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/rename.t -------------------------------------------------------------------------------- /tests/renaming.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/renaming.t -------------------------------------------------------------------------------- /tests/requiretwice.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/requiretwice.t -------------------------------------------------------------------------------- /tests/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/run -------------------------------------------------------------------------------- /tests/rvaluerecv.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/rvaluerecv.t -------------------------------------------------------------------------------- /tests/scc.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/scc.t -------------------------------------------------------------------------------- /tests/scope.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/scope.t -------------------------------------------------------------------------------- /tests/selectoverload.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/selectoverload.t -------------------------------------------------------------------------------- /tests/setname.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/setname.t -------------------------------------------------------------------------------- /tests/setter.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/setter.t -------------------------------------------------------------------------------- /tests/sgemm-old.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/sgemm-old.t -------------------------------------------------------------------------------- /tests/sgemm.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/sgemm.t -------------------------------------------------------------------------------- /tests/sgemm3.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/sgemm3.t -------------------------------------------------------------------------------- /tests/sgemmkernel.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/sgemmkernel.t -------------------------------------------------------------------------------- /tests/shallowfreeze.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/shallowfreeze.t -------------------------------------------------------------------------------- /tests/sharedlib.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/sharedlib.t -------------------------------------------------------------------------------- /tests/shift.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/shift.t -------------------------------------------------------------------------------- /tests/signext.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/signext.t -------------------------------------------------------------------------------- /tests/simple.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/simple.t -------------------------------------------------------------------------------- /tests/simpleadd.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/simpleadd.t -------------------------------------------------------------------------------- /tests/simpleapply.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/simpleapply.t -------------------------------------------------------------------------------- /tests/simpleglobal.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/simpleglobal.t -------------------------------------------------------------------------------- /tests/simplerec.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/simplerec.t -------------------------------------------------------------------------------- /tests/simplestruct.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/simplestruct.t -------------------------------------------------------------------------------- /tests/simplevec.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/simplevec.t -------------------------------------------------------------------------------- /tests/sintable.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/sintable.t -------------------------------------------------------------------------------- /tests/sizetests.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/sizetests.t -------------------------------------------------------------------------------- /tests/special.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/special.t -------------------------------------------------------------------------------- /tests/speed.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/speed.t -------------------------------------------------------------------------------- /tests/splitprimary.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/splitprimary.t -------------------------------------------------------------------------------- /tests/splitquote.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/splitquote.t -------------------------------------------------------------------------------- /tests/ssimple.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/ssimple.t -------------------------------------------------------------------------------- /tests/staticmethod.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/staticmethod.t -------------------------------------------------------------------------------- /tests/stattest.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/stattest.t -------------------------------------------------------------------------------- /tests/stdio.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/stdio.t -------------------------------------------------------------------------------- /tests/stencil.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/stencil.t -------------------------------------------------------------------------------- /tests/strerror.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/strerror.t -------------------------------------------------------------------------------- /tests/string.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/string.t -------------------------------------------------------------------------------- /tests/stringconst.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/stringconst.t -------------------------------------------------------------------------------- /tests/struct.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/struct.t -------------------------------------------------------------------------------- /tests/structarg.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/structarg.t -------------------------------------------------------------------------------- /tests/structcast.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/structcast.t -------------------------------------------------------------------------------- /tests/structconstructor.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/structconstructor.t -------------------------------------------------------------------------------- /tests/structrvalue.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/structrvalue.t -------------------------------------------------------------------------------- /tests/structsyntax.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/structsyntax.t -------------------------------------------------------------------------------- /tests/stuff.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/stuff.t -------------------------------------------------------------------------------- /tests/sugar.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/sugar.t -------------------------------------------------------------------------------- /tests/sumlanguage1.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/sumlanguage1.t -------------------------------------------------------------------------------- /tests/sumlanguage2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/sumlanguage2.t -------------------------------------------------------------------------------- /tests/switch.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/switch.t -------------------------------------------------------------------------------- /tests/symbolmangling.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/symbolmangling.t -------------------------------------------------------------------------------- /tests/symbolvar.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/symbolvar.t -------------------------------------------------------------------------------- /tests/symbolvar2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/symbolvar2.t -------------------------------------------------------------------------------- /tests/symbolvar3.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/symbolvar3.t -------------------------------------------------------------------------------- /tests/symbolvar4.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/symbolvar4.t -------------------------------------------------------------------------------- /tests/symbolvar5.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/symbolvar5.t -------------------------------------------------------------------------------- /tests/symbolvar6.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/symbolvar6.t -------------------------------------------------------------------------------- /tests/symbolvar7.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/symbolvar7.t -------------------------------------------------------------------------------- /tests/symparam.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/symparam.t -------------------------------------------------------------------------------- /tests/symparam2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/symparam2.t -------------------------------------------------------------------------------- /tests/symparam3.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/symparam3.t -------------------------------------------------------------------------------- /tests/tag.tt: -------------------------------------------------------------------------------- 1 | #!../terra 2 | print("FOO") -------------------------------------------------------------------------------- /tests/takedefinition.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/takedefinition.t -------------------------------------------------------------------------------- /tests/template.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/template.t -------------------------------------------------------------------------------- /tests/terracast.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/terracast.t -------------------------------------------------------------------------------- /tests/terralua.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/terralua.t -------------------------------------------------------------------------------- /tests/terraluamethod.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/terraluamethod.t -------------------------------------------------------------------------------- /tests/terranew.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/terranew.t -------------------------------------------------------------------------------- /tests/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/test.lua -------------------------------------------------------------------------------- /tests/testdebug.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/testdebug.t -------------------------------------------------------------------------------- /tests/testimport.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/testimport.t -------------------------------------------------------------------------------- /tests/testlang1.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/testlang1.t -------------------------------------------------------------------------------- /tests/testlang2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/testlang2.t -------------------------------------------------------------------------------- /tests/testlog.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/testlog.t -------------------------------------------------------------------------------- /tests/testminmax.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/testminmax.t -------------------------------------------------------------------------------- /tests/testrequire.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/testrequire.t -------------------------------------------------------------------------------- /tests/teststd.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/teststd.t -------------------------------------------------------------------------------- /tests/testvector.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/testvector.t -------------------------------------------------------------------------------- /tests/torturechain.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/torturechain.t -------------------------------------------------------------------------------- /tests/toterraexpression.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/toterraexpression.t -------------------------------------------------------------------------------- /tests/twolang.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/twolang.t -------------------------------------------------------------------------------- /tests/typeexp.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/typeexp.t -------------------------------------------------------------------------------- /tests/union.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/union.t -------------------------------------------------------------------------------- /tests/unm.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/unm.t -------------------------------------------------------------------------------- /tests/unpacktuple.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/unpacktuple.t -------------------------------------------------------------------------------- /tests/unsafesym.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/unsafesym.t -------------------------------------------------------------------------------- /tests/unstrict.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/unstrict.t -------------------------------------------------------------------------------- /tests/usercast.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/usercast.t -------------------------------------------------------------------------------- /tests/ustore.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/ustore.t -------------------------------------------------------------------------------- /tests/vararg.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/vararg.t -------------------------------------------------------------------------------- /tests/varargcstring.t: -------------------------------------------------------------------------------- 1 | C = terralib.includec("stdio.h") 2 | C.printf("hello, %d\n",3) -------------------------------------------------------------------------------- /tests/varargluacall.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/varargluacall.t -------------------------------------------------------------------------------- /tests/varrec.broken: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/varrec.broken -------------------------------------------------------------------------------- /tests/vars.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/vars.t -------------------------------------------------------------------------------- /tests/vars2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/vars2.t -------------------------------------------------------------------------------- /tests/vec.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/vec.t -------------------------------------------------------------------------------- /tests/vecarith.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/vecarith.t -------------------------------------------------------------------------------- /tests/veclit.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/veclit.t -------------------------------------------------------------------------------- /tests/vecobj.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/vecobj.t -------------------------------------------------------------------------------- /tests/vecptr.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/vecptr.t -------------------------------------------------------------------------------- /tests/vecsize.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/vecsize.t -------------------------------------------------------------------------------- /tests/version.t: -------------------------------------------------------------------------------- 1 | assert(type(terralib.version) == "string") 2 | -------------------------------------------------------------------------------- /tests/vtablerec.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/vtablerec.t -------------------------------------------------------------------------------- /tests/weirdheader.t: -------------------------------------------------------------------------------- 1 | C = terralib.includecstring [[ 2 | #define GASNETI_RELEASE_VERSION 1.26.0 3 | ]] -------------------------------------------------------------------------------- /tests/zeroargs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/zeroargs.t -------------------------------------------------------------------------------- /tests/zeroreturn.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/zeroreturn.t -------------------------------------------------------------------------------- /tests/zeroreturn2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/tests/zeroreturn2.t -------------------------------------------------------------------------------- /travis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terralang/terra/HEAD/travis.sh --------------------------------------------------------------------------------