InParens() public static method

Returns the same node with a parentheses attribute added.
public static InParens ( this node ) : LNode
node this
return LNode
Beispiel #1
0
 public LNode InParens(LNode inner, int startIndex, int endIndex)
 {
     return(LNodeExt.InParens(inner, File, startIndex, endIndex - startIndex));
 }
Beispiel #2
0
 public LNode InParens(LNode inner)
 {
     return(LNodeExt.InParens(inner));
 }