Ejemplo n.º 1
0
        static void DoFileWrite(string path, File.Code s)
        {
            if (s.Block == null)
            {
                return;                  // do nothing if we have no code
            }
            string filename = Path.ChangeExtension(Path.Combine(path, s.Name), "js");

            using (ResourceFormater fmt = new ResourceFormater(filename)) fmt.Write(s);
        }
Ejemplo n.º 2
0
        static void DoFileWrite(string path, File.Code s)
        {
            string filename = Path.ChangeExtension(Path.Combine(path, s.Name), "js");

            using (ResourceFormater fmt = new ResourceFormater(filename)) fmt.Write(s);
        }