示例#1
0
 string SmartDump(ParsedSyntax x, bool isWatched)
 {
     var result = x.SmartDump(this);
     if(isWatched)
         result += ("\n" + x.Dump() + "\n").Indent(3);
     return result;
 }
示例#2
0
 string SmartDump(ParsedSyntax left, ParsedSyntax right)
     => "(" + left.SmartDump(this) + " " + Id + " " + right.SmartDump(this) + ")";