コード例 #1
0
        public static object visit(object ast, TextWriter w, string[] args, MessageWriter msg)
        {
            compilation c = (compilation)ast;

            BrowserForm.Go(c);
            return(c);
        }
コード例 #2
0
        /// <summary>
        /// The main entry point for the application.
        /// </summary>
        ///
        //[STAThread]

        public static void Go(compilation o)
        {
            BrowserForm form = new BrowserForm(o.inputs);

            Application.Run(form);
        }