├── .gitignore ├── README.md ├── docs ├── spec.txt └── todo.txt ├── dub.json ├── dub.selections.json ├── lib ├── dub.json └── src │ └── pipeslib │ ├── global.d │ ├── os.d │ ├── re.d │ └── str.d └── src └── pipes ├── backend ├── bytecode.d └── llvm.d ├── frontend ├── lexer.d └── parser.d ├── main.d ├── stdlib ├── global.d ├── meta.d ├── os.d ├── re.d └── str.d └── types.d /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b1naryth1ef/pipes/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b1naryth1ef/pipes/HEAD/README.md -------------------------------------------------------------------------------- /docs/spec.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b1naryth1ef/pipes/HEAD/docs/spec.txt -------------------------------------------------------------------------------- /docs/todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b1naryth1ef/pipes/HEAD/docs/todo.txt -------------------------------------------------------------------------------- /dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b1naryth1ef/pipes/HEAD/dub.json -------------------------------------------------------------------------------- /dub.selections.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b1naryth1ef/pipes/HEAD/dub.selections.json -------------------------------------------------------------------------------- /lib/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b1naryth1ef/pipes/HEAD/lib/dub.json -------------------------------------------------------------------------------- /lib/src/pipeslib/global.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b1naryth1ef/pipes/HEAD/lib/src/pipeslib/global.d -------------------------------------------------------------------------------- /lib/src/pipeslib/os.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b1naryth1ef/pipes/HEAD/lib/src/pipeslib/os.d -------------------------------------------------------------------------------- /lib/src/pipeslib/re.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b1naryth1ef/pipes/HEAD/lib/src/pipeslib/re.d -------------------------------------------------------------------------------- /lib/src/pipeslib/str.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b1naryth1ef/pipes/HEAD/lib/src/pipeslib/str.d -------------------------------------------------------------------------------- /src/pipes/backend/bytecode.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b1naryth1ef/pipes/HEAD/src/pipes/backend/bytecode.d -------------------------------------------------------------------------------- /src/pipes/backend/llvm.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b1naryth1ef/pipes/HEAD/src/pipes/backend/llvm.d -------------------------------------------------------------------------------- /src/pipes/frontend/lexer.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b1naryth1ef/pipes/HEAD/src/pipes/frontend/lexer.d -------------------------------------------------------------------------------- /src/pipes/frontend/parser.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b1naryth1ef/pipes/HEAD/src/pipes/frontend/parser.d -------------------------------------------------------------------------------- /src/pipes/main.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b1naryth1ef/pipes/HEAD/src/pipes/main.d -------------------------------------------------------------------------------- /src/pipes/stdlib/global.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b1naryth1ef/pipes/HEAD/src/pipes/stdlib/global.d -------------------------------------------------------------------------------- /src/pipes/stdlib/meta.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b1naryth1ef/pipes/HEAD/src/pipes/stdlib/meta.d -------------------------------------------------------------------------------- /src/pipes/stdlib/os.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b1naryth1ef/pipes/HEAD/src/pipes/stdlib/os.d -------------------------------------------------------------------------------- /src/pipes/stdlib/re.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b1naryth1ef/pipes/HEAD/src/pipes/stdlib/re.d -------------------------------------------------------------------------------- /src/pipes/stdlib/str.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b1naryth1ef/pipes/HEAD/src/pipes/stdlib/str.d -------------------------------------------------------------------------------- /src/pipes/types.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b1naryth1ef/pipes/HEAD/src/pipes/types.d --------------------------------------------------------------------------------