コード例 #1
0
 public SubruleComputation(IGraph graph, SubruleComputationType type, string message, params object[] values)
 {
     this.type       = type;
     this.message    = message;
     this.parameters = new List <string>();
     for (int i = 0; i < values.Length; ++i)
     {
         parameters.Add(EmitHelper.ToStringAutomatic(values[i], graph, false, null, null));
     }
     this.fakeEntry = false;
 }
コード例 #2
0
ファイル: DebuggerHelper.cs プロジェクト: jblomer/GrGen.NET
 public SubruleComputation(IGraph graph, SubruleComputationType type, string message, params object[] values)
 {
     this.type = type;
     this.message = message;
     this.parameters = new List<string>();
     for(int i = 0; i < values.Length; ++i)
     {
         parameters.Add(EmitHelper.ToStringAutomatic(values[i], graph));
     }
     this.fakeEntry = false;
 }