Beispiel #1
0
        private void Include(TFunctionData stackFrame)
        {
            stackFrame.AssertParamCount(2);
            string path = Path.GetFullPath(stackFrame.GetParameter <string>(1));

            if (!File.Exists(path))
            {
                throw new FileNotFoundException();
            }

            CodeBlock[]    funcs;
            LineCollection lines = Executer.ScanLines(File.ReadAllLines(path), out funcs);



            NULL(stackFrame);
        }