示例#1
0
 /// <summary>
 /// Visit a UnaryOperatorNode
 /// </summary>
 /// <param name="nodeIn">the node to visit</param>
 /// <returns>Defined by the implementer</returns>
 public virtual T Visit(UnaryOperatorNode nodeIn)
 {
     throw new NotImplementedException();
 }
示例#2
0
 private string BindUnaryOperatorNode(UnaryOperatorNode unaryOperatorNode)
 {
     return(ToString(unaryOperatorNode.OperatorKind) + "(" + Bind(unaryOperatorNode.Operand) + ")");
 }