Example #1
0
 public CodeSpan Append(IPrintable expr)
 {
     if (expr is null)
     {
         throw new ArgumentNullException();
     }
     //return Append(expr?.Printout() ?? new CodeText("Ø"));
     return(Append(expr.Printout()));
 }
Example #2
0
 public CodeDiv Append(IPrintable printable)
 {
     return(this.Append(printable.Printout()));
 }
Example #3
0
 public CodeSpan(IOwnedNode node, IPrintable expr) : this(expr.Printout())
 {
     this.node = node;
 }
Example #4
0
 public CodeSpan Prepend(IPrintable printable)
 {
     this.Prepend(printable.Printout());
     return(this);
 }
Example #5
0
 public CodeSpan(IPrintable expr) : this(expr.Printout())
 {
 }