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

70 lines
1.9 KiB
C#
Raw Normal View History

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
{
public CS2JSettings Cfg { get; set; }
2010-10-29 19:47:23 +02:00
public string Filename { get; set; }
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
}
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)
{
if (level <= Cfg.DebugLevel)
2010-07-17 15:06:18 -05:00
{
Console.Out.WriteLine(s);
}
}
// 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() : "");
}
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();
}
}
}