ff61ba7907
* generator/SymbolTable.cs (Trim): revamp TrimEnd call. svn path=/trunk/gtk-sharp/; revision=3501
35 lines
726 B
C#
35 lines
726 B
C#
// GtkSharp.Generation.CodeGenerator.cs - The main code generation engine.
|
|
//
|
|
// Author: Mike Kestner <mkestner@speakeasy.net>
|
|
//
|
|
// (c) 2001 Mike Kestner
|
|
|
|
namespace GtkSharp.Generation {
|
|
|
|
using System;
|
|
using System.Collections;
|
|
using System.Xml;
|
|
|
|
public class CodeGenerator {
|
|
|
|
public static int Main (string[] args)
|
|
{
|
|
if (args.Length != 1) {
|
|
Console.WriteLine ("Usage: codegen <filename>");
|
|
return 0;
|
|
}
|
|
|
|
Parser p = new Parser (args[0]);
|
|
SymbolTable table = p.Parse ();
|
|
Console.WriteLine (table.Count + " types parsed.");
|
|
|
|
foreach (IGeneratable gen in table.Generatables) {
|
|
gen.Generate (table);
|
|
}
|
|
|
|
Statistics.Report();
|
|
return 0;
|
|
}
|
|
|
|
}
|
|
}
|