2010-07-17 14:03:55 -05:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using Antlr.Runtime.Tree;
|
|
|
|
|
using Antlr.Runtime;
|
|
|
|
|
|
|
|
|
|
namespace RusticiSoftware.Translator.CSharp
|
|
|
|
|
{
|
|
|
|
|
public class CommonWalker : TreeParser
|
|
|
|
|
{
|
2010-11-15 11:47:32 +01:00
|
|
|
|
public CS2JSettings Cfg { get; set; }
|
2010-10-29 19:47:23 +02:00
|
|
|
|
public string Filename { get; set; }
|
2010-10-26 16:32:48 +02:00
|
|
|
|
|
2010-07-17 14:03:55 -05:00
|
|
|
|
protected CommonWalker(ITreeNodeStream input, RecognizerSharedState state)
|
|
|
|
|
: base(input, state)
|
|
|
|
|
{ }
|
2010-07-17 15:06:18 -05:00
|
|
|
|
|
2010-11-01 08:32:13 +01:00
|
|
|
|
protected void Warning(int line, String s)
|
|
|
|
|
{
|
|
|
|
|
if (Cfg.Warnings)
|
|
|
|
|
Console.Out.WriteLine("{0}({1}) warning: {2}", Filename, line, s);
|
|
|
|
|
}
|
|
|
|
|
|
2010-10-29 19:47:23 +02:00
|
|
|
|
protected void Warning(String s)
|
|
|
|
|
{
|
|
|
|
|
if (Cfg.Warnings)
|
2010-11-01 08:32:13 +01:00
|
|
|
|
Console.Out.WriteLine("{0} warning: {1}", Filename, s);
|
2010-10-29 19:47:23 +02:00
|
|
|
|
}
|
|
|
|
|
|
2010-07-17 14:03:55 -05:00
|
|
|
|
protected void Debug(String s)
|
|
|
|
|
{
|
2010-07-17 15:06:18 -05:00
|
|
|
|
Debug(1, s);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected void DebugDetail(string s)
|
|
|
|
|
{
|
|
|
|
|
Debug(5, s);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected void Debug(int level, String s)
|
|
|
|
|
{
|
2010-10-26 16:32:48 +02:00
|
|
|
|
if (level <= Cfg.DebugLevel)
|
2010-07-17 15:06:18 -05:00
|
|
|
|
{
|
|
|
|
|
Console.Out.WriteLine(s);
|
|
|
|
|
}
|
2010-07-17 14:03:55 -05:00
|
|
|
|
}
|
2010-11-07 21:57:24 +01:00
|
|
|
|
|
|
|
|
|
// distinguish classes with same name, but differing numbers of type arguments
|
|
|
|
|
protected string mkTypeName (string name, List<String> tyargs) {
|
2010-11-18 14:22:01 +01:00
|
|
|
|
return name + (tyargs != null && tyargs.Count > 0 ? "'" + tyargs.Count.ToString() : "");
|
2010-11-07 21:57:24 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected string formatTyargs(List<string> tyargs) {
|
|
|
|
|
|
|
|
|
|
if (tyargs.Count == 0) {
|
|
|
|
|
return "";
|
|
|
|
|
}
|
|
|
|
|
StringBuilder buf = new StringBuilder();
|
|
|
|
|
buf.Append("<");
|
|
|
|
|
foreach (string t in tyargs) {
|
|
|
|
|
buf.Append(t + ",");
|
|
|
|
|
}
|
|
|
|
|
buf.Remove(buf.Length-1,1);
|
|
|
|
|
buf.Append(">");
|
|
|
|
|
return buf.ToString();
|
|
|
|
|
}
|
2010-07-17 14:03:55 -05:00
|
|
|
|
}
|
|
|
|
|
}
|