Пример #1
0
        public static EngineState Eval(string rawCode, CodeType type, ErrorCheck check, out CodeCommand cmd)
        {
            EngineState s = EngineTests.CreateEngineState();

            return(EngineTests.Eval(s, rawCode, type, check, out cmd));
        }
Пример #2
0
 public static EngineState Eval(string rawCode, CodeType type, ErrorCheck check)
 {
     EngineState s = EngineTests.CreateEngineState();
     return EngineTests.Eval(s, rawCode, type, check);
 }