C# Класс System.Linq.Expressions.Interpreter.Interpreter

A simple forth-style stack machine for executing Expression trees without the need to compile to IL and then invoke the JIT. This trades off much faster compilation time for a slower execution performance. For code that is only run a small number of times this can be a sweet spot. The core loop in the interpreter is the Run(InterpretedFrame) method.
Показать файл Открыть проект Примеры использования класса

Private Properties

Свойство Тип Описание
Interpreter System.Collections.Generic
Run void

Приватные методы

Метод Описание
Interpreter ( string name, LocalVariables locals, System.Linq.Expressions.Interpreter.InstructionArray instructions, DebugInfo debugInfos ) : System.Collections.Generic
Run ( InterpretedFrame frame ) : void