예제 #1
0
        public static FlowInterpreter MakeDefaultFlowInterpreter(CellProcessor processor, TypedValue target)
        {
            var fixture = processor.Parse(typeof(Interpreter), target, defaultFlowTable.Branches[0]).GetValue <FlowInterpreter>();

            fixture.Interpret(processor, defaultFlowTable);
            return(fixture);
        }
예제 #2
0
 public static FlowInterpreter MakeDefaultFlowInterpreter(CellProcessor processor, TypedValue target)
 {
     var fixture = processor.Parse(typeof (Interpreter), target, defaultFlowTable.Branches[0]).GetValue<FlowInterpreter>();
     fixture.Interpret(processor, defaultFlowTable);
     return fixture;
 }