You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.