Example #1
0
        protected void Initialize()
        {
            string home = System.IO.Path.GetFullPath("../../../../");

            context = InterpretationContext.StartInterpretation(home, null, null);
        }
Example #2
0
        public static ScopeFrame Run(string homePath, string libPaths, string filePath)
        {
            var context = InterpretationContext.StartInterpretation(homePath, libPaths, filePath);

            return(context.GlobalFrame);
        }