Skip to content
Michael Ketting edited this page Nov 5, 2017 · 3 revisions

TypePipe Architecture

TypePipe follows a pipeline approach which allows multiple independent participants to generate code collaboratively. Each participant gets a model of the code to be generated represented by a set of mutable reflection classes. The modifications to these classes are recorded and later translated into executable code.

Expression Trees and LambdaCompiler

TypePipe uses Expression trees to represent method bodies and takes advantage of the DLR LambdaCompiler to generate IL code for them. Read more.

Development

The source code repository for TypePipe can be found at https://github.com/re-motion/TypePipe.

Getting Started

See Getting Started

More Information