Beispiel #1
0
 /// <summary>
 /// Make a tree from a list of nodes, where the nodes are contained
 /// in an ASTArray object.
 /// </summary>
 /// <param name="nodes">List of Nodes.</param>
 /// <returns>AST Node tree.</returns>
 public virtual AST make(ASTArray nodes)
 {
     return(make(nodes.array));
 }
Beispiel #2
0
 public bool Visit(ASTArray node)
 {
     throw new NotImplementedException();
 }