1
0
mirror of https://github.com/twiglet/cs2j.git synced 2025-01-18 13:15:17 +01:00

debug show files as they are processed

This commit is contained in:
Kevin Glynn 2010-11-04 12:29:38 +01:00
parent 69032a775e
commit 02887dacfa

View File

@ -235,6 +235,7 @@ namespace RusticiSoftware.Translator.CSharp
// Here's where we do the real work...
public static void addAppSigTranslation(string fullName)
{
if (cfg.DebugLevel > 3) Console.Out.WriteLine("Extracting type info from file {0}", fullName);
ITreeNodeStream csTree = parseFile(fullName);
if (csTree != null)
{
@ -250,6 +251,7 @@ namespace RusticiSoftware.Translator.CSharp
// Here's where we do the real work...
public static void translateFile(string fullName)
{
if (cfg.DebugLevel > 3) Console.Out.WriteLine("Translating file {0}", fullName);
CommonTreeNodeStream csTree = parseFile(fullName);
if (cfg.DumpCSharp) AntlrUtils.AntlrUtils.DumpNodes(csTree);